diff --git a/.gitattributes b/.gitattributes index b265272a54..f26a230f4b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -21,3 +21,5 @@ phpunit.xml export-ignore .markdownlintignore export-ignore .markdownlint.yml export-ignore .markdownlintrc export-ignore +*.php.dist linguist-language=php +.phive diff --git a/.github/build/full.json b/.github/build/full.json index daa19e7c9b..eca2e1c587 100644 --- a/.github/build/full.json +++ b/.github/build/full.json @@ -8,6 +8,10 @@ "repository": "simplesamlphp/simplesamlphp-module-consent", "version": "dev-master" }, + "consentadmin": { + "repository": "simplesamlphp/simplesamlphp-module-consentadmin", + "version": "dev-master" + }, "discopower": { "repository": "simplesamlphp/simplesamlphp-module-discopower", "version": "dev-master" @@ -24,10 +28,6 @@ "repository": "simplesamlphp/simplesamlphp-module-radius", "version": "dev-master" }, - "statistics": { - "repository": "simplesamlphp/simplesamlphp-module-statistics", - "version": "dev-master" - }, "sqlauth": { "repository": "simplesamlphp/simplesamlphp-module-sqlauth", "version": "dev-master" diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 00132367d5..002c0a14fb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,7 +10,7 @@ updates: - package-ecosystem: "github-actions" # See documentation for possible values directory: "/" # Location of package manifests schedule: - interval: "weekly" + interval: "monthly" groups: all-actions: patterns: ["*"] @@ -18,10 +18,20 @@ updates: - package-ecosystem: "composer" # See documentation for possible values directory: "/" # Location of package manifests schedule: - interval: "daily" + interval: "weekly" + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-major"] groups: - dev-dependencies: + production-dependencies: + dependency-type: "production" + exclude-patterns: + - "symfony/*" + development-dependencies: dependency-type: "development" - update-types: - - "minor" - - "patch" + symfony: + patterns: + - "symfony/*" diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 7ed012ca33..05aa1e01a5 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -32,7 +32,7 @@ jobs: - name: Setup problem matchers for PHP run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # Store the version, stripping any v-prefix - name: Write release version @@ -92,7 +92,7 @@ jobs: rm -rf "simplesamlphp-$VERSION" - name: Save tarball - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: release-${{ matrix.version }} path: "$TARGET" @@ -101,12 +101,18 @@ jobs: - name: Calculate SHA checksum (${{ matrix.version }}) run: sha256sum "$TARGET" + website: + name: Build website + runs-on: [ubuntu-latest] + strategy: + fail-fast: false + steps: - name: Run website build if: | startsWith(github.ref, 'refs/tags/v') && contains(github.ref, 'alpha') != true && contains(github.ref, 'beta') != true - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: # Token has to be generated on a user account that controls the docs-repository. # The _only_ scope to select is "Access public repositories", nothing more. diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index fb6e2c5760..c35cf757eb 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -19,7 +19,7 @@ jobs: runs-on: [ubuntu-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Lint markdown files uses: nosborn/github-action-markdown-cli@v3 @@ -43,7 +43,7 @@ jobs: steps: - name: Run docs build if: github.event_name != 'pull_request' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: # Token has to be generated on a user account that controls the docs-repository. # The _only_ scope to select is "Access public repositories", nothing more. diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index e1212dfcfb..026c41a71b 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -14,30 +14,150 @@ on: # yamllint disable-line rule:truthy workflow_dispatch: jobs: + phplinter: + name: 'PHP-Linter' + strategy: + fail-fast: false + matrix: + php-version: ['8.2', '8.3', '8.4', '8.5'] + + uses: simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_phplinter.yml@v1.10.6 + with: + php-version: ${{ matrix.php-version }} + linter: - name: Linter - runs-on: ['ubuntu-latest'] + name: 'Linter' + strategy: + fail-fast: false + + uses: simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_linter.yml@v1.10.6 + with: + enable_eslinter: true + enable_jsonlinter: true + enable_stylelinter: true + enable_yamllinter: true + + unit-tests-linux: + name: "Syntax and unit tests, PHP ${{ matrix.php-versions }}, ${{ matrix.operating-system }}" + runs-on: ${{ matrix.operating-system }} + needs: [phplinter, linter] + strategy: + fail-fast: false + matrix: + operating-system: [ubuntu-latest] + php-versions: ['8.2', '8.3', '8.4', '8.5'] + + steps: + - name: Setup PHP, with composer and extensions + # https://github.com/shivammathur/setup-php + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-versions }} + extensions: intl, mbstring, mysql, pdo, pdo_sqlite, soap, sodium, xml + tools: composer:v2 + ini-values: error_reporting=E_ALL + coverage: xdebug + + - name: Setup problem matchers for PHP + run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" + + - name: Setup problem matchers for PHPUnit + run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" + + - name: Set git to use LF + run: | + git config --global core.autocrlf false + git config --global core.eol lf + + - uses: actions/checkout@v5 + + - name: Copy config.php.dist to config.php + run: cp config/config.php.dist config/config.php + + - name: Create SimpleSAMLphp cache directory + run: sudo mkdir -p /var/cache/simplesamlphp && sudo chmod 777 /var/cache/simplesamlphp + + - name: Get composer cache directory + run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" + + - name: Cache composer dependencies + uses: actions/cache@v4 + with: + path: ${{ env.COMPOSER_CACHE }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + restore-keys: ${{ runner.os }}-composer- + + - name: Install Composer dependencies + run: composer install --no-progress --prefer-dist --optimize-autoloader + + - name: Run unit tests with coverage + if: ${{ matrix.php-versions == '8.5' }} + run: ./vendor/bin/phpunit + + - name: Run unit tests (no coverage) + if: ${{ matrix.php-versions != '8.5' }} + run: ./vendor/bin/phpunit --no-coverage + + - name: Save coverage data + if: ${{ matrix.php-versions == '8.5' }} + uses: actions/upload-artifact@v5 + with: + name: coverage-data + path: ${{ github.workspace }}/build + + unit-tests-windows: + name: "Syntax and unit tests, PHP ${{ matrix.php-versions }}, ${{ matrix.operating-system }}" + runs-on: ${{ matrix.operating-system }} + needs: [phplinter, linter] + strategy: + fail-fast: true + matrix: + operating-system: [windows-latest] + php-versions: ['8.2', '8.3', '8.4', '8.5'] steps: - - uses: actions/checkout@v4 + - name: Setup PHP, with composer and extensions + # https://github.com/shivammathur/setup-php + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-versions }} + extensions: intl, mbstring, mysql, pdo, pdo_sqlite, soap, sodium, xml + tools: composer:v2 + ini-values: error_reporting=E_ALL + coverage: none + + - name: Setup problem matchers for PHP + run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" + + - name: Setup problem matchers for PHPUnit + run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" + + - name: Set git to use LF + run: | + git config --global core.autocrlf false + git config --global core.eol lf + + - uses: actions/checkout@v5 + + - name: Get composer cache directory + run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV" + + - name: Cache composer dependencies + uses: actions/cache@v4 with: - fetch-depth: 0 - - - name: Lint Code Base - uses: github/super-linter/slim@v6 - env: - LOG_LEVEL: NOTICE - VALIDATE_ALL_CODEBASE: true - LINTER_RULES_PATH: 'tools/linters' - VALIDATE_CSS: true - VALIDATE_JAVASCRIPT_ES: true - VALIDATE_JSON: true - VALIDATE_PHP_BUILTIN: true - VALIDATE_YAML: true - VALIDATE_GITHUB_ACTIONS: true + path: ${{ env.COMPOSER_CACHE }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + restore-keys: ${{ runner.os }}-composer- + + - name: Install Composer dependencies + run: composer install --no-progress --prefer-dist --optimize-autoloader --no-scripts + + - name: Run unit tests + run: ./vendor/bin/phpunit --no-coverage quality: name: Quality control + needs: [unit-tests-linux] runs-on: [ubuntu-latest] steps: @@ -47,7 +167,7 @@ jobs: uses: shivammathur/setup-php@v2 with: # Should be the higest supported version, so we can use the newest tools - php-version: '8.3' + php-version: '8.5' tools: composer, composer-require-checker, composer-unused, phpcs, psalm # optional performance gain for psalm: opcache extensions: ctype, date, dom, fileinfo, filter, hash, json, mbstring, mysql, \ @@ -57,7 +177,13 @@ jobs: - name: Setup problem matchers for PHP run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 + + - name: Copy config.php.dist to config.php + run: cp config/config.php.dist config/config.php + + - name: Create SimpleSAMLphp cache directory + run: sudo mkdir -p /var/cache/simplesamlphp && sudo chmod 777 /var/cache/simplesamlphp - name: Get composer cache directory run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" @@ -65,7 +191,7 @@ jobs: - name: Cache composer dependencies uses: actions/cache@v4 with: - path: $COMPOSER_CACHE + path: ${{ env.COMPOSER_CACHE }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- @@ -73,7 +199,8 @@ jobs: run: composer validate - name: Install Composer dependencies - run: composer install --no-progress --prefer-dist --optimize-autoloader + run: composer install --no-progress --prefer-dist --optimize-autoloader \ + --ignore-platform-req=maglnet/composer-require-checker - name: Check code for hard dependencies missing in composer.json continue-on-error: true @@ -88,7 +215,7 @@ jobs: --excludePackage=symfony/yaml - name: PHP Code Sniffer - run: phpcs + run: vendor/bin/phpcs - name: Psalm continue-on-error: true @@ -119,6 +246,7 @@ jobs: security: name: Security checks + needs: [unit-tests-linux] runs-on: [ubuntu-latest] steps: - name: Setup PHP, with composer and extensions @@ -126,16 +254,21 @@ jobs: uses: shivammathur/setup-php@v2 with: # Should be the lowest supported version - php-version: '8.1' - extensions: ctype, date, dom, hash, fileinfo, filter, json, mbstring, mysql, \ - openssl, pcre, pdo, pdo_sqlite, posix, soap, spl, xml - tools: composer + php-version: '8.2' + extensions: mbstring, soap, xml + tools: composer:v2 coverage: none - name: Setup problem matchers for PHP run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 + + - name: Copy config.php.dist to config.php + run: cp config/config.php.dist config/config.php + + - name: Create SimpleSAMLphp cache directory + run: sudo mkdir -p /var/cache/simplesamlphp && sudo chmod 777 /var/cache/simplesamlphp - name: Get composer cache directory run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" @@ -143,7 +276,7 @@ jobs: - name: Cache composer dependencies uses: actions/cache@v4 with: - path: $COMPOSER_CACHE + path: ${{ env.COMPOSER_CACHE }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- @@ -159,134 +292,20 @@ jobs: - name: Security check for updated dependencies run: composer audit - unit-tests-linux: - name: "Unit tests, PHP ${{ matrix.php-versions }}, ${{ matrix.operating-system }}" - runs-on: ${{ matrix.operating-system }} - needs: [linter, quality, security] - strategy: - fail-fast: false - matrix: - operating-system: [ubuntu-latest] - php-versions: ['8.1', '8.2', '8.3'] - - steps: - - name: Setup PHP, with composer and extensions - # https://github.com/shivammathur/setup-php - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-versions }} - extensions: ctype, date, dom, fileinfo, filter, hash, json, mbstring, mysql, openssl, pcre,\ - pdo, pdo_sqlite, posix, soap, spl, xdebug, xml - tools: composer - ini-values: error_reporting=E_ALL, pcov.directory=. - coverage: pcov - - - name: Setup problem matchers for PHP - run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" - - - name: Setup problem matchers for PHPUnit - run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - - - name: Set git to use LF - run: | - git config --global core.autocrlf false - git config --global core.eol lf - - - uses: actions/checkout@v4 - - - name: Get composer cache directory - run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" - - - name: Cache composer dependencies - uses: actions/cache@v4 - with: - path: $COMPOSER_CACHE - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} - restore-keys: ${{ runner.os }}-composer- - - - name: Install Composer dependencies - run: composer install --no-progress --prefer-dist --optimize-autoloader - - - name: Run unit tests with coverage - if: ${{ matrix.php-versions == '8.3' }} - run: vendor/bin/phpunit - - - name: Run unit tests (no coverage) - if: ${{ matrix.php-versions != '8.3' }} - run: vendor/bin/phpunit --no-coverage - - - name: Save coverage data - if: ${{ matrix.php-versions == '8.3' }} - uses: actions/upload-artifact@v4 - with: - name: coverage-data - path: ${{ github.workspace }}/build - - unit-tests-windows: - name: "Unit tests, PHP ${{ matrix.php-versions }}, ${{ matrix.operating-system }}" - runs-on: ${{ matrix.operating-system }} - needs: [linter, quality, security] - strategy: - fail-fast: true - matrix: - operating-system: [windows-latest] - php-versions: ['8.1', '8.2', '8.3'] - - steps: - - name: Setup PHP, with composer and extensions - # https://github.com/shivammathur/setup-php - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-versions }} - extensions: ctype, dom, date, fileinfo, filter, hash, json, mbstring, mysql, openssl, pcre, \ - pdo, pdo_sqlite, posix, soap, spl, xdebug, xml - tools: composer - ini-values: error_reporting=E_ALL - coverage: none - - - name: Setup problem matchers for PHP - run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" - - - name: Setup problem matchers for PHPUnit - run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - - - name: Set git to use LF - run: | - git config --global core.autocrlf false - git config --global core.eol lf - - - uses: actions/checkout@v4 - - - name: Get composer cache directory - run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV" - - - name: Cache composer dependencies - uses: actions/cache@v4 - with: - path: $COMPOSER_CACHE - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} - restore-keys: ${{ runner.os }}-composer- - - - name: Install Composer dependencies - run: composer install --no-progress --prefer-dist --optimize-autoloader --ignore-platform-req=ext-posix - - - name: Run unit tests - run: vendor/bin/phpunit --no-coverage - coverage: name: Code coverage runs-on: [ubuntu-latest] needs: [unit-tests-linux] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v6 with: name: coverage-data path: ${{ github.workspace }}/build - name: Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true @@ -299,9 +318,9 @@ jobs: if: | always() && needs.coverage.result == 'success' || - (needs.unit-tests-linux == 'success' && needs.coverage == 'skipped') + (needs.unit-tests-linux.result == 'success' && needs.coverage.result == 'skipped') steps: - - uses: geekyeggo/delete-artifact@v4 + - uses: geekyeggo/delete-artifact@v5 with: name: coverage-data diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml index ba1a243818..be89eccbaf 100644 --- a/.github/workflows/translations.yml +++ b/.github/workflows/translations.yml @@ -1,9 +1,12 @@ --- + name: Build translations on: # yamllint disable-line rule:truthy push: branches: [master, simplesamlphp-*] + tags-ignore: + - '**' paths: - '**.po' - '**.php' @@ -11,28 +14,10 @@ on: # yamllint disable-line rule:truthy workflow_dispatch: jobs: - quality: - name: Quality checks - runs-on: ['ubuntu-latest'] - - steps: - - uses: actions/checkout@v4 - - #- uses: actions/setup-python@v4 - # with: - # python-version: '3.10' - - #- run: pip install lint-po - - #- name: Lint PO(T) files - # run: | - # lint-po locales/*/LC_MESSAGES/*.po - # lint-po modules/*/locales/*/LC_MESSAGES/*.po build: - name: Build PO-files + name: Setup and Build PO-files runs-on: ['ubuntu-latest'] - needs: quality outputs: files_changed: ${{ steps.changes.outputs.files_changed }} @@ -44,14 +29,16 @@ jobs: uses: shivammathur/setup-php@v2 with: # Should be the higest supported version, so we can use the newest tools - php-version: '8.3' + php-version: '8.4' coverage: none - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: + # token: ${{ secrets.PAT_TOKEN }} repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} - token: ${{ secrets.PAT_TOKEN }} + persist-credentials: false + fetch-depth: 0 - name: Install Composer dependencies run: composer install --no-progress --prefer-dist --optimize-autoloader @@ -82,7 +69,7 @@ jobs: if: steps.changes.outputs.files_changed == 'true' || steps.changes.outputs.packages_changed run: zip build.zip -r . - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: steps.changes.outputs.files_changed == 'true' || steps.changes.outputs.packages_changed with: name: build @@ -96,7 +83,7 @@ jobs: runs-on: [ubuntu-latest] steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v6 with: name: build @@ -111,6 +98,8 @@ jobs: # The arguments for the `git add` command (see the paragraph below for more info) # Default: '.' add: "['**/*.po']" + fetch: false + push: false # Determines the way the action fills missing author name and email. Three options are available: # - github_actor -> UserName @@ -131,6 +120,12 @@ jobs: # Default: ignore pathspec_error_handling: exitImmediately + - name: Push changes + uses: ad-m/github-push-action@master + with: + branch: ${{ github.ref_name }} + github_token: ${{ secrets.GITHUB_TOKEN }} + cleanup: name: Cleanup artifacts needs: [build, commit] @@ -141,7 +136,7 @@ jobs: (needs.build.result == 'success' && needs.commit.result == 'skipped') steps: - - uses: geekyeggo/delete-artifact@v4 + - uses: geekyeggo/delete-artifact@v5 with: name: | build diff --git a/.gitignore b/.gitignore index 0ea62e8f25..beca4a8b06 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ metadata/* phpunit.xml.bak .phive **.mo +/super-linter-output/ # https://www.gitignore.io/api/osx,windows,linux,netbeans,sublimetext,composer,phpstorm,vagrant # Created by https://www.gitignore.io @@ -234,3 +235,4 @@ typings/ # dotenv environment variables file .env +cache diff --git a/COPYING b/COPYING index f1d41affca..624ed0d1c0 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright 2007-2020 UNINETT AS, 2021-2024 SimpleSAMLphp +Copyright 2007-2020 UNINETT AS, 2021-2025 SimpleSAMLphp SimpleSAMLphp is licensed under the CC-GNU LGPL version 2.1. http://creativecommons.org/licenses/LGPL/2.1/ diff --git a/README.md b/README.md index 78a9c89c62..ab674bdcc6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # SimpleSAMLphp -![Build Status](https://github.com/simplesamlphp/simplesamlphp/workflows/CI/badge.svg?branch=master) +![Build Status](https://github.com/simplesamlphp/simplesamlphp/actions/workflows/php.yml/badge.svg) [![Coverage Status](https://codecov.io/gh/simplesamlphp/simplesamlphp/branch/master/graph/badge.svg)](https://codecov.io/gh/simplesamlphp/simplesamlphp) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/simplesamlphp/simplesamlphp/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/simplesamlphp/simplesamlphp/?branch=master) [![Type coverage](https://shepherd.dev/github/simplesamlphp/simplesamlphp/coverage.svg)](https://shepherd.dev/github/simplesamlphp/simplesamlphp) diff --git a/attributemap/entra2name.php b/attributemap/entra2name.php new file mode 100644 index 0000000000..ae591e58f0 --- /dev/null +++ b/attributemap/entra2name.php @@ -0,0 +1,25 @@ + 'uid', + "http://schemas.microsoft.com/identity/claims/displayname" => 'displayName', + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname" => 'givenName', + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname" => 'sn', + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress" => 'emailAddress', + "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name" => 'mail', + + /** + * Additional/Optional Claim, using default value + */ + "http://schemas.microsoft.com/ws/2008/06/identity/claims/groups" => 'groups', + + /** + * Additional Attributes from Entra + */ + "http://schemas.microsoft.com/claims/authnmethodsreferences" => 'authNMethodsReferences', + "http://schemas.microsoft.com/identity/claims/identityprovider" => 'idp', + "http://schemas.microsoft.com/identity/claims/tenantid" => 'tenantId', +]; \ No newline at end of file diff --git a/attributemap/name2entra.php b/attributemap/name2entra.php new file mode 100644 index 0000000000..b3267e8a0b --- /dev/null +++ b/attributemap/name2entra.php @@ -0,0 +1,25 @@ + 'http://schemas.microsoft.com/identity/claims/objectidentifier', + 'displayName' => 'http://schemas.microsoft.com/identity/claims/displayname', + 'givenName' => 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname', + 'sn' => 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname', + 'emailAddress' => 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress', + 'mail' => 'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name', + + /** + * Additional/Optional Claim, using default value, mapped back to original claim names + */ + 'groups' => 'http://schemas.microsoft.com/ws/2008/06/identity/claims/groups', + + /** + * Additional Attributes from Entra, mapped back to original claims + */ + 'authNMethodsReferences' => 'http://schemas.microsoft.com/claims/authnmethodsreferences', + 'idp' => 'http://schemas.microsoft.com/identity/claims/identityprovider', + 'tenantId' => 'http://schemas.microsoft.com/identity/claims/tenantid', +]; \ No newline at end of file diff --git a/bin/console b/bin/console index a01bc1443c..74816335eb 100755 --- a/bin/console +++ b/bin/console @@ -1,6 +1,8 @@ #!/usr/bin/env php getParameterOption(['--modules', '-m'], 'core'); +$module = $input->getParameterOption(['--module', '-m'], 'core'); $kernel = new Kernel($module); $application = new Application($kernel); diff --git a/bin/convertTranslations.php b/bin/convertTranslations.php index 87743e20ff..4c33d864ab 100755 --- a/bin/convertTranslations.php +++ b/bin/convertTranslations.php @@ -120,7 +120,7 @@ function dissectFile(array $fileInputRaw): array STDERR, "Merging (for nullify) " . count($sourcePairs) . " entries from source language (destination language has " . - count($destPairs) . " already.\n" + count($destPairs) . " already.\n", ); $outputPairs = mergeWithSource($sourcePairs, $destPairs); foreach ($outputPairs as $key => $value) { @@ -132,7 +132,7 @@ function dissectFile(array $fileInputRaw): array STDERR, "Merging " . count($sourcePairs) . " entries from source language (destination language has " . - count($destPairs) . " already.\n" + count($destPairs) . " already.\n", ); $outputPairs = mergeWithSource($sourcePairs, $destPairs); break; @@ -141,7 +141,7 @@ function dissectFile(array $fileInputRaw): array STDERR, "Codifying " . count($sourcePairs) . " entries from destination language (pool has " . - count($destPairs) . " candidates).\n" + count($destPairs) . " candidates).\n", ); $outputPairs = codifyWithSource($sourcePairs, $destPairs); break; diff --git a/bin/importPdoMetadata.php b/bin/importPdoMetadata.php index d1a56ea2c3..5376b8a0ee 100755 --- a/bin/importPdoMetadata.php +++ b/bin/importPdoMetadata.php @@ -4,9 +4,12 @@ declare(strict_types=1); $baseDir = dirname(__FILE__, 2); - require_once $baseDir . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . '_autoload.php'; -require_once \SimpleSAML\Utils\Config::getConfigDir() . DIRECTORY_SEPARATOR . 'config.php'; + +// This is the config dir of the SimpleSAMLphp installation +$configDir = (new \SimpleSAML\Utils\Config())->getConfigDir(); + +require_once $configDir . DIRECTORY_SEPARATOR . 'config.php'; # Iterate through configured metadata sources and ensure # that a PDO source exists. diff --git a/bin/memcacheSync.php b/bin/memcacheSync.php index 82187dd0b0..5833cc200b 100755 --- a/bin/memcacheSync.php +++ b/bin/memcacheSync.php @@ -26,7 +26,8 @@ require_once($baseDir . '/src/_autoload.php'); // Initialize the configuration -$configdir = SimpleSAML\Utils\Config::getConfigDir(); +$configUtils = new SimpleSAML\Utils\Config(); +$configdir = $configUtils->getConfigDir(); \SimpleSAML\Configuration::setConfigDir($configdir); // Things we should warn the user about diff --git a/bin/pwgen.php b/bin/pwgen.php index 3d0a903ea3..f969f3d217 100755 --- a/bin/pwgen.php +++ b/bin/pwgen.php @@ -28,26 +28,22 @@ // Add library autoloader require_once($baseDir . '/src/_autoload.php'); -// parameters for ARGON2, ignored for BCRYPT -// a salt is automatically generated by password_hash() -$options = [ - 'memory_cost' => '65536', // 64MiB - 'time_cost' => 4, - 'threads' => 1, -]; - // automatically select preferred supported algorithm if (defined('PASSWORD_ARGON2ID')) { // supported since php 7.3.0 $algo = PASSWORD_ARGON2ID; } elseif (defined('PASSWORD_ARGON2I')) { // supported since php 7.2.0 $algo = PASSWORD_ARGON2I; -} elseif (defined('PASSWORD_BCRYPT')) { // supported since php 5.5.0 - $algo = PASSWORD_BCRYPT; } else { - "php 5.5.0 or higher is required\n"; - exit(1); + $algo = PASSWORD_BCRYPT; } +$hasher = new Symfony\Component\PasswordHasher\Hasher\NativePasswordHasher( + 4, // time cost + 65536, // memory cost + null, // cost + $algo, +); + // get password and remove line endings \n or \r\n do { echo "\nEnter password: "; @@ -56,16 +52,11 @@ // php adds newline when pressing enter key $length = strlen($password); if ($length > 0) { - if ($password[$length - 1] === "\n") { - $password = substr($password, 0, -1); // removes trailing \n line ending - if ($length > 1 && $password[$length - 2] === "\r") { - $password = substr($password, 0, -1); // trailing \r\n line ending removed - } - $length = strlen($password); - } + $password = rtrim($password, "\r\n"); + $length = strlen($password); } } while ($length === 0); // retry if password is empty -$passwordHash = password_hash($password, $algo, $options); // ARGON2 options are ignored if algo is bcrypt +$passwordHash = $hasher->hash($password); echo "\nPassword hash:\n" . $passwordHash . "\n\n"; diff --git a/bin/translateAttributes.php b/bin/translateAttributes.php index fadd4efa42..6ece51329f 100755 --- a/bin/translateAttributes.php +++ b/bin/translateAttributes.php @@ -32,7 +32,7 @@ $attributes = []; -$languages = SimpleSAML\Locale\Language::$language_names; +$languages = Symfony\Component\Intl\Languages::getNames(); $languages['nb'] = $languages['no']; unset($languages['no']); @@ -61,7 +61,7 @@ [ 'en' => $defs['attribute_' . $lower]['en'], ], - $trans['attribute_' . $lower] + $trans['attribute_' . $lower], ), ]; } diff --git a/bin/translations b/bin/translations index caee8a3258..61bf89c91e 100755 --- a/bin/translations +++ b/bin/translations @@ -2,17 +2,19 @@ add(new UnusedTranslatableStringsCommand()); -$application->add(new UpdateBinaryTranslationsCommand()); $application->add(new UpdateTranslatableStringsCommand()); $application->run(); diff --git a/composer.json b/composer.json index 80a7aa6c78..dc46595a2b 100644 --- a/composer.json +++ b/composer.json @@ -44,7 +44,7 @@ "files": ["tests/_autoload_modules.php"] }, "require": { - "php": "^8.1", + "php": "^8.2", "ext-date": "*", "ext-dom": "*", "ext-fileinfo": "*", @@ -62,49 +62,52 @@ "ext-xml": "*", "ext-zlib": "*", - "beste/clock": "^3.0", - "gettext/gettext": "^5.7", - "gettext/translator": "^1.1", - "phpmailer/phpmailer": "^6.8", - "psr/log": "^3.0", - "robrichards/xmlseclibs": "^3.1.1", - "simplesamlphp/assert": "^1.0.0", - "simplesamlphp/composer-module-installer": "^1.3", - "simplesamlphp/saml2": "^5.0.0-alpha.14", - "simplesamlphp/saml2-legacy": "^4.6", - "simplesamlphp/simplesamlphp-assets-base": "^2.1.5", - "simplesamlphp/simplesamlphp-module-adfs": "^2.1", - "simplesamlphp/xml-common": "^1.13", - "symfony/cache": "^6.4", - "symfony/config": "^6.4", - "symfony/console": "^6.4", - "symfony/dependency-injection": "^6.4", - "symfony/filesystem": "^6.4", - "symfony/finder": "^6.4", - "symfony/framework-bundle": "^6.4", - "symfony/http-foundation": "^6.4", - "symfony/http-kernel": "^6.4", - "symfony/intl": "^6.4", - "symfony/polyfill-intl-icu": "^1.28", - "symfony/psr-http-message-bridge": "^6.4", - "symfony/routing": "^6.4", - "symfony/translation-contracts": "^3.0", - "symfony/twig-bridge": "^6.4", - "symfony/var-exporter": "^6.4", - "twig/intl-extra": "^3.7", - "twig/twig": "^3.5", - "symfony/yaml": "^6.4" + "beste/clock": "~3.0", + "gettext/gettext": "~5.7", + "gettext/translator": "~1.2", + "phpmailer/phpmailer": "~6.12", + "psr/event-dispatcher": "~1.0", + "psr/log": "~3.0", + "robrichards/xmlseclibs": "~3.1", + "simplesamlphp/assert": "~1.9", + "simplesamlphp/composer-module-installer": "~1.5", + "simplesamlphp/saml2": "~6.0", + "simplesamlphp/saml2-legacy": "~4.19", + "simplesamlphp/simplesamlphp-assets-base": "~2.5", + "simplesamlphp/xml-common": "~2.4", + "simplesamlphp/xml-security": "~2.0", + "symfony/cache": "~7.4", + "symfony/config": "~7.4", + "symfony/console": "~7.4", + "symfony/dependency-injection": "~7.4", + "symfony/event-dispatcher": "~7.4", + "symfony/expression-language": "~7.4", + "symfony/filesystem": "~7.4", + "symfony/finder": "~7.4", + "symfony/framework-bundle": "~7.4", + "symfony/http-foundation": "~7.4", + "symfony/http-kernel": "~7.4", + "symfony/intl": "~7.4", + "symfony/password-hasher": "~7.4", + "symfony/polyfill-intl-icu": "~1.33", + "symfony/psr-http-message-bridge": "~7.4", + "symfony/routing": "~7.4", + "symfony/translation-contracts": "~3.6", + "symfony/twig-bridge": "~7.4", + "symfony/var-exporter": "~7.4", + "symfony/yaml": "~7.4", + "twig/intl-extra": "~3.22", + "twig/twig": "~3.22" }, "require-dev": { "ext-curl": "*", "ext-pdo_sqlite": "*", - "gettext/php-scanner": "1.3.1", + "gettext/php-scanner": "~2.0", "mikey179/vfsstream": "~1.6", - "predis/predis": "^2.2", - "simplesamlphp/simplesamlphp-test-framework": "^1.5", - "simplesamlphp/xml-security": "^1.6.12", - "symfony/translation": "^6.4" + "predis/predis": "~3.2", + "simplesamlphp/simplesamlphp-test-framework": "~1.10", + "symfony/translation": "~7.4" }, "suggest": { "predis/predis": "Needed if a Redis server is used to store session information", @@ -122,9 +125,11 @@ "config": { "allow-plugins": { "composer/package-versions-deprecated": true, - "simplesamlphp/composer-module-installer": true, + "dealerdirect/phpcodesniffer-composer-installer": true, "muglug/package-versions-56": true, - "dealerdirect/phpcodesniffer-composer-installer": true + "phpstan/extension-installer": true, + "simplesamlphp/composer-module-installer": true, + "simplesamlphp/composer-xmlprovider-installer": true } }, "extra": { @@ -133,14 +138,17 @@ } }, "scripts": { - "translations:unused": "php bin/translations translations:unused", - "translations:update:binary": "php bin/translations translations:update:binary", - "translations:update:translatable": "php bin/translations translations:update:translatable", - "post-install-cmd": [ - "php bin/translations translations:update:binary" + "translations:unused": "./bin/translations translations:unused", + "translations:update:translatable": "./bin/translations translations:update:translatable", + "clear-symfony-cache": [ + "./bin/console cache:clear --no-warmup", + "./bin/console ssp-cache:clear --no-warmup" ], "post-update-cmd": [ - "php bin/translations translations:update:binary" + "echo 'Post-update tasks completed!'" + ], + "post-install-cmd": [ + "echo 'Post-install tasks completed!'" ] } } diff --git a/composer.lock b/composer.lock index 4eebf50688..71bd5aa08a 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": "e0d6e73f9020670b4d67329ff9fd1386", + "content-hash": "4c7a635319f235017b88bf00bbd171b7", "packages": [ { "name": "beste/clock", @@ -76,16 +76,16 @@ }, { "name": "gettext/gettext", - "version": "v5.7.0", + "version": "v5.7.3", "source": { "type": "git", "url": "https://github.com/php-gettext/Gettext.git", - "reference": "8657e580747bb3baacccdcebe69cac094661e404" + "reference": "95820f020e4f2f05e0bbaa5603e4c6ec3edc50f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/8657e580747bb3baacccdcebe69cac094661e404", - "reference": "8657e580747bb3baacccdcebe69cac094661e404", + "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/95820f020e4f2f05e0bbaa5603e4c6ec3edc50f1", + "reference": "95820f020e4f2f05e0bbaa5603e4c6ec3edc50f1", "shasum": "" }, "require": { @@ -130,7 +130,7 @@ "support": { "email": "oom@oscarotero.com", "issues": "https://github.com/php-gettext/Gettext/issues", - "source": "https://github.com/php-gettext/Gettext/tree/v5.7.0" + "source": "https://github.com/php-gettext/Gettext/tree/v5.7.3" }, "funding": [ { @@ -146,20 +146,20 @@ "type": "patreon" } ], - "time": "2022-07-27T19:54:55+00:00" + "time": "2024-12-01T10:18:08+00:00" }, { "name": "gettext/languages", - "version": "2.10.0", + "version": "2.12.1", "source": { "type": "git", "url": "https://github.com/php-gettext/Languages.git", - "reference": "4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab" + "reference": "0b0b0851c55168e1dfb14305735c64019732b5f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-gettext/Languages/zipball/4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab", - "reference": "4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab", + "url": "https://api.github.com/repos/php-gettext/Languages/zipball/0b0b0851c55168e1dfb14305735c64019732b5f1", + "reference": "0b0b0851c55168e1dfb14305735c64019732b5f1", "shasum": "" }, "require": { @@ -169,7 +169,8 @@ "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4" }, "bin": [ - "bin/export-plural-rules" + "bin/export-plural-rules", + "bin/import-cldr-data" ], "type": "library", "autoload": { @@ -208,7 +209,7 @@ ], "support": { "issues": "https://github.com/php-gettext/Languages/issues", - "source": "https://github.com/php-gettext/Languages/tree/2.10.0" + "source": "https://github.com/php-gettext/Languages/tree/2.12.1" }, "funding": [ { @@ -220,20 +221,20 @@ "type": "github" } ], - "time": "2022-10-18T15:00:10+00:00" + "time": "2025-03-19T11:14:02+00:00" }, { "name": "gettext/translator", - "version": "v1.2.0", + "version": "v1.2.1", "source": { "type": "git", "url": "https://github.com/php-gettext/Translator.git", - "reference": "a4fa5ed740f304a0ed7b3e169b2b554a195c7570" + "reference": "8ae0ac79053bcb732a6c584cd86f7a82ef183161" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-gettext/Translator/zipball/a4fa5ed740f304a0ed7b3e169b2b554a195c7570", - "reference": "a4fa5ed740f304a0ed7b3e169b2b554a195c7570", + "url": "https://api.github.com/repos/php-gettext/Translator/zipball/8ae0ac79053bcb732a6c584cd86f7a82ef183161", + "reference": "8ae0ac79053bcb732a6c584cd86f7a82ef183161", "shasum": "" }, "require": { @@ -278,7 +279,7 @@ "support": { "email": "oom@oscarotero.com", "issues": "https://github.com/php-gettext/Translator/issues", - "source": "https://github.com/php-gettext/Translator/tree/v1.2.0" + "source": "https://github.com/php-gettext/Translator/tree/v1.2.1" }, "funding": [ { @@ -294,20 +295,136 @@ "type": "patreon" } ], - "time": "2023-11-06T15:42:03+00:00" + "time": "2025-01-09T09:20:22+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.8.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "21dc724a0583619cd1652f673303492272778051" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051", + "reference": "21dc724a0583619cd1652f673303492272778051", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "http-interop/http-factory-tests": "0.9.0", + "phpunit/phpunit": "^8.5.44 || ^9.6.25" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.8.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2025-08-23T21:21:41+00:00" }, { "name": "nyholm/psr7", - "version": "1.8.1", + "version": "1.8.2", "source": { "type": "git", "url": "https://github.com/Nyholm/psr7.git", - "reference": "aa5fc277a4f5508013d571341ade0c3886d4d00e" + "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Nyholm/psr7/zipball/aa5fc277a4f5508013d571341ade0c3886d4d00e", - "reference": "aa5fc277a4f5508013d571341ade0c3886d4d00e", + "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3", + "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3", "shasum": "" }, "require": { @@ -360,7 +477,7 @@ ], "support": { "issues": "https://github.com/Nyholm/psr7/issues", - "source": "https://github.com/Nyholm/psr7/tree/1.8.1" + "source": "https://github.com/Nyholm/psr7/tree/1.8.2" }, "funding": [ { @@ -372,20 +489,20 @@ "type": "github" } ], - "time": "2023-11-13T09:31:12+00:00" + "time": "2024-09-09T07:06:30+00:00" }, { "name": "phpmailer/phpmailer", - "version": "v6.9.1", + "version": "v6.12.0", "source": { "type": "git", "url": "https://github.com/PHPMailer/PHPMailer.git", - "reference": "039de174cd9c17a8389754d3b877a2ed22743e18" + "reference": "d1ac35d784bf9f5e61b424901d5a014967f15b12" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/039de174cd9c17a8389754d3b877a2ed22743e18", - "reference": "039de174cd9c17a8389754d3b877a2ed22743e18", + "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/d1ac35d784bf9f5e61b424901d5a014967f15b12", + "reference": "d1ac35d784bf9f5e61b424901d5a014967f15b12", "shasum": "" }, "require": { @@ -445,7 +562,7 @@ "description": "PHPMailer is a full-featured email creation and transfer class for PHP", "support": { "issues": "https://github.com/PHPMailer/PHPMailer/issues", - "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.9.1" + "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.12.0" }, "funding": [ { @@ -453,7 +570,7 @@ "type": "github" } ], - "time": "2023-11-25T22:23:28+00:00" + "time": "2025-10-15T16:49:08+00:00" }, { "name": "psr/cache", @@ -657,20 +774,20 @@ }, { "name": "psr/http-factory", - "version": "1.0.2", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/php-fig/http-factory.git", - "reference": "e616d01114759c4c489f93b099585439f795fe35" + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", - "reference": "e616d01114759c4c489f93b099585439f795fe35", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", "shasum": "" }, "require": { - "php": ">=7.0.0", + "php": ">=7.1", "psr/http-message": "^1.0 || ^2.0" }, "type": "library", @@ -694,7 +811,7 @@ "homepage": "https://www.php-fig.org/" } ], - "description": "Common interfaces for PSR-7 HTTP message factories", + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", "keywords": [ "factory", "http", @@ -706,9 +823,9 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-factory/tree/1.0.2" + "source": "https://github.com/php-fig/http-factory" }, - "time": "2023-04-10T20:10:41+00:00" + "time": "2024-04-15T12:06:14+00:00" }, { "name": "psr/http-message", @@ -765,16 +882,16 @@ }, { "name": "psr/log", - "version": "3.0.0", + "version": "3.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", - "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", "shasum": "" }, "require": { @@ -809,22 +926,66 @@ "psr-3" ], "support": { - "source": "https://github.com/php-fig/log/tree/3.0.0" + "source": "https://github.com/php-fig/log/tree/3.0.2" + }, + "time": "2024-09-11T13:17:53+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" }, - "time": "2021-07-14T16:46:02+00:00" + "time": "2019-03-08T08:55:37+00:00" }, { "name": "robrichards/xmlseclibs", - "version": "3.1.1", + "version": "3.1.4", "source": { "type": "git", "url": "https://github.com/robrichards/xmlseclibs.git", - "reference": "f8f19e58f26cdb42c54b214ff8a820760292f8df" + "reference": "bc87389224c6de95802b505e5265b0ec2c5bcdbd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/robrichards/xmlseclibs/zipball/f8f19e58f26cdb42c54b214ff8a820760292f8df", - "reference": "f8f19e58f26cdb42c54b214ff8a820760292f8df", + "url": "https://api.github.com/repos/robrichards/xmlseclibs/zipball/bc87389224c6de95802b505e5265b0ec2c5bcdbd", + "reference": "bc87389224c6de95802b505e5265b0ec2c5bcdbd", "shasum": "" }, "require": { @@ -851,22 +1012,22 @@ ], "support": { "issues": "https://github.com/robrichards/xmlseclibs/issues", - "source": "https://github.com/robrichards/xmlseclibs/tree/3.1.1" + "source": "https://github.com/robrichards/xmlseclibs/tree/3.1.4" }, - "time": "2020-09-05T13:00:25+00:00" + "time": "2025-12-08T11:57:53+00:00" }, { "name": "simplesamlphp/assert", - "version": "v1.1.0", + "version": "v1.9.1", "source": { "type": "git", "url": "https://github.com/simplesamlphp/assert.git", - "reference": "abffdfef47d10a4345a4a8d79049b60a3f466440" + "reference": "d0e7b9c12e4f613c6f32e1242cc08838cdeb39d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/assert/zipball/abffdfef47d10a4345a4a8d79049b60a3f466440", - "reference": "abffdfef47d10a4345a4a8d79049b60a3f466440", + "url": "https://api.github.com/repos/simplesamlphp/assert/zipball/d0e7b9c12e4f613c6f32e1242cc08838cdeb39d3", + "reference": "d0e7b9c12e4f613c6f32e1242cc08838cdeb39d3", "shasum": "" }, "require": { @@ -874,16 +1035,18 @@ "ext-filter": "*", "ext-pcre": "*", "ext-spl": "*", - "php": "^8.1", - "webmozart/assert": "^1.11" + "guzzlehttp/psr7": "~2.8.0", + "php": "^8.2", + "webmozart/assert": "~1.12.0" }, "require-dev": { - "simplesamlphp/simplesamlphp-test-framework": "^1.5.5" + "ext-intl": "*", + "simplesamlphp/simplesamlphp-test-framework": "~1.10.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "v1.1.x-dev" + "dev-master": "v1.10.x-dev" } }, "autoload": { @@ -908,32 +1071,33 @@ "description": "A wrapper around webmozart/assert to make it useful beyond checking method arguments", "support": { "issues": "https://github.com/simplesamlphp/assert/issues", - "source": "https://github.com/simplesamlphp/assert/tree/v1.1.0" + "source": "https://github.com/simplesamlphp/assert/tree/v1.9.1" }, - "time": "2024-01-21T10:47:03+00:00" + "time": "2025-10-20T22:29:33+00:00" }, { "name": "simplesamlphp/composer-module-installer", - "version": "v1.3.4", + "version": "v1.6.0", "source": { "type": "git", "url": "https://github.com/simplesamlphp/composer-module-installer.git", - "reference": "36508ed9580a30c4d5ab0bb3c25c00d0b5d42946" + "reference": "9543c32a0711fb63b637fe75fc08f0309d1c0b32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/composer-module-installer/zipball/36508ed9580a30c4d5ab0bb3c25c00d0b5d42946", - "reference": "36508ed9580a30c4d5ab0bb3c25c00d0b5d42946", + "url": "https://api.github.com/repos/simplesamlphp/composer-module-installer/zipball/9543c32a0711fb63b637fe75fc08f0309d1c0b32", + "reference": "9543c32a0711fb63b637fe75fc08f0309d1c0b32", "shasum": "" }, "require": { - "composer-plugin-api": "^1.1 || ^2.0", - "php": "^7.4 || ^8.0", - "simplesamlphp/assert": "^0.8.0 || ^1.0" + "composer-plugin-api": "~2.9.0", + "ext-mbstring": "*", + "php": "^8.2", + "simplesamlphp/assert": "~1.9.1" }, "require-dev": { - "composer/composer": "^2.4", - "simplesamlphp/simplesamlphp-test-framework": "^1.2.1" + "composer/composer": "~2.8.12", + "simplesamlphp/simplesamlphp-test-framework": "~1.10.3" }, "type": "composer-plugin", "extra": { @@ -951,57 +1115,101 @@ "description": "A Composer plugin that allows installing SimpleSAMLphp modules through Composer.", "support": { "issues": "https://github.com/simplesamlphp/composer-module-installer/issues", - "source": "https://github.com/simplesamlphp/composer-module-installer/tree/v1.3.4" + "source": "https://github.com/simplesamlphp/composer-module-installer/tree/v1.6.0" + }, + "time": "2025-11-13T11:11:03+00:00" + }, + { + "name": "simplesamlphp/composer-xmlprovider-installer", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/simplesamlphp/composer-xmlprovider-installer.git", + "reference": "294025c97062d96fe0b0c466a0a189f1a4010628" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/simplesamlphp/composer-xmlprovider-installer/zipball/294025c97062d96fe0b0c466a0a189f1a4010628", + "reference": "294025c97062d96fe0b0c466a0a189f1a4010628", + "shasum": "" + }, + "require": { + "composer-plugin-api": "~2.9.0", + "php": "^8.2" + }, + "require-dev": { + "composer/composer": "~2.9.0", + "simplesamlphp/simplesamlphp-test-framework": "~1.10.3" + }, + "type": "composer-plugin", + "extra": { + "class": "SimpleSAML\\Composer\\XMLProvider\\XMLProviderInstallerPlugin" + }, + "autoload": { + "psr-4": { + "SimpleSAML\\Composer\\XMLProvider\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1-only" + ], + "description": "A composer plugin that will auto-generate a classmap with all classes that implement SerializableElementInterface.", + "support": { + "issues": "https://github.com/simplesamlphp/composer-xmlprovider-installer/issues", + "source": "https://github.com/simplesamlphp/composer-xmlprovider-installer/tree/v1.2.0" }, - "time": "2023-03-08T20:58:22+00:00" + "time": "2025-11-13T11:11:51+00:00" }, { "name": "simplesamlphp/saml2", - "version": "v5.0.0-alpha.14", + "version": "v6.0.1", "source": { "type": "git", "url": "https://github.com/simplesamlphp/saml2.git", - "reference": "c4a41ee134778ff7de4fdabc9d280e44ac100d6d" + "reference": "c15bde28f1c32f8a54f177fcd65c6580238817c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/saml2/zipball/c4a41ee134778ff7de4fdabc9d280e44ac100d6d", - "reference": "c4a41ee134778ff7de4fdabc9d280e44ac100d6d", + "url": "https://api.github.com/repos/simplesamlphp/saml2/zipball/c15bde28f1c32f8a54f177fcd65c6580238817c9", + "reference": "c15bde28f1c32f8a54f177fcd65c6580238817c9", "shasum": "" }, "require": { "ext-date": "*", "ext-dom": "*", "ext-filter": "*", - "ext-libxml": "*", "ext-openssl": "*", "ext-pcre": "*", - "ext-soap": "*", "ext-zlib": "*", - "nyholm/psr7": "^1.8", - "php": "^8.1", - "psr/http-message": "^2.0", - "psr/log": "^2.0 || ^3.0", - "robrichards/xmlseclibs": "^3.1", - "simplesamlphp/assert": "^1.0", - "simplesamlphp/xml-common": "^1.12", - "simplesamlphp/xml-security": "^1.6", - "simplesamlphp/xml-soap": "^1.3" + "nyholm/psr7": "~1.8", + "php": "^8.2", + "psr/clock": "~1.0", + "psr/http-message": "~2.0", + "psr/log": "~2.3 || ~3.0", + "simplesamlphp/assert": "~1.9", + "simplesamlphp/xml-common": "~2.4", + "simplesamlphp/xml-security": "~2.0", + "simplesamlphp/xml-soap": "~2.0" }, "require-dev": { - "beste/clock": "^3.0", - "mockery/mockery": "^1.6", - "simplesamlphp/simplesamlphp-test-framework": "^1.5" + "beste/clock": "~3.0", + "ext-intl": "*", + "mockery/mockery": "~1.6", + "simplesamlphp/simplesamlphp-test-framework": "~1.10" }, - "type": "library", + "suggest": { + "ext-soap": "*" + }, + "type": "simplesamlphp-xmlprovider", "extra": { "branch-alias": { - "dev-master": "v5.0.x-dev" + "dev-master": "v5.1.x-dev" } }, "autoload": { "psr-4": { - "SimpleSAML\\SAML2\\": "src/SAML2" + "SimpleSAML\\SAML2\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -1012,27 +1220,35 @@ { "name": "Andreas Åkre Solberg", "email": "andreas.solberg@uninett.no" + }, + { + "name": "Jaime Pérez Crespo", + "email": "jaime.perez@uninett.no" + }, + { + "name": "Tim van Dijen", + "email": "tvdijen@gmail.com" } ], "description": "SAML2 PHP library from SimpleSAMLphp", "support": { "issues": "https://github.com/simplesamlphp/saml2/issues", - "source": "https://github.com/simplesamlphp/saml2/tree/v5.0.0-alpha.14" + "source": "https://github.com/simplesamlphp/saml2/tree/v6.0.1" }, - "time": "2024-01-12T11:50:49+00:00" + "time": "2025-12-06T11:49:43+00:00" }, { "name": "simplesamlphp/saml2-legacy", - "version": "v4.6.11", + "version": "v4.19.1", "source": { "type": "git", "url": "https://github.com/simplesamlphp/saml2-legacy.git", - "reference": "b601e1c48492211bfbebb7b428e308965e4366aa" + "reference": "a9812c7fc0bb7cee9ce001e8cc94570c37acdfb2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/saml2-legacy/zipball/b601e1c48492211bfbebb7b428e308965e4366aa", - "reference": "b601e1c48492211bfbebb7b428e308965e4366aa", + "url": "https://api.github.com/repos/simplesamlphp/saml2-legacy/zipball/a9812c7fc0bb7cee9ce001e8cc94570c37acdfb2", + "reference": "a9812c7fc0bb7cee9ce001e8cc94570c37acdfb2", "shasum": "" }, "require": { @@ -1041,9 +1257,12 @@ "ext-zlib": "*", "php": ">=7.1 || ^8.0", "psr/log": "~1.1 || ^2.0 || ^3.0", - "robrichards/xmlseclibs": "^3.1.1", + "robrichards/xmlseclibs": "^3.1.4", "webmozart/assert": "^1.9" }, + "conflict": { + "robrichards/xmlseclibs": "3.1.2" + }, "require-dev": { "mockery/mockery": "^1.3", "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", @@ -1074,27 +1293,27 @@ ], "description": "SAML2 PHP library from SimpleSAMLphp", "support": { - "source": "https://github.com/simplesamlphp/saml2-legacy/tree/v4.6.11" + "source": "https://github.com/simplesamlphp/saml2-legacy/tree/v4.19.1" }, - "time": "2024-02-06T22:18:59+00:00" + "time": "2025-12-08T12:05:03+00:00" }, { "name": "simplesamlphp/simplesamlphp-assets-base", - "version": "v2.1.11", + "version": "v2.5.7", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-assets-base.git", - "reference": "ccb3c08d665c95e2e274e8d8b10d49213bcd7dbb" + "reference": "b6d9ce8749884b6197a1a41f80512cf6767b035b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-assets-base/zipball/ccb3c08d665c95e2e274e8d8b10d49213bcd7dbb", - "reference": "ccb3c08d665c95e2e274e8d8b10d49213bcd7dbb", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-assets-base/zipball/b6d9ce8749884b6197a1a41f80512cf6767b035b", + "reference": "b6d9ce8749884b6197a1a41f80512cf6767b035b", "shasum": "" }, "require": { - "php": ">=7.4 || ^8.0", - "simplesamlphp/composer-module-installer": "^1.3.2" + "php": "^8.2", + "simplesamlphp/composer-module-installer": "^1.4.0" }, "type": "simplesamlphp-module", "notification-url": "https://packagist.org/downloads/", @@ -1110,97 +1329,45 @@ "description": "Assets for the SimpleSAMLphp main repository", "support": { "issues": "https://github.com/simplesamlphp/simplesamlphp-assets-base/issues", - "source": "https://github.com/simplesamlphp/simplesamlphp-assets-base/tree/v2.1.11" - }, - "time": "2024-02-05T19:47:18+00:00" - }, - { - "name": "simplesamlphp/simplesamlphp-module-adfs", - "version": "v2.1.3", - "source": { - "type": "git", - "url": "https://github.com/simplesamlphp/simplesamlphp-module-adfs.git", - "reference": "59368e58fc5548e8b6bb75c102c5a3242722e22b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-adfs/zipball/59368e58fc5548e8b6bb75c102c5a3242722e22b", - "reference": "59368e58fc5548e8b6bb75c102c5a3242722e22b", - "shasum": "" - }, - "require": { - "php": "^8.0", - "simplesamlphp/assert": "^1.0", - "simplesamlphp/composer-module-installer": "^1.3.2", - "simplesamlphp/xml-security": "^1.6" - }, - "require-dev": { - "simplesamlphp/simplesamlphp": "^3@dev", - "simplesamlphp/simplesamlphp-test-framework": "^1.5.4" + "source": "https://github.com/simplesamlphp/simplesamlphp-assets-base/tree/v2.5.7" }, - "type": "simplesamlphp-module", - "extra": { - "branch-alias": { - "dev-master": "2.1.x-dev" - } - }, - "autoload": { - "psr-4": { - "SimpleSAML\\Module\\adfs\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-2.1-or-later" - ], - "authors": [ - { - "name": "Tim van Dijen", - "email": "tvdijen@gmail.com" - } - ], - "description": "A module that implements the WS-federation IDP", - "keywords": [ - "adfs", - "simplesamlphp" - ], - "support": { - "issues": "https://github.com/simplesamlphp/simplesamlphp-module-adfs/issues", - "source": "https://github.com/simplesamlphp/simplesamlphp-module-adfs" - }, - "time": "2023-11-26T09:54:31+00:00" + "time": "2025-10-21T15:44:31+00:00" }, { "name": "simplesamlphp/xml-common", - "version": "v1.16.0", + "version": "v2.4.1", "source": { "type": "git", "url": "https://github.com/simplesamlphp/xml-common.git", - "reference": "4f1257d1357644c413438985de13c92d498b5018" + "reference": "da34115d433ca96c925b684788b89ab08bd0b484" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/xml-common/zipball/4f1257d1357644c413438985de13c92d498b5018", - "reference": "4f1257d1357644c413438985de13c92d498b5018", + "url": "https://api.github.com/repos/simplesamlphp/xml-common/zipball/da34115d433ca96c925b684788b89ab08bd0b484", + "reference": "da34115d433ca96c925b684788b89ab08bd0b484", "shasum": "" }, "require": { + "ext-bcmath": "*", "ext-date": "*", "ext-dom": "*", + "ext-filter": "*", "ext-libxml": "*", "ext-pcre": "*", "ext-spl": "*", - "ext-xmlreader": "*", - "php": "^8.1", - "simplesamlphp/assert": "^1.1" + "php": "^8.2", + "simplesamlphp/assert": "~1.9", + "simplesamlphp/composer-xmlprovider-installer": "~1.2" }, "require-dev": { - "simplesamlphp/simplesamlphp-test-framework": "^1.5" + "simplesamlphp/simplesamlphp-test-framework": "~1.10" }, - "type": "project", + "type": "simplesamlphp-xmlprovider", "autoload": { "psr-4": { - "SimpleSAML\\XML\\": "src/" + "SimpleSAML\\XML\\": "src/XML", + "SimpleSAML\\XPath\\": "src/XPath", + "SimpleSAML\\XMLSchema\\": "src/XMLSchema" } }, "notification-url": "https://packagist.org/downloads/", @@ -1227,20 +1394,20 @@ "issues": "https://github.com/simplesamlphp/xml-common/issues", "source": "https://github.com/simplesamlphp/xml-common" }, - "time": "2024-01-22T20:54:45+00:00" + "time": "2025-11-30T14:41:50+00:00" }, { "name": "simplesamlphp/xml-security", - "version": "v1.7.0", + "version": "v2.0.9", "source": { "type": "git", "url": "https://github.com/simplesamlphp/xml-security.git", - "reference": "5a07d07128a897c89fab2ec4213cd538e0763a91" + "reference": "c1b310c5fb7e4b2121551f28968df3f54ff30d2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/xml-security/zipball/5a07d07128a897c89fab2ec4213cd538e0763a91", - "reference": "5a07d07128a897c89fab2ec4213cd538e0763a91", + "url": "https://api.github.com/repos/simplesamlphp/xml-security/zipball/c1b310c5fb7e4b2121551f28968df3f54ff30d2e", + "reference": "c1b310c5fb7e4b2121551f28968df3f54ff30d2e", "shasum": "" }, "require": { @@ -1250,14 +1417,14 @@ "ext-openssl": "*", "ext-pcre": "*", "ext-spl": "*", - "php": "^8.1", - "simplesamlphp/assert": "^1.0", - "simplesamlphp/xml-common": "^1.13" + "php": "^8.2", + "simplesamlphp/assert": "~1.9", + "simplesamlphp/xml-common": "~2.4" }, "require-dev": { - "simplesamlphp/simplesamlphp-test-framework": "^1.5" + "simplesamlphp/simplesamlphp-test-framework": "~1.10" }, - "type": "library", + "type": "simplesamlphp-xmlprovider", "autoload": { "psr-4": { "SimpleSAML\\XMLSecurity\\": "src/" @@ -1289,35 +1456,35 @@ ], "support": { "issues": "https://github.com/simplesamlphp/xml-security/issues", - "source": "https://github.com/simplesamlphp/xml-security/tree/v1.7.0" + "source": "https://github.com/simplesamlphp/xml-security/tree/v2.0.9" }, - "time": "2023-12-14T20:25:08+00:00" + "time": "2025-12-08T12:08:30+00:00" }, { "name": "simplesamlphp/xml-soap", - "version": "v1.4.0", + "version": "v2.0.7", "source": { "type": "git", "url": "https://github.com/simplesamlphp/xml-soap.git", - "reference": "4a773cb58a634f4bdbf2cefa633631d0668bfa0a" + "reference": "c794e1a6783ec7424f864c77776af7ba3983a53e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/xml-soap/zipball/4a773cb58a634f4bdbf2cefa633631d0668bfa0a", - "reference": "4a773cb58a634f4bdbf2cefa633631d0668bfa0a", + "url": "https://api.github.com/repos/simplesamlphp/xml-soap/zipball/c794e1a6783ec7424f864c77776af7ba3983a53e", + "reference": "c794e1a6783ec7424f864c77776af7ba3983a53e", "shasum": "" }, "require": { "ext-dom": "*", "ext-pcre": "*", - "php": "^8.1", - "simplesamlphp/assert": "^1.0", - "simplesamlphp/xml-common": "^1.13" + "php": "^8.2", + "simplesamlphp/assert": "~1.9", + "simplesamlphp/xml-common": "~2.4" }, "require-dev": { - "simplesamlphp/simplesamlphp-test-framework": "^1.5" + "simplesamlphp/simplesamlphp-test-framework": "~1.10" }, - "type": "library", + "type": "simplesamlphp-xmlprovider", "extra": { "branch-alias": { "dev-master": "v2.0.x-dev" @@ -1325,7 +1492,6 @@ }, "autoload": { "psr-4": { - "SimpleSAML\\SOAP\\": "src/", "SimpleSAML\\SOAP11\\": "src/SOAP11/", "SimpleSAML\\SOAP12\\": "src/SOAP12/" } @@ -1343,37 +1509,40 @@ "description": "SimpleSAMLphp library for XML SOAP", "support": { "issues": "https://github.com/simplesamlphp/xml-soap/issues", - "source": "https://github.com/simplesamlphp/xml-soap/tree/v1.4.0" + "source": "https://github.com/simplesamlphp/xml-soap/tree/v2.0.7" }, - "time": "2023-12-13T23:01:48+00:00" + "time": "2025-11-20T18:07:30+00:00" }, { "name": "symfony/cache", - "version": "v6.4.3", + "version": "v7.4.1", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "49f8cdee544a621a621cd21b6cda32a38926d310" + "reference": "21e0755783bbbab58f2bb6a7a57896d21d27a366" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/49f8cdee544a621a621cd21b6cda32a38926d310", - "reference": "49f8cdee544a621a621cd21b6cda32a38926d310", + "url": "https://api.github.com/repos/symfony/cache/zipball/21e0755783bbbab58f2bb6a7a57896d21d27a366", + "reference": "21e0755783bbbab58f2bb6a7a57896d21d27a366", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "psr/cache": "^2.0|^3.0", "psr/log": "^1.1|^2|^3", - "symfony/cache-contracts": "^2.5|^3", + "symfony/cache-contracts": "^3.6", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/service-contracts": "^2.5|^3", - "symfony/var-exporter": "^6.3.6|^7.0" + "symfony/var-exporter": "^6.4|^7.0|^8.0" }, "conflict": { - "doctrine/dbal": "<2.13.1", - "symfony/dependency-injection": "<5.4", - "symfony/http-kernel": "<5.4", - "symfony/var-dumper": "<5.4" + "doctrine/dbal": "<3.6", + "ext-redis": "<6.1", + "ext-relay": "<0.12.1", + "symfony/dependency-injection": "<6.4", + "symfony/http-kernel": "<6.4", + "symfony/var-dumper": "<6.4" }, "provide": { "psr/cache-implementation": "2.0|3.0", @@ -1382,15 +1551,16 @@ }, "require-dev": { "cache/integration-tests": "dev-master", - "doctrine/dbal": "^2.13.1|^3|^4", + "doctrine/dbal": "^3.6|^4", "predis/predis": "^1.1|^2.0", "psr/simple-cache": "^1.0|^2.0|^3.0", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/filesystem": "^5.4|^6.0|^7.0", - "symfony/http-kernel": "^5.4|^6.0|^7.0", - "symfony/messenger": "^5.4|^6.0|^7.0", - "symfony/var-dumper": "^5.4|^6.0|^7.0" + "symfony/clock": "^6.4|^7.0|^8.0", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/filesystem": "^6.4|^7.0|^8.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/messenger": "^6.4|^7.0|^8.0", + "symfony/var-dumper": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { @@ -1425,7 +1595,7 @@ "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v6.4.3" + "source": "https://github.com/symfony/cache/tree/v7.4.1" }, "funding": [ { @@ -1436,25 +1606,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2025-12-04T18:11:45+00:00" }, { "name": "symfony/cache-contracts", - "version": "v3.4.0", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/cache-contracts.git", - "reference": "1d74b127da04ffa87aa940abe15446fa89653778" + "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1d74b127da04ffa87aa940abe15446fa89653778", - "reference": "1d74b127da04ffa87aa940abe15446fa89653778", + "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868", + "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868", "shasum": "" }, "require": { @@ -1463,12 +1637,12 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "3.4-dev" - }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" } }, "autoload": { @@ -1501,7 +1675,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/cache-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/cache-contracts/tree/v3.6.0" }, "funding": [ { @@ -1517,38 +1691,38 @@ "type": "tidelift" } ], - "time": "2023-09-25T12:52:38+00:00" + "time": "2025-03-13T15:25:07+00:00" }, { "name": "symfony/config", - "version": "v6.4.3", + "version": "v7.4.1", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "206482ff3ed450495b1d5b7bad1bc3a852def96f" + "reference": "2c323304c354a43a48b61c5fa760fc4ed60ce495" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/206482ff3ed450495b1d5b7bad1bc3a852def96f", - "reference": "206482ff3ed450495b1d5b7bad1bc3a852def96f", + "url": "https://api.github.com/repos/symfony/config/zipball/2c323304c354a43a48b61c5fa760fc4ed60ce495", + "reference": "2c323304c354a43a48b61c5fa760fc4ed60ce495", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/filesystem": "^5.4|^6.0|^7.0", + "symfony/filesystem": "^7.1|^8.0", "symfony/polyfill-ctype": "~1.8" }, "conflict": { - "symfony/finder": "<5.4", + "symfony/finder": "<6.4", "symfony/service-contracts": "<2.5" }, "require-dev": { - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", - "symfony/finder": "^5.4|^6.0|^7.0", - "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0|^8.0", + "symfony/finder": "^6.4|^7.0|^8.0", + "symfony/messenger": "^6.4|^7.0|^8.0", "symfony/service-contracts": "^2.5|^3", - "symfony/yaml": "^5.4|^6.0|^7.0" + "symfony/yaml": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { @@ -1576,7 +1750,7 @@ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v6.4.3" + "source": "https://github.com/symfony/config/tree/v7.4.1" }, "funding": [ { @@ -1587,56 +1761,60 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-29T13:26:27+00:00" + "time": "2025-12-05T07:52:08+00:00" }, { "name": "symfony/console", - "version": "v6.4.3", + "version": "v7.4.1", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e" + "reference": "6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e", - "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e", + "url": "https://api.github.com/repos/symfony/console/zipball/6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e", + "reference": "6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", "symfony/service-contracts": "^2.5|^3", - "symfony/string": "^5.4|^6.0|^7.0" + "symfony/string": "^7.2|^8.0" }, "conflict": { - "symfony/dependency-injection": "<5.4", - "symfony/dotenv": "<5.4", - "symfony/event-dispatcher": "<5.4", - "symfony/lock": "<5.4", - "symfony/process": "<5.4" + "symfony/dependency-injection": "<6.4", + "symfony/dotenv": "<6.4", + "symfony/event-dispatcher": "<6.4", + "symfony/lock": "<6.4", + "symfony/process": "<6.4" }, "provide": { "psr/log-implementation": "1.0|2.0|3.0" }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^6.4|^7.0", - "symfony/http-kernel": "^6.4|^7.0", - "symfony/lock": "^5.4|^6.0|^7.0", - "symfony/messenger": "^5.4|^6.0|^7.0", - "symfony/process": "^5.4|^6.0|^7.0", - "symfony/stopwatch": "^5.4|^6.0|^7.0", - "symfony/var-dumper": "^5.4|^6.0|^7.0" + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/event-dispatcher": "^6.4|^7.0|^8.0", + "symfony/http-foundation": "^6.4|^7.0|^8.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/lock": "^6.4|^7.0|^8.0", + "symfony/messenger": "^6.4|^7.0|^8.0", + "symfony/process": "^6.4|^7.0|^8.0", + "symfony/stopwatch": "^6.4|^7.0|^8.0", + "symfony/var-dumper": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { @@ -1670,7 +1848,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.4.3" + "source": "https://github.com/symfony/console/tree/v7.4.1" }, "funding": [ { @@ -1681,49 +1859,52 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2025-12-05T15:23:39+00:00" }, { "name": "symfony/dependency-injection", - "version": "v6.4.3", + "version": "v7.4.2", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "6871811c5a5c5e180244ddb689746446db02c05b" + "reference": "baf614f7c15b30ba6762d4b1ddabdf83dbf0d29b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/6871811c5a5c5e180244ddb689746446db02c05b", - "reference": "6871811c5a5c5e180244ddb689746446db02c05b", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/baf614f7c15b30ba6762d4b1ddabdf83dbf0d29b", + "reference": "baf614f7c15b30ba6762d4b1ddabdf83dbf0d29b", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "psr/container": "^1.1|^2.0", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/service-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^6.2.10|^7.0" + "symfony/service-contracts": "^3.6", + "symfony/var-exporter": "^6.4.20|^7.2.5|^8.0" }, "conflict": { "ext-psr": "<1.1|>=2", - "symfony/config": "<6.1", - "symfony/finder": "<5.4", - "symfony/proxy-manager-bridge": "<6.3", - "symfony/yaml": "<5.4" + "symfony/config": "<6.4", + "symfony/finder": "<6.4", + "symfony/yaml": "<6.4" }, "provide": { "psr/container-implementation": "1.1|2.0", "symfony/service-implementation": "1.1|2.0|3.0" }, "require-dev": { - "symfony/config": "^6.1|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/yaml": "^5.4|^6.0|^7.0" + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/expression-language": "^6.4|^7.0|^8.0", + "symfony/yaml": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { @@ -1751,7 +1932,7 @@ "description": "Allows you to standardize and centralize the way objects are constructed in your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dependency-injection/tree/v6.4.3" + "source": "https://github.com/symfony/dependency-injection/tree/v7.4.2" }, "funding": [ { @@ -1762,25 +1943,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-30T08:32:12+00:00" + "time": "2025-12-08T06:57:04+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v3.4.0", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", - "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62", + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62", "shasum": "" }, "require": { @@ -1788,12 +1973,12 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "3.4-dev" - }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" } }, "autoload": { @@ -1818,7 +2003,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0" }, "funding": [ { @@ -1834,35 +2019,38 @@ "type": "tidelift" } ], - "time": "2023-05-23T14:45:45+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/error-handler", - "version": "v6.4.3", + "version": "v7.4.0", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6" + "reference": "48be2b0653594eea32dcef130cca1c811dcf25c2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/6dc3c76a278b77f01d864a6005d640822c6f26a6", - "reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/48be2b0653594eea32dcef130cca1c811dcf25c2", + "reference": "48be2b0653594eea32dcef130cca1c811dcf25c2", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "psr/log": "^1|^2|^3", - "symfony/var-dumper": "^5.4|^6.0|^7.0" + "symfony/polyfill-php85": "^1.32", + "symfony/var-dumper": "^6.4|^7.0|^8.0" }, "conflict": { "symfony/deprecation-contracts": "<2.5", "symfony/http-kernel": "<6.4" }, "require-dev": { + "symfony/console": "^6.4|^7.0|^8.0", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/http-kernel": "^6.4|^7.0", - "symfony/serializer": "^5.4|^6.0|^7.0" + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/serializer": "^6.4|^7.0|^8.0", + "symfony/webpack-encore-bundle": "^1.0|^2.0" }, "bin": [ "Resources/bin/patch-type-declarations" @@ -1893,7 +2081,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v6.4.3" + "source": "https://github.com/symfony/error-handler/tree/v7.4.0" }, "funding": [ { @@ -1904,33 +2092,37 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-29T15:40:36+00:00" + "time": "2025-11-05T14:29:59+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v6.4.3", + "version": "v7.4.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef" + "reference": "9dddcddff1ef974ad87b3708e4b442dc38b2261d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef", - "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9dddcddff1ef974ad87b3708e4b442dc38b2261d", + "reference": "9dddcddff1ef974ad87b3708e4b442dc38b2261d", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/event-dispatcher-contracts": "^2.5|^3" }, "conflict": { - "symfony/dependency-injection": "<5.4", + "symfony/dependency-injection": "<6.4", "symfony/service-contracts": "<2.5" }, "provide": { @@ -1939,13 +2131,14 @@ }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/error-handler": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/error-handler": "^6.4|^7.0|^8.0", + "symfony/expression-language": "^6.4|^7.0|^8.0", + "symfony/framework-bundle": "^6.4|^7.0|^8.0", + "symfony/http-foundation": "^6.4|^7.0|^8.0", "symfony/service-contracts": "^2.5|^3", - "symfony/stopwatch": "^5.4|^6.0|^7.0" + "symfony/stopwatch": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { @@ -1973,7 +2166,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.3" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.0" }, "funding": [ { @@ -1984,25 +2177,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2025-10-28T09:38:46+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.4.0", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" + "reference": "59eb412e93815df44f05f342958efa9f46b1e586" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586", + "reference": "59eb412e93815df44f05f342958efa9f46b1e586", "shasum": "" }, "require": { @@ -2011,12 +2208,12 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "3.4-dev" - }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" } }, "autoload": { @@ -2049,7 +2246,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0" }, "funding": [ { @@ -2065,31 +2262,32 @@ "type": "tidelift" } ], - "time": "2023-05-23T14:45:45+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { - "name": "symfony/filesystem", - "version": "v6.4.3", + "name": "symfony/expression-language", + "version": "v7.4.0", "source": { "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb" + "url": "https://github.com/symfony/expression-language.git", + "reference": "8b9bbbb8c71f79a09638f6ea77c531e511139efa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", - "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", + "url": "https://api.github.com/repos/symfony/expression-language/zipball/8b9bbbb8c71f79a09638f6ea77c531e511139efa", + "reference": "8b9bbbb8c71f79a09638f6ea77c531e511139efa", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.8" + "php": ">=8.2", + "symfony/cache": "^6.4|^7.0|^8.0", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/service-contracts": "^2.5|^3" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Filesystem\\": "" + "Symfony\\Component\\ExpressionLanguage\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -2109,10 +2307,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides basic utilities for the filesystem", + "description": "Provides an engine that can compile and evaluate expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v6.4.3" + "source": "https://github.com/symfony/expression-language/tree/v7.4.0" }, "funding": [ { @@ -2123,37 +2321,43 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2025-11-12T15:39:26+00:00" }, { - "name": "symfony/finder", - "version": "v6.4.0", + "name": "symfony/filesystem", + "version": "v7.4.0", "source": { "type": "git", - "url": "https://github.com/symfony/finder.git", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce" + "url": "https://github.com/symfony/filesystem.git", + "reference": "d551b38811096d0be9c4691d406991b47c0c630a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/d551b38811096d0be9c4691d406991b47c0c630a", + "reference": "d551b38811096d0be9c4691d406991b47c0c630a", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.8" }, "require-dev": { - "symfony/filesystem": "^6.0|^7.0" + "symfony/process": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Finder\\": "" + "Symfony\\Component\\Filesystem\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -2173,10 +2377,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Finds files and directories via an intuitive fluent interface", + "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.4.0" + "source": "https://github.com/symfony/filesystem/tree/v7.4.0" }, "funding": [ { @@ -2187,116 +2391,194 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2023-10-31T17:30:12+00:00" + "time": "2025-11-27T13:27:24+00:00" + }, + { + "name": "symfony/finder", + "version": "v7.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "340b9ed7320570f319028a2cbec46d40535e94bd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/340b9ed7320570f319028a2cbec46d40535e94bd", + "reference": "340b9ed7320570f319028a2cbec46d40535e94bd", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "symfony/filesystem": "^6.4|^7.0|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v7.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-05T05:42:40+00:00" }, { "name": "symfony/framework-bundle", - "version": "v6.4.3", + "version": "v7.4.1", "source": { "type": "git", "url": "https://github.com/symfony/framework-bundle.git", - "reference": "fb413ac4483803954411966a39f3a9204835848e" + "reference": "2fa3b3ad6ed75ce0cc8cad8a5027b4f25b990bc3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/fb413ac4483803954411966a39f3a9204835848e", - "reference": "fb413ac4483803954411966a39f3a9204835848e", + "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/2fa3b3ad6ed75ce0cc8cad8a5027b4f25b990bc3", + "reference": "2fa3b3ad6ed75ce0cc8cad8a5027b4f25b990bc3", "shasum": "" }, "require": { "composer-runtime-api": ">=2.1", "ext-xml": "*", - "php": ">=8.1", - "symfony/cache": "^5.4|^6.0|^7.0", - "symfony/config": "^6.1|^7.0", - "symfony/dependency-injection": "^6.4|^7.0", + "php": ">=8.2", + "symfony/cache": "^6.4.12|^7.0|^8.0", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/error-handler": "^6.1|^7.0", - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", - "symfony/filesystem": "^5.4|^6.0|^7.0", - "symfony/finder": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^6.4|^7.0", - "symfony/http-kernel": "^6.4", + "symfony/error-handler": "^7.3|^8.0", + "symfony/event-dispatcher": "^6.4|^7.0|^8.0", + "symfony/filesystem": "^7.1|^8.0", + "symfony/finder": "^6.4|^7.0|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", "symfony/polyfill-mbstring": "~1.0", - "symfony/routing": "^6.4|^7.0" + "symfony/polyfill-php85": "^1.32", + "symfony/routing": "^7.4|^8.0" }, "conflict": { - "doctrine/annotations": "<1.13.1", "doctrine/persistence": "<1.3", "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", - "symfony/asset": "<5.4", + "symfony/asset": "<6.4", "symfony/asset-mapper": "<6.4", - "symfony/clock": "<6.3", - "symfony/console": "<5.4|>=7.0", + "symfony/clock": "<6.4", + "symfony/console": "<6.4", "symfony/dom-crawler": "<6.4", - "symfony/dotenv": "<5.4", - "symfony/form": "<5.4", - "symfony/http-client": "<6.3", - "symfony/lock": "<5.4", - "symfony/mailer": "<5.4", - "symfony/messenger": "<6.3", + "symfony/dotenv": "<6.4", + "symfony/form": "<7.4", + "symfony/http-client": "<6.4", + "symfony/lock": "<6.4", + "symfony/mailer": "<6.4", + "symfony/messenger": "<7.4", "symfony/mime": "<6.4", - "symfony/property-access": "<5.4", - "symfony/property-info": "<5.4", - "symfony/scheduler": "<6.4.3|>=7.0.0,<7.0.3", - "symfony/security-core": "<5.4", - "symfony/security-csrf": "<5.4", - "symfony/serializer": "<6.4", - "symfony/stopwatch": "<5.4", - "symfony/translation": "<6.4", - "symfony/twig-bridge": "<5.4", - "symfony/twig-bundle": "<5.4", + "symfony/property-access": "<6.4", + "symfony/property-info": "<6.4", + "symfony/runtime": "<6.4.13|>=7.0,<7.1.6", + "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4", + "symfony/security-core": "<6.4", + "symfony/security-csrf": "<7.2", + "symfony/serializer": "<7.2.5", + "symfony/stopwatch": "<6.4", + "symfony/translation": "<7.3", + "symfony/twig-bridge": "<6.4", + "symfony/twig-bundle": "<6.4", "symfony/validator": "<6.4", "symfony/web-profiler-bundle": "<6.4", - "symfony/workflow": "<6.4" + "symfony/webhook": "<7.2", + "symfony/workflow": "<7.4" }, "require-dev": { - "doctrine/annotations": "^1.13.1|^2", "doctrine/persistence": "^1.3|^2|^3", "dragonmantank/cron-expression": "^3.1", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", "seld/jsonlint": "^1.10", - "symfony/asset": "^5.4|^6.0|^7.0", - "symfony/asset-mapper": "^6.4|^7.0", - "symfony/browser-kit": "^5.4|^6.0|^7.0", - "symfony/clock": "^6.2|^7.0", - "symfony/console": "^5.4.9|^6.0.9|^7.0", - "symfony/css-selector": "^5.4|^6.0|^7.0", - "symfony/dom-crawler": "^6.4|^7.0", - "symfony/dotenv": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/form": "^5.4|^6.0|^7.0", - "symfony/html-sanitizer": "^6.1|^7.0", - "symfony/http-client": "^6.3|^7.0", - "symfony/lock": "^5.4|^6.0|^7.0", - "symfony/mailer": "^5.4|^6.0|^7.0", - "symfony/messenger": "^6.3|^7.0", - "symfony/mime": "^6.4|^7.0", - "symfony/notifier": "^5.4|^6.0|^7.0", + "symfony/asset": "^6.4|^7.0|^8.0", + "symfony/asset-mapper": "^6.4|^7.0|^8.0", + "symfony/browser-kit": "^6.4|^7.0|^8.0", + "symfony/clock": "^6.4|^7.0|^8.0", + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/css-selector": "^6.4|^7.0|^8.0", + "symfony/dom-crawler": "^6.4|^7.0|^8.0", + "symfony/dotenv": "^6.4|^7.0|^8.0", + "symfony/expression-language": "^6.4|^7.0|^8.0", + "symfony/form": "^7.4|^8.0", + "symfony/html-sanitizer": "^6.4|^7.0|^8.0", + "symfony/http-client": "^6.4|^7.0|^8.0", + "symfony/json-streamer": "^7.3|^8.0", + "symfony/lock": "^6.4|^7.0|^8.0", + "symfony/mailer": "^6.4|^7.0|^8.0", + "symfony/messenger": "^7.4|^8.0", + "symfony/mime": "^6.4|^7.0|^8.0", + "symfony/notifier": "^6.4|^7.0|^8.0", + "symfony/object-mapper": "^7.3|^8.0", "symfony/polyfill-intl-icu": "~1.0", - "symfony/process": "^5.4|^6.0|^7.0", - "symfony/property-info": "^5.4|^6.0|^7.0", - "symfony/rate-limiter": "^5.4|^6.0|^7.0", - "symfony/scheduler": "^6.4.3|^7.0.3", - "symfony/security-bundle": "^5.4|^6.0|^7.0", - "symfony/semaphore": "^5.4|^6.0|^7.0", - "symfony/serializer": "^6.4|^7.0", - "symfony/stopwatch": "^5.4|^6.0|^7.0", - "symfony/string": "^5.4|^6.0|^7.0", - "symfony/translation": "^6.4|^7.0", - "symfony/twig-bundle": "^5.4|^6.0|^7.0", - "symfony/uid": "^5.4|^6.0|^7.0", - "symfony/validator": "^6.4|^7.0", - "symfony/web-link": "^5.4|^6.0|^7.0", - "symfony/workflow": "^6.4|^7.0", - "symfony/yaml": "^5.4|^6.0|^7.0", - "twig/twig": "^2.10|^3.0" + "symfony/process": "^6.4|^7.0|^8.0", + "symfony/property-info": "^6.4|^7.0|^8.0", + "symfony/rate-limiter": "^6.4|^7.0|^8.0", + "symfony/runtime": "^6.4.13|^7.1.6|^8.0", + "symfony/scheduler": "^6.4.4|^7.0.4|^8.0", + "symfony/security-bundle": "^6.4|^7.0|^8.0", + "symfony/semaphore": "^6.4|^7.0|^8.0", + "symfony/serializer": "^7.2.5|^8.0", + "symfony/stopwatch": "^6.4|^7.0|^8.0", + "symfony/string": "^6.4|^7.0|^8.0", + "symfony/translation": "^7.3|^8.0", + "symfony/twig-bundle": "^6.4|^7.0|^8.0", + "symfony/type-info": "^7.1.8|^8.0", + "symfony/uid": "^6.4|^7.0|^8.0", + "symfony/validator": "^7.4|^8.0", + "symfony/web-link": "^6.4|^7.0|^8.0", + "symfony/webhook": "^7.2|^8.0", + "symfony/workflow": "^7.4|^8.0", + "symfony/yaml": "^7.3|^8.0", + "twig/twig": "^3.12" }, "type": "symfony-bundle", "autoload": { @@ -2324,7 +2606,7 @@ "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/framework-bundle/tree/v6.4.3" + "source": "https://github.com/symfony/framework-bundle/tree/v7.4.1" }, "funding": [ { @@ -2335,45 +2617,50 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-29T15:02:55+00:00" + "time": "2025-12-05T14:04:53+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.4.3", + "version": "v7.4.1", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9" + "reference": "bd1af1e425811d6f077db240c3a588bdb405cd27" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5677bdf7cade4619cb17fc9e1e7b31ec392244a9", - "reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/bd1af1e425811d6f077db240c3a588bdb405cd27", + "reference": "bd1af1e425811d6f077db240c3a588bdb405cd27", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-mbstring": "~1.1", - "symfony/polyfill-php83": "^1.27" + "symfony/polyfill-mbstring": "^1.1" }, "conflict": { - "symfony/cache": "<6.3" + "doctrine/dbal": "<3.6", + "symfony/cache": "<6.4.12|>=7.0,<7.1.5" }, "require-dev": { - "doctrine/dbal": "^2.13.1|^3|^4", + "doctrine/dbal": "^3.6|^4", "predis/predis": "^1.1|^2.0", - "symfony/cache": "^6.3|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0", - "symfony/mime": "^5.4|^6.0|^7.0", - "symfony/rate-limiter": "^5.4|^6.0|^7.0" + "symfony/cache": "^6.4.12|^7.1.5|^8.0", + "symfony/clock": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/expression-language": "^6.4|^7.0|^8.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/mime": "^6.4|^7.0|^8.0", + "symfony/rate-limiter": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { @@ -2401,7 +2688,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.4.3" + "source": "https://github.com/symfony/http-foundation/tree/v7.4.1" }, "funding": [ { @@ -2412,81 +2699,87 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2025-12-07T11:13:10+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.4.3", + "version": "v7.4.2", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2" + "reference": "f6e6f0a5fa8763f75a504b930163785fb6dd055f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9c6ec4e543044f7568a53a76ab1484ecd30637a2", - "reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f6e6f0a5fa8763f75a504b930163785fb6dd055f", + "reference": "f6e6f0a5fa8763f75a504b930163785fb6dd055f", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "psr/log": "^1|^2|^3", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/error-handler": "^6.4|^7.0", - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0|^8.0", + "symfony/event-dispatcher": "^7.3|^8.0", + "symfony/http-foundation": "^7.4|^8.0", "symfony/polyfill-ctype": "^1.8" }, "conflict": { - "symfony/browser-kit": "<5.4", - "symfony/cache": "<5.4", - "symfony/config": "<6.1", - "symfony/console": "<5.4", + "symfony/browser-kit": "<6.4", + "symfony/cache": "<6.4", + "symfony/config": "<6.4", + "symfony/console": "<6.4", "symfony/dependency-injection": "<6.4", - "symfony/doctrine-bridge": "<5.4", - "symfony/form": "<5.4", - "symfony/http-client": "<5.4", + "symfony/doctrine-bridge": "<6.4", + "symfony/flex": "<2.10", + "symfony/form": "<6.4", + "symfony/http-client": "<6.4", "symfony/http-client-contracts": "<2.5", - "symfony/mailer": "<5.4", - "symfony/messenger": "<5.4", - "symfony/translation": "<5.4", + "symfony/mailer": "<6.4", + "symfony/messenger": "<6.4", + "symfony/translation": "<6.4", "symfony/translation-contracts": "<2.5", - "symfony/twig-bridge": "<5.4", + "symfony/twig-bridge": "<6.4", "symfony/validator": "<6.4", - "symfony/var-dumper": "<6.3", - "twig/twig": "<2.13" + "symfony/var-dumper": "<6.4", + "twig/twig": "<3.12" }, "provide": { "psr/log-implementation": "1.0|2.0|3.0" }, "require-dev": { "psr/cache": "^1.0|^2.0|^3.0", - "symfony/browser-kit": "^5.4|^6.0|^7.0", - "symfony/clock": "^6.2|^7.0", - "symfony/config": "^6.1|^7.0", - "symfony/console": "^5.4|^6.0|^7.0", - "symfony/css-selector": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^6.4|^7.0", - "symfony/dom-crawler": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/browser-kit": "^6.4|^7.0|^8.0", + "symfony/clock": "^6.4|^7.0|^8.0", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/css-selector": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/dom-crawler": "^6.4|^7.0|^8.0", + "symfony/expression-language": "^6.4|^7.0|^8.0", + "symfony/finder": "^6.4|^7.0|^8.0", "symfony/http-client-contracts": "^2.5|^3", - "symfony/process": "^5.4|^6.0|^7.0", - "symfony/property-access": "^5.4.5|^6.0.5|^7.0", - "symfony/routing": "^5.4|^6.0|^7.0", - "symfony/serializer": "^6.3|^7.0", - "symfony/stopwatch": "^5.4|^6.0|^7.0", - "symfony/translation": "^5.4|^6.0|^7.0", + "symfony/process": "^6.4|^7.0|^8.0", + "symfony/property-access": "^7.1|^8.0", + "symfony/routing": "^6.4|^7.0|^8.0", + "symfony/serializer": "^7.1|^8.0", + "symfony/stopwatch": "^6.4|^7.0|^8.0", + "symfony/translation": "^6.4|^7.0|^8.0", "symfony/translation-contracts": "^2.5|^3", - "symfony/uid": "^5.4|^6.0|^7.0", - "symfony/validator": "^6.4|^7.0", - "symfony/var-exporter": "^6.2|^7.0", - "twig/twig": "^2.13|^3.0.4" + "symfony/uid": "^6.4|^7.0|^8.0", + "symfony/validator": "^6.4|^7.0|^8.0", + "symfony/var-dumper": "^6.4|^7.0|^8.0", + "symfony/var-exporter": "^6.4|^7.0|^8.0", + "twig/twig": "^3.12" }, "type": "library", "autoload": { @@ -2514,7 +2807,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.4.3" + "source": "https://github.com/symfony/http-kernel/tree/v7.4.2" }, "funding": [ { @@ -2525,34 +2818,41 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-31T07:21:29+00:00" + "time": "2025-12-08T07:43:37+00:00" }, { "name": "symfony/intl", - "version": "v6.4.3", + "version": "v7.4.0", "source": { "type": "git", "url": "https://github.com/symfony/intl.git", - "reference": "2628ded562ca132ed7cdea72f5ec6aaf65d94414" + "reference": "2fa074de6c7faa6b54f2891fc22708f42245ed5c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/intl/zipball/2628ded562ca132ed7cdea72f5ec6aaf65d94414", - "reference": "2628ded562ca132ed7cdea72f5ec6aaf65d94414", + "url": "https://api.github.com/repos/symfony/intl/zipball/2fa074de6c7faa6b54f2891fc22708f42245ed5c", + "reference": "2fa074de6c7faa6b54f2891fc22708f42245ed5c", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/string": "<7.1" }, "require-dev": { - "symfony/filesystem": "^5.4|^6.0|^7.0", - "symfony/finder": "^5.4|^6.0|^7.0", - "symfony/var-exporter": "^5.4|^6.0|^7.0" + "symfony/filesystem": "^6.4|^7.0|^8.0", + "symfony/var-exporter": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { @@ -2560,7 +2860,8 @@ "Symfony\\Component\\Intl\\": "" }, "exclude-from-classmap": [ - "/Tests/" + "/Tests/", + "/Resources/data/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -2596,7 +2897,83 @@ "localization" ], "support": { - "source": "https://github.com/symfony/intl/tree/v6.4.3" + "source": "https://github.com/symfony/intl/tree/v7.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-27T13:27:24+00:00" + }, + { + "name": "symfony/password-hasher", + "version": "v7.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/password-hasher.git", + "reference": "aa075ce6f54fe931f03c1e382597912f4fd94e1e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/password-hasher/zipball/aa075ce6f54fe931f03c1e382597912f4fd94e1e", + "reference": "aa075ce6f54fe931f03c1e382597912f4fd94e1e", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "conflict": { + "symfony/security-core": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/security-core": "^6.4|^7.0|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\PasswordHasher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Robin Chalas", + "email": "robin.chalas@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides password hashing utilities", + "homepage": "https://symfony.com", + "keywords": [ + "hashing", + "password" + ], + "support": { + "source": "https://github.com/symfony/password-hasher/tree/v7.4.0" }, "funding": [ { @@ -2607,29 +2984,33 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2025-08-13T16:46:49+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.29.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4" + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4", - "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "provide": { "ext-ctype": "*" @@ -2640,8 +3021,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -2675,7 +3056,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0" }, "funding": [ { @@ -2686,41 +3067,42 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.28.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "875e90aeea2777b6f135677f618529449334a612" + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", - "reference": "875e90aeea2777b6f135677f618529449334a612", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70", + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "suggest": { "ext-intl": "For best performance" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -2756,7 +3138,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0" }, "funding": [ { @@ -2767,29 +3149,33 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2025-06-27T09:58:17+00:00" }, { "name": "symfony/polyfill-intl-icu", - "version": "v1.29.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-icu.git", - "reference": "07094a28851a49107f3ab4f9120ca2975a64b6e1" + "reference": "bfc8fa13dbaf21d69114b0efcd72ab700fb04d0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/07094a28851a49107f3ab4f9120ca2975a64b6e1", - "reference": "07094a28851a49107f3ab4f9120ca2975a64b6e1", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/bfc8fa13dbaf21d69114b0efcd72ab700fb04d0c", + "reference": "bfc8fa13dbaf21d69114b0efcd72ab700fb04d0c", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "suggest": { "ext-intl": "For best performance and support of other locales than \"en\"" @@ -2797,8 +3183,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -2840,7 +3226,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.33.0" }, "funding": [ { @@ -2851,41 +3237,42 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-29T20:12:16+00:00" + "time": "2025-06-20T22:24:30+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.28.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" + "reference": "3833d7255cc303546435cb650316bff708a1c75c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", - "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "suggest": { "ext-intl": "For best performance" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -2924,7 +3311,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0" }, "funding": [ { @@ -2935,29 +3322,34 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2023-01-26T09:26:14+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.29.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493", "shasum": "" }, "require": { - "php": ">=7.1" + "ext-iconv": "*", + "php": ">=7.2" }, "provide": { "ext-mbstring": "*" @@ -2968,8 +3360,8 @@ "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -3004,7 +3396,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0" }, "funding": [ { @@ -3016,83 +3408,7 @@ "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-29T20:11:03+00:00" - }, - { - "name": "symfony/polyfill-php80", - "version": "v1.29.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", - "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "type": "library", - "extra": { - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ion Bazan", - "email": "ion.bazan@gmail.com" - }, - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", + "url": "https://github.com/nicolas-grekas", "type": "github" }, { @@ -3100,31 +3416,30 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-12-23T08:48:59+00:00" }, { - "name": "symfony/polyfill-php83", - "version": "v1.29.0", + "name": "symfony/polyfill-php85", + "version": "v1.33.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "86fcae159633351e5fd145d1c47de6c528f8caff" + "url": "https://github.com/symfony/polyfill-php85.git", + "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff", - "reference": "86fcae159633351e5fd145d1c47de6c528f8caff", + "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", + "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", "shasum": "" }, "require": { - "php": ">=7.1", - "symfony/polyfill-php80": "^1.14" + "php": ">=7.2" }, "type": "library", "extra": { "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { @@ -3132,7 +3447,7 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Php83\\": "" + "Symfony\\Polyfill\\Php85\\": "" }, "classmap": [ "Resources/stubs" @@ -3152,7 +3467,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -3161,7 +3476,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0" }, "funding": [ { @@ -3172,45 +3487,50 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2025-06-23T16:12:55+00:00" }, { "name": "symfony/psr-http-message-bridge", - "version": "v6.4.3", + "version": "v7.4.0", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47" + "reference": "0101ff8bd0506703b045b1670960302d302a726c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/49cfb0223ec64379f7154214dcc1f7c46f3c7a47", - "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/0101ff8bd0506703b045b1670960302d302a726c", + "reference": "0101ff8bd0506703b045b1670960302d302a726c", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "psr/http-message": "^1.0|^2.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0" + "symfony/http-foundation": "^6.4|^7.0|^8.0" }, "conflict": { "php-http/discovery": "<1.15", - "symfony/http-kernel": "<6.2" + "symfony/http-kernel": "<6.4" }, "require-dev": { "nyholm/psr7": "^1.1", "php-http/discovery": "^1.15", "psr/log": "^1.1.4|^2|^3", - "symfony/browser-kit": "^5.4|^6.0|^7.0", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", - "symfony/framework-bundle": "^6.2|^7.0", - "symfony/http-kernel": "^6.2|^7.0" + "symfony/browser-kit": "^6.4|^7.0|^8.0", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/event-dispatcher": "^6.4|^7.0|^8.0", + "symfony/framework-bundle": "^6.4.13|^7.1.6|^8.0", + "symfony/http-kernel": "^6.4.13|^7.1.6|^8.0", + "symfony/runtime": "^6.4.13|^7.1.6|^8.0" }, "type": "symfony-bridge", "autoload": { @@ -3244,7 +3564,7 @@ "psr-7" ], "support": { - "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.3" + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.4.0" }, "funding": [ { @@ -3255,45 +3575,47 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2025-11-13T08:38:49+00:00" }, { "name": "symfony/routing", - "version": "v6.4.3", + "version": "v7.4.0", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842" + "reference": "4720254cb2644a0b876233d258a32bf017330db7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842", - "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842", + "url": "https://api.github.com/repos/symfony/routing/zipball/4720254cb2644a0b876233d258a32bf017330db7", + "reference": "4720254cb2644a0b876233d258a32bf017330db7", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3" }, "conflict": { - "doctrine/annotations": "<1.12", - "symfony/config": "<6.2", - "symfony/dependency-injection": "<5.4", - "symfony/yaml": "<5.4" + "symfony/config": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/yaml": "<6.4" }, "require-dev": { - "doctrine/annotations": "^1.12|^2", "psr/log": "^1|^2|^3", - "symfony/config": "^6.2|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0", - "symfony/yaml": "^5.4|^6.0|^7.0" + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/expression-language": "^6.4|^7.0|^8.0", + "symfony/http-foundation": "^6.4|^7.0|^8.0", + "symfony/yaml": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { @@ -3327,7 +3649,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.4.3" + "source": "https://github.com/symfony/routing/tree/v7.4.0" }, "funding": [ { @@ -3338,42 +3660,47 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-30T13:55:02+00:00" + "time": "2025-11-27T13:27:24+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.4.1", + "version": "v3.6.1", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0" + "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", - "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43", + "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43", "shasum": "" }, "require": { "php": ">=8.1", - "psr/container": "^1.1|^2.0" + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" }, "conflict": { "ext-psr": "<1.1|>=2" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "3.4-dev" - }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" } }, "autoload": { @@ -3409,7 +3736,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.4.1" + "source": "https://github.com/symfony/service-contracts/tree/v3.6.1" }, "funding": [ { @@ -3420,31 +3747,36 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2023-12-26T14:02:43+00:00" + "time": "2025-07-15T11:30:57+00:00" }, { "name": "symfony/string", - "version": "v6.4.3", + "version": "v7.4.0", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "7a14736fb179876575464e4658fce0c304e8c15b" + "reference": "d50e862cb0a0e0886f73ca1f31b865efbb795003" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/7a14736fb179876575464e4658fce0c304e8c15b", - "reference": "7a14736fb179876575464e4658fce0c304e8c15b", + "url": "https://api.github.com/repos/symfony/string/zipball/d50e862cb0a0e0886f73ca1f31b865efbb795003", + "reference": "d50e862cb0a0e0886f73ca1f31b865efbb795003", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3.0", "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-grapheme": "~1.33", "symfony/polyfill-intl-normalizer": "~1.0", "symfony/polyfill-mbstring": "~1.0" }, @@ -3452,11 +3784,11 @@ "symfony/translation-contracts": "<2.5" }, "require-dev": { - "symfony/error-handler": "^5.4|^6.0|^7.0", - "symfony/http-client": "^5.4|^6.0|^7.0", - "symfony/intl": "^6.2|^7.0", + "symfony/emoji": "^7.1|^8.0", + "symfony/http-client": "^6.4|^7.0|^8.0", + "symfony/intl": "^6.4|^7.0|^8.0", "symfony/translation-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^5.4|^6.0|^7.0" + "symfony/var-exporter": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { @@ -3495,7 +3827,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.4.3" + "source": "https://github.com/symfony/string/tree/v7.4.0" }, "funding": [ { @@ -3506,25 +3838,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-25T09:26:29+00:00" + "time": "2025-11-27T13:27:24+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.4.1", + "version": "v3.6.1", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "06450585bf65e978026bda220cdebca3f867fde7" + "reference": "65a8bc82080447fae78373aa10f8d13b38338977" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7", - "reference": "06450585bf65e978026bda220cdebca3f867fde7", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977", + "reference": "65a8bc82080447fae78373aa10f8d13b38338977", "shasum": "" }, "require": { @@ -3532,12 +3868,12 @@ }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "3.4-dev" - }, "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" } }, "autoload": { @@ -3573,7 +3909,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1" + "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1" }, "funding": [ { @@ -3584,77 +3920,83 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2023-12-26T14:02:43+00:00" + "time": "2025-07-15T13:41:35+00:00" }, { "name": "symfony/twig-bridge", - "version": "v6.4.3", + "version": "v7.4.1", "source": { "type": "git", "url": "https://github.com/symfony/twig-bridge.git", - "reference": "bf6b411a5d9a0ce6ea43cca0fcf5f05f5196a957" + "reference": "9103559ef3e9f06708d8bff6810f6335b8f1eee8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/bf6b411a5d9a0ce6ea43cca0fcf5f05f5196a957", - "reference": "bf6b411a5d9a0ce6ea43cca0fcf5f05f5196a957", + "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/9103559ef3e9f06708d8bff6810f6335b8f1eee8", + "reference": "9103559ef3e9f06708d8bff6810f6335b8f1eee8", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3", "symfony/translation-contracts": "^2.5|^3", - "twig/twig": "^2.13|^3.0.4" + "twig/twig": "^3.21" }, "conflict": { "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", - "symfony/console": "<5.4", - "symfony/form": "<6.3", - "symfony/http-foundation": "<5.4", + "symfony/console": "<6.4", + "symfony/form": "<6.4", + "symfony/http-foundation": "<6.4", "symfony/http-kernel": "<6.4", - "symfony/mime": "<6.2", + "symfony/mime": "<6.4", "symfony/serializer": "<6.4", - "symfony/translation": "<5.4", - "symfony/workflow": "<5.4" + "symfony/translation": "<6.4", + "symfony/workflow": "<6.4" }, "require-dev": { "egulias/email-validator": "^2.1.10|^3|^4", "league/html-to-markdown": "^5.0", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", - "symfony/asset": "^5.4|^6.0|^7.0", - "symfony/asset-mapper": "^6.3|^7.0", - "symfony/console": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/finder": "^5.4|^6.0|^7.0", - "symfony/form": "^6.4|^7.0", - "symfony/html-sanitizer": "^6.1|^7.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0", - "symfony/http-kernel": "^6.4|^7.0", - "symfony/intl": "^5.4|^6.0|^7.0", - "symfony/mime": "^6.2|^7.0", + "symfony/asset": "^6.4|^7.0|^8.0", + "symfony/asset-mapper": "^6.4|^7.0|^8.0", + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/emoji": "^7.1|^8.0", + "symfony/expression-language": "^6.4|^7.0|^8.0", + "symfony/finder": "^6.4|^7.0|^8.0", + "symfony/form": "^6.4.30|~7.3.8|^7.4.1|^8.0.1", + "symfony/html-sanitizer": "^6.4|^7.0|^8.0", + "symfony/http-foundation": "^7.3|^8.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/intl": "^6.4|^7.0|^8.0", + "symfony/mime": "^6.4|^7.0|^8.0", "symfony/polyfill-intl-icu": "~1.0", - "symfony/property-info": "^5.4|^6.0|^7.0", - "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/property-info": "^6.4|^7.0|^8.0", + "symfony/routing": "^6.4|^7.0|^8.0", "symfony/security-acl": "^2.8|^3.0", - "symfony/security-core": "^5.4|^6.0|^7.0", - "symfony/security-csrf": "^5.4|^6.0|^7.0", - "symfony/security-http": "^5.4|^6.0|^7.0", - "symfony/serializer": "^6.4.3|^7.0.3", - "symfony/stopwatch": "^5.4|^6.0|^7.0", - "symfony/translation": "^6.1|^7.0", - "symfony/web-link": "^5.4|^6.0|^7.0", - "symfony/workflow": "^5.4|^6.0|^7.0", - "symfony/yaml": "^5.4|^6.0|^7.0", - "twig/cssinliner-extra": "^2.12|^3", - "twig/inky-extra": "^2.12|^3", - "twig/markdown-extra": "^2.12|^3" + "symfony/security-core": "^6.4|^7.0|^8.0", + "symfony/security-csrf": "^6.4|^7.0|^8.0", + "symfony/security-http": "^6.4|^7.0|^8.0", + "symfony/serializer": "^6.4.3|^7.0.3|^8.0", + "symfony/stopwatch": "^6.4|^7.0|^8.0", + "symfony/translation": "^6.4|^7.0|^8.0", + "symfony/validator": "^6.4|^7.0|^8.0", + "symfony/web-link": "^6.4|^7.0|^8.0", + "symfony/workflow": "^6.4|^7.0|^8.0", + "symfony/yaml": "^6.4|^7.0|^8.0", + "twig/cssinliner-extra": "^3", + "twig/inky-extra": "^3", + "twig/markdown-extra": "^3" }, "type": "symfony-bridge", "autoload": { @@ -3682,7 +4024,7 @@ "description": "Provides integration for Twig with various Symfony components", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/twig-bridge/tree/v6.4.3" + "source": "https://github.com/symfony/twig-bridge/tree/v7.4.1" }, "funding": [ { @@ -3693,43 +4035,45 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-30T08:32:12+00:00" + "time": "2025-12-05T14:04:53+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.4.3", + "version": "v7.4.0", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "0435a08f69125535336177c29d56af3abc1f69da" + "reference": "41fd6c4ae28c38b294b42af6db61446594a0dece" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0435a08f69125535336177c29d56af3abc1f69da", - "reference": "0435a08f69125535336177c29d56af3abc1f69da", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/41fd6c4ae28c38b294b42af6db61446594a0dece", + "reference": "41fd6c4ae28c38b294b42af6db61446594a0dece", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "symfony/console": "<5.4" + "symfony/console": "<6.4" }, "require-dev": { - "ext-iconv": "*", - "symfony/console": "^5.4|^6.0|^7.0", - "symfony/error-handler": "^6.3|^7.0", - "symfony/http-kernel": "^5.4|^6.0|^7.0", - "symfony/process": "^5.4|^6.0|^7.0", - "symfony/uid": "^5.4|^6.0|^7.0", - "twig/twig": "^2.13|^3.0.4" + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/process": "^6.4|^7.0|^8.0", + "symfony/uid": "^6.4|^7.0|^8.0", + "twig/twig": "^3.12" }, "bin": [ "Resources/bin/var-dump-server" @@ -3767,7 +4111,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.4.3" + "source": "https://github.com/symfony/var-dumper/tree/v7.4.0" }, "funding": [ { @@ -3778,33 +4122,39 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-23T14:53:30+00:00" + "time": "2025-10-27T20:36:44+00:00" }, { "name": "symfony/var-exporter", - "version": "v6.4.3", + "version": "v7.4.0", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "a8c12b5448a5ac685347f5eeb2abf6a571ec16b8" + "reference": "03a60f169c79a28513a78c967316fbc8bf17816f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a8c12b5448a5ac685347f5eeb2abf6a571ec16b8", - "reference": "a8c12b5448a5ac685347f5eeb2abf6a571ec16b8", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/03a60f169c79a28513a78c967316fbc8bf17816f", + "reference": "03a60f169c79a28513a78c967316fbc8bf17816f", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3" }, "require-dev": { - "symfony/var-dumper": "^5.4|^6.0|^7.0" + "symfony/property-access": "^6.4|^7.0|^8.0", + "symfony/serializer": "^6.4|^7.0|^8.0", + "symfony/var-dumper": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { @@ -3842,7 +4192,7 @@ "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.4.3" + "source": "https://github.com/symfony/var-exporter/tree/v7.4.0" }, "funding": [ { @@ -3853,37 +4203,41 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2025-09-11T10:15:23+00:00" }, { "name": "symfony/yaml", - "version": "v6.4.3", + "version": "v7.4.1", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "d75715985f0f94f978e3a8fa42533e10db921b90" + "reference": "24dd4de28d2e3988b311751ac49e684d783e2345" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/d75715985f0f94f978e3a8fa42533e10db921b90", - "reference": "d75715985f0f94f978e3a8fa42533e10db921b90", + "url": "https://api.github.com/repos/symfony/yaml/zipball/24dd4de28d2e3988b311751ac49e684d783e2345", + "reference": "24dd4de28d2e3988b311751ac49e684d783e2345", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-ctype": "^1.8" }, "conflict": { - "symfony/console": "<5.4" + "symfony/console": "<6.4" }, "require-dev": { - "symfony/console": "^5.4|^6.0|^7.0" + "symfony/console": "^6.4|^7.0|^8.0" }, "bin": [ "Resources/bin/yaml-lint" @@ -3914,7 +4268,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v6.4.3" + "source": "https://github.com/symfony/yaml/tree/v7.4.1" }, "funding": [ { @@ -3925,31 +4279,35 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2025-12-04T18:11:45+00:00" }, { "name": "twig/intl-extra", - "version": "v3.8.0", + "version": "v3.22.1", "source": { "type": "git", "url": "https://github.com/twigphp/intl-extra.git", - "reference": "7b3db67c700735f473a265a97e1adaeba3e6ca0c" + "reference": "93ac31e53cdd3f2e541f42690cd0c54ca8138ab1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/7b3db67c700735f473a265a97e1adaeba3e6ca0c", - "reference": "7b3db67c700735f473a265a97e1adaeba3e6ca0c", + "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/93ac31e53cdd3f2e541f42690cd0c54ca8138ab1", + "reference": "93ac31e53cdd3f2e541f42690cd0c54ca8138ab1", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/intl": "^5.4|^6.0|^7.0", - "twig/twig": "^3.0" + "php": ">=8.1.0", + "symfony/intl": "^5.4|^6.4|^7.0|^8.0", + "twig/twig": "^3.13|^4.0" }, "require-dev": { "symfony/phpunit-bridge": "^6.4|^7.0" @@ -3982,7 +4340,7 @@ "twig" ], "support": { - "source": "https://github.com/twigphp/intl-extra/tree/v3.8.0" + "source": "https://github.com/twigphp/intl-extra/tree/v3.22.1" }, "funding": [ { @@ -3994,34 +4352,41 @@ "type": "tidelift" } ], - "time": "2023-11-21T17:27:48+00:00" + "time": "2025-11-02T11:00:49+00:00" }, { "name": "twig/twig", - "version": "v3.8.0", + "version": "v3.22.1", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d" + "reference": "1de2ec1fc43ab58a4b7e80b214b96bfc895750f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", - "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/1de2ec1fc43ab58a4b7e80b214b96bfc895750f3", + "reference": "1de2ec1fc43ab58a4b7e80b214b96bfc895750f3", "shasum": "" }, "require": { - "php": ">=7.2.5", + "php": ">=8.1.0", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3", - "symfony/polyfill-php80": "^1.22" + "symfony/polyfill-mbstring": "^1.3" }, "require-dev": { + "phpstan/phpstan": "^2.0", "psr/container": "^1.0|^2.0", - "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0" + "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0" }, "type": "library", "autoload": { + "files": [ + "src/Resources/core.php", + "src/Resources/debug.php", + "src/Resources/escaper.php", + "src/Resources/string_loader.php" + ], "psr-4": { "Twig\\": "src/" } @@ -4054,7 +4419,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.8.0" + "source": "https://github.com/twigphp/Twig/tree/v3.22.1" }, "funding": [ { @@ -4066,32 +4431,32 @@ "type": "tidelift" } ], - "time": "2023-11-21T18:54:41+00:00" + "time": "2025-11-16T16:01:12+00:00" }, { "name": "webmozart/assert", - "version": "1.11.0", + "version": "1.12.1", "source": { "type": "git", "url": "https://github.com/webmozarts/assert.git", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + "reference": "9be6926d8b485f55b9229203f962b51ed377ba68" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/9be6926d8b485f55b9229203f962b51ed377ba68", + "reference": "9be6926d8b485f55b9229203f962b51ed377ba68", "shasum": "" }, "require": { "ext-ctype": "*", + "ext-date": "*", + "ext-filter": "*", "php": "^7.2 || ^8.0" }, - "conflict": { - "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<4.6.1 || 4.6.2" - }, - "require-dev": { - "phpunit/phpunit": "^8.5.13" + "suggest": { + "ext-intl": "", + "ext-simplexml": "", + "ext-spl": "" }, "type": "library", "extra": { @@ -4122,46 +4487,61 @@ ], "support": { "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.11.0" + "source": "https://github.com/webmozarts/assert/tree/1.12.1" }, - "time": "2022-06-03T18:03:27+00:00" + "time": "2025-10-29T15:56:20+00:00" } ], "packages-dev": [ { - "name": "dealerdirect/phpcodesniffer-composer-installer", - "version": "v1.0.0", + "name": "azjezz/psl", + "version": "3.3.0", "source": { "type": "git", - "url": "https://github.com/PHPCSStandards/composer-installer.git", - "reference": "4be43904336affa5c2f70744a348312336afd0da" + "url": "https://github.com/azjezz/psl.git", + "reference": "78078f2c505473d2a28319ffe426b2a82ac76790" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da", - "reference": "4be43904336affa5c2f70744a348312336afd0da", + "url": "https://api.github.com/repos/azjezz/psl/zipball/78078f2c505473d2a28319ffe426b2a82ac76790", + "reference": "78078f2c505473d2a28319ffe426b2a82ac76790", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0 || ^2.0", - "php": ">=5.4", - "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" + "ext-bcmath": "*", + "ext-intl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "ext-sodium": "*", + "php": "~8.2.0 || ~8.3.0 || ~8.4.0", + "revolt/event-loop": "^1.0.6" }, "require-dev": { - "composer/composer": "*", - "ext-json": "*", - "ext-zip": "*", - "php-parallel-lint/php-parallel-lint": "^1.3.1", - "phpcompatibility/php-compatibility": "^9.0", - "yoast/phpunit-polyfills": "^1.0" + "carthage-software/mago": "~0.13.1", + "php-coveralls/php-coveralls": "^2.7.0", + "php-standard-library/psalm-plugin": "^2.3.0", + "phpbench/phpbench": "^1.2.15", + "phpunit/phpunit": "^9.6.18", + "roave/infection-static-analysis-plugin": "^1.36.0", + "vimeo/psalm": "^6.0.0" }, - "type": "composer-plugin", + "suggest": { + "php-standard-library/phpstan-extension": "PHPStan integration", + "php-standard-library/psalm-plugin": "Psalm integration" + }, + "type": "library", "extra": { - "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" + "thanks": { + "url": "https://github.com/hhvm/hsl", + "name": "hhvm/hsl" + } }, "autoload": { + "files": [ + "src/bootstrap.php" + ], "psr-4": { - "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" + "Psl\\": "src/Psl" } }, "notification-url": "https://packagist.org/downloads/", @@ -4170,71 +4550,44 @@ ], "authors": [ { - "name": "Franck Nijhof", - "email": "franck.nijhof@dealerdirect.com", - "homepage": "http://www.frenck.nl", - "role": "Developer / IT Manager" - }, - { - "name": "Contributors", - "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors" + "name": "azjezz", + "email": "azjezz@protonmail.com" } ], - "description": "PHP_CodeSniffer Standards Composer Installer Plugin", - "homepage": "http://www.dealerdirect.com", - "keywords": [ - "PHPCodeSniffer", - "PHP_CodeSniffer", - "code quality", - "codesniffer", - "composer", - "installer", - "phpcbf", - "phpcs", - "plugin", - "qa", - "quality", - "standard", - "standards", - "style guide", - "stylecheck", - "tests" - ], + "description": "PHP Standard Library", "support": { - "issues": "https://github.com/PHPCSStandards/composer-installer/issues", - "source": "https://github.com/PHPCSStandards/composer-installer" + "issues": "https://github.com/azjezz/psl/issues", + "source": "https://github.com/azjezz/psl/tree/3.3.0" }, - "time": "2023-01-05T11:28:13+00:00" + "funding": [ + { + "url": "https://github.com/azjezz", + "type": "github" + } + ], + "time": "2025-03-03T00:07:00+00:00" }, { - "name": "gettext/php-scanner", - "version": "v1.3.1", + "name": "composer-unused/contracts", + "version": "0.3.0", "source": { "type": "git", - "url": "https://github.com/php-gettext/PHP-Scanner.git", - "reference": "989a2cffa1d0f43d13b14c83a50429119b5eb8e4" + "url": "https://github.com/composer-unused/contracts.git", + "reference": "5ec448d3ee80735dccad6a21a3266c377d0845ae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-gettext/PHP-Scanner/zipball/989a2cffa1d0f43d13b14c83a50429119b5eb8e4", - "reference": "989a2cffa1d0f43d13b14c83a50429119b5eb8e4", + "url": "https://api.github.com/repos/composer-unused/contracts/zipball/5ec448d3ee80735dccad6a21a3266c377d0845ae", + "reference": "5ec448d3ee80735dccad6a21a3266c377d0845ae", "shasum": "" }, "require": { - "gettext/gettext": "^5.5.0", - "nikic/php-parser": "^4.2", - "php": ">=7.2" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^2.15", - "oscarotero/php-cs-fixer-config": "^1.0", - "phpunit/phpunit": "^8.0", - "squizlabs/php_codesniffer": "^3.0" + "php": "^7.4 || ^8.0" }, "type": "library", "autoload": { "psr-4": { - "Gettext\\Scanner\\": "src" + "ComposerUnused\\Contracts\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -4243,272 +4596,1435 @@ ], "authors": [ { - "name": "Oscar Otero", - "email": "oom@oscarotero.com", - "homepage": "http://oscarotero.com", - "role": "Developer" + "name": "Andreas Frömer", + "email": "composer-unused@icanhazstring.com" } ], - "description": "PHP scanner for gettext", - "homepage": "https://github.com/php-gettext/PHP-Scanner", - "keywords": [ - "gettext", - "i18n", - "php", - "scanner", - "translation" - ], + "description": "Contract repository for composer-unused", "support": { - "email": "oom@oscarotero.com", - "issues": "https://github.com/php-gettext/PHP-Scanner/issues", - "source": "https://github.com/php-gettext/PHP-Scanner/tree/v1.3.1" + "issues": "https://github.com/composer-unused/contracts/issues", + "source": "https://github.com/composer-unused/contracts/tree/0.3.0" }, - "time": "2022-03-18T11:47:55+00:00" + "funding": [ + { + "url": "https://github.com/icanhazstring", + "type": "github" + } + ], + "time": "2023-03-17T00:41:49+00:00" }, { - "name": "mikey179/vfsstream", - "version": "v1.6.11", + "name": "composer-unused/symbol-parser", + "version": "0.3.1", "source": { "type": "git", - "url": "https://github.com/bovigo/vfsStream.git", - "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f" + "url": "https://github.com/composer-unused/symbol-parser.git", + "reference": "a55ecd3c10867be27a2eabf31cd1600160d250ae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", - "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", + "url": "https://api.github.com/repos/composer-unused/symbol-parser/zipball/a55ecd3c10867be27a2eabf31cd1600160d250ae", + "reference": "a55ecd3c10867be27a2eabf31cd1600160d250ae", "shasum": "" }, "require": { - "php": ">=5.3.0" + "composer-unused/contracts": "^0.3", + "nikic/php-parser": "^5.0", + "php": "^7.4 || ^8.0", + "phpstan/phpdoc-parser": "^1.25 || ^2", + "psr/container": "^1.0 || ^2.0", + "psr/log": "^1.1 || ^2 || ^3", + "symfony/finder": "^5.3 || ^6.0 || ^7.0" }, "require-dev": { - "phpunit/phpunit": "^4.5|^5.0" + "ergebnis/composer-normalize": "^2.45", + "ext-ds": "*", + "phpstan/phpstan": "^2.1", + "phpunit/phpunit": "^9.6.10 || ^10.5", + "roave/security-advisories": "dev-master", + "squizlabs/php_codesniffer": "^3.11.3", + "symfony/serializer": "^5.4" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.6.x-dev" - } - }, "autoload": { - "psr-0": { - "org\\bovigo\\vfs\\": "src/main/php" + "psr-4": { + "ComposerUnused\\SymbolParser\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Frank Kleine", - "homepage": "http://frankkleine.de/", - "role": "Developer" + "name": "Andreas Frömer", + "email": "composer-unused@icanhazstring.com" } ], - "description": "Virtual file system to mock the real file system in unit tests.", - "homepage": "http://vfs.bovigo.org/", + "description": "Toolkit to parse symbols from a composer package", + "homepage": "https://github.com/composer-unused/symbol-parser", + "keywords": [ + "composer", + "parser", + "symbol" + ], "support": { - "issues": "https://github.com/bovigo/vfsStream/issues", - "source": "https://github.com/bovigo/vfsStream/tree/master", - "wiki": "https://github.com/bovigo/vfsStream/wiki" + "issues": "https://github.com/composer-unused/symbol-parser/issues", + "source": "https://github.com/composer-unused/symbol-parser" }, - "time": "2022-02-23T02:02:42+00:00" + "funding": [ + { + "url": "https://github.com/sponsors/icanhazstring", + "type": "github" + }, + { + "url": "https://paypal.me/icanhazstring", + "type": "other" + } + ], + "time": "2025-03-19T09:13:50+00:00" }, { - "name": "myclabs/deep-copy", - "version": "1.11.1", + "name": "composer/pcre", + "version": "3.3.2", "source": { "type": "git", - "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + "url": "https://github.com/composer/pcre.git", + "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e", + "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "php": "^7.4 || ^8.0" }, "conflict": { - "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3,<3.2.2" + "phpstan/phpstan": "<1.11.10" }, "require-dev": { - "doctrine/collections": "^1.6.8", - "doctrine/common": "^2.13.3 || ^3.2.2", - "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + "phpstan/phpstan": "^1.12 || ^2", + "phpstan/phpstan-strict-rules": "^1 || ^2", + "phpunit/phpunit": "^8 || ^9" }, "type": "library", + "extra": { + "phpstan": { + "includes": [ + "extension.neon" + ] + }, + "branch-alias": { + "dev-main": "3.x-dev" + } + }, "autoload": { - "files": [ - "src/DeepCopy/deep_copy.php" - ], "psr-4": { - "DeepCopy\\": "src/DeepCopy/" + "Composer\\Pcre\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "Create deep copies (clones) of your objects", + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", "keywords": [ - "clone", - "copy", - "duplicate", - "object", - "object graph" + "PCRE", + "preg", + "regex", + "regular expression" ], "support": { - "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.3.2" }, "funding": [ { - "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", "type": "tidelift" } ], - "time": "2023-03-08T13:26:56+00:00" + "time": "2024-11-12T16:29:46+00:00" }, { - "name": "nikic/php-parser", - "version": "v4.18.0", + "name": "composer/xdebug-handler", + "version": "3.0.5", "source": { "type": "git", - "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999" + "url": "https://github.com/composer/xdebug-handler.git", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999", - "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", "shasum": "" }, "require": { - "ext-tokenizer": "*", - "php": ">=7.0" + "composer/pcre": "^1 || ^2 || ^3", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1 || ^2 || ^3" }, "require-dev": { - "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" }, - "bin": [ - "bin/php-parse" - ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.9-dev" - } - }, "autoload": { "psr-4": { - "PhpParser\\": "lib/PhpParser" + "Composer\\XdebugHandler\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Nikita Popov" + "name": "John Stevenson", + "email": "john-stevenson@blueyonder.co.uk" } ], - "description": "A PHP parser written in PHP", + "description": "Restarts a process without Xdebug.", "keywords": [ - "parser", - "php" + "Xdebug", + "performance" ], "support": { - "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0" + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/xdebug-handler/issues", + "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" }, - "time": "2023-12-10T21:03:43+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-05-06T16:37:16+00:00" }, { - "name": "phar-io/manifest", - "version": "2.0.3", + "name": "dealerdirect/phpcodesniffer-composer-installer", + "version": "v1.2.0", "source": { "type": "git", - "url": "https://github.com/phar-io/manifest.git", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53" + "url": "https://github.com/PHPCSStandards/composer-installer.git", + "reference": "845eb62303d2ca9b289ef216356568ccc075ffd1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53", + "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/845eb62303d2ca9b289ef216356568ccc075ffd1", + "reference": "845eb62303d2ca9b289ef216356568ccc075ffd1", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-phar": "*", - "ext-xmlwriter": "*", - "phar-io/version": "^3.0.1", - "php": "^7.2 || ^8.0" + "composer-plugin-api": "^2.2", + "php": ">=5.4", + "squizlabs/php_codesniffer": "^3.1.0 || ^4.0" }, - "type": "library", + "require-dev": { + "composer/composer": "^2.2", + "ext-json": "*", + "ext-zip": "*", + "php-parallel-lint/php-parallel-lint": "^1.4.0", + "phpcompatibility/php-compatibility": "^9.0 || ^10.0.0@dev", + "yoast/phpunit-polyfills": "^1.0" + }, + "type": "composer-plugin", "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } + "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" - }, - { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" + "name": "Franck Nijhof", + "email": "opensource@frenck.dev", + "homepage": "https://frenck.dev", + "role": "Open source developer" }, { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "Developer" + "name": "Contributors", + "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors" } ], - "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", - "support": { + "description": "PHP_CodeSniffer Standards Composer Installer Plugin", + "keywords": [ + "PHPCodeSniffer", + "PHP_CodeSniffer", + "code quality", + "codesniffer", + "composer", + "installer", + "phpcbf", + "phpcs", + "plugin", + "qa", + "quality", + "standard", + "standards", + "style guide", + "stylecheck", + "tests" + ], + "support": { + "issues": "https://github.com/PHPCSStandards/composer-installer/issues", + "security": "https://github.com/PHPCSStandards/composer-installer/security/policy", + "source": "https://github.com/PHPCSStandards/composer-installer" + }, + "funding": [ + { + "url": "https://github.com/PHPCSStandards", + "type": "github" + }, + { + "url": "https://github.com/jrfnl", + "type": "github" + }, + { + "url": "https://opencollective.com/php_codesniffer", + "type": "open_collective" + }, + { + "url": "https://thanks.dev/u/gh/phpcsstandards", + "type": "thanks_dev" + } + ], + "time": "2025-11-11T04:32:07+00:00" + }, + { + "name": "gettext/php-scanner", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-gettext/PHP-Scanner.git", + "reference": "43f53b6e0d5f9ac5ea165d8202c18267d6bd5dfd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-gettext/PHP-Scanner/zipball/43f53b6e0d5f9ac5ea165d8202c18267d6bd5dfd", + "reference": "43f53b6e0d5f9ac5ea165d8202c18267d6bd5dfd", + "shasum": "" + }, + "require": { + "gettext/gettext": "^5.5.0", + "nikic/php-parser": "^5", + "php": ">=7.4" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3", + "oscarotero/php-cs-fixer-config": "^2", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Gettext\\Scanner\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Oscar Otero", + "email": "oom@oscarotero.com", + "homepage": "http://oscarotero.com", + "role": "Developer" + } + ], + "description": "PHP scanner for gettext", + "homepage": "https://github.com/php-gettext/PHP-Scanner", + "keywords": [ + "gettext", + "i18n", + "php", + "scanner", + "translation" + ], + "support": { + "email": "oom@oscarotero.com", + "issues": "https://github.com/php-gettext/PHP-Scanner/issues", + "source": "https://github.com/php-gettext/PHP-Scanner/tree/v2.0.1" + }, + "time": "2024-11-29T20:14:52+00:00" + }, + { + "name": "icanhazstring/composer-unused", + "version": "0.9.5", + "source": { + "type": "git", + "url": "https://github.com/composer-unused/composer-unused.git", + "reference": "13b1d32e35e7c6dc997c01342c4fe1b217b6d767" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer-unused/composer-unused/zipball/13b1d32e35e7c6dc997c01342c4fe1b217b6d767", + "reference": "13b1d32e35e7c6dc997c01342c4fe1b217b6d767", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.0", + "composer-unused/contracts": "^0.3", + "composer-unused/symbol-parser": "^0.3.1", + "composer/xdebug-handler": "^3.0", + "ext-json": "*", + "nikic/php-parser": "^5.0", + "ondram/ci-detector": "^4.1", + "php": "^8.1", + "phpstan/phpdoc-parser": "^1.25 || ^2", + "psr/container": "^1.0 || ^2.0", + "psr/log": "^1.1 || ^2 || ^3", + "symfony/config": "^6.0 || ^7.0", + "symfony/console": "^6.0 || ^7.0", + "symfony/dependency-injection": "^6.0 || ^7.0", + "symfony/property-access": "^6.0 || ^7.0", + "symfony/serializer": "^6.0 || ^7.0", + "webmozart/assert": "^1.10", + "webmozart/glob": "^4.4" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8", + "codeception/verify": "^3.1", + "dg/bypass-finals": "^1.6", + "ergebnis/composer-normalize": "^2.42", + "ext-ds": "*", + "ext-zend-opcache": "*", + "jangregor/phpstan-prophecy": "^2.1.1", + "mikey179/vfsstream": "^1.6.10", + "php-ds/php-ds": "^1.5", + "phpspec/prophecy-phpunit": "^2.2.0", + "phpstan/extension-installer": "^1.3", + "phpstan/phpstan": "^2.1.8", + "phpstan/phpstan-phpunit": "^2.0.4", + "phpunit/phpunit": "^9.6.13", + "roave/security-advisories": "dev-master", + "squizlabs/php_codesniffer": "^3.9" + }, + "bin": [ + "bin/composer-unused" + ], + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + } + }, + "autoload": { + "psr-4": { + "ComposerUnused\\ComposerUnused\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andreas Frömer", + "email": "composer-unused@icanhazstring.com" + } + ], + "description": "Show unused packages by scanning your code", + "homepage": "https://github.com/composer-unused/composer-unused", + "keywords": [ + "composer", + "php-parser", + "static analysis", + "unused" + ], + "support": { + "issues": "https://github.com/composer-unused/composer-unused/issues", + "source": "https://github.com/composer-unused/composer-unused" + }, + "funding": [ + { + "url": "https://github.com/sponsors/icanhazstring", + "type": "github" + }, + { + "url": "https://paypal.me/icanhazstring", + "type": "other" + } + ], + "time": "2025-09-22T07:07:50+00:00" + }, + { + "name": "maglnet/composer-require-checker", + "version": "4.18.0", + "source": { + "type": "git", + "url": "https://github.com/maglnet/ComposerRequireChecker.git", + "reference": "de930e82bb61e0161d909696950692523b8eaa3f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/maglnet/ComposerRequireChecker/zipball/de930e82bb61e0161d909696950692523b8eaa3f", + "reference": "de930e82bb61e0161d909696950692523b8eaa3f", + "shasum": "" + }, + "require": { + "azjezz/psl": "^3.2.0", + "composer-runtime-api": "^2.0.0", + "ext-phar": "*", + "nikic/php-parser": "^5.4.0", + "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0", + "symfony/console": "^7.2.1", + "webmozart/glob": "^4.7.0" + }, + "require-dev": { + "doctrine/coding-standard": "^14.0.0", + "ext-zend-opcache": "*", + "phing/phing": "^3.0.1", + "php-standard-library/phpstan-extension": "^2.0", + "php-standard-library/psalm-plugin": "^2.3", + "phpstan/phpstan": "^2.1.19", + "phpunit/phpunit": "^11.5.27", + "psalm/plugin-phpunit": "^0.19.5", + "roave/infection-static-analysis-plugin": "^1.38.0", + "spatie/temporary-directory": "^2.3.0", + "vimeo/psalm": "^6.13.0" + }, + "bin": [ + "bin/composer-require-checker" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "psr-4": { + "ComposerRequireChecker\\": "src/ComposerRequireChecker" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "http://ocramius.github.io/" + }, + { + "name": "Matthias Glaub", + "email": "magl@magl.net", + "homepage": "http://magl.net" + } + ], + "description": "CLI tool to analyze composer dependencies and verify that no unknown symbols are used in the sources of a package", + "homepage": "https://github.com/maglnet/ComposerRequireChecker", + "keywords": [ + "cli", + "composer", + "dependency", + "imports", + "require", + "requirements", + "static analysis" + ], + "support": { + "issues": "https://github.com/maglnet/ComposerRequireChecker/issues", + "source": "https://github.com/maglnet/ComposerRequireChecker/tree/4.18.0" + }, + "time": "2025-10-30T11:58:39+00:00" + }, + { + "name": "mikey179/vfsstream", + "version": "v1.6.12", + "source": { + "type": "git", + "url": "https://github.com/bovigo/vfsStream.git", + "reference": "fe695ec993e0a55c3abdda10a9364eb31c6f1bf0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/fe695ec993e0a55c3abdda10a9364eb31c6f1bf0", + "reference": "fe695ec993e0a55c3abdda10a9364eb31c6f1bf0", + "shasum": "" + }, + "require": { + "php": ">=7.1.0" + }, + "require-dev": { + "phpunit/phpunit": "^7.5||^8.5||^9.6", + "yoast/phpunit-polyfills": "^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.6.x-dev" + } + }, + "autoload": { + "psr-0": { + "org\\bovigo\\vfs\\": "src/main/php" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Frank Kleine", + "homepage": "http://frankkleine.de/", + "role": "Developer" + } + ], + "description": "Virtual file system to mock the real file system in unit tests.", + "homepage": "http://vfs.bovigo.org/", + "support": { + "issues": "https://github.com/bovigo/vfsStream/issues", + "source": "https://github.com/bovigo/vfsStream/tree/master", + "wiki": "https://github.com/bovigo/vfsStream/wiki" + }, + "time": "2024-08-29T18:43:31+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.13.4", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3 <3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2025-08-01T08:46:24+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v5.7.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82", + "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0" + }, + "time": "2025-12-06T11:56:16+00:00" + }, + { + "name": "ondram/ci-detector", + "version": "4.2.0", + "source": { + "type": "git", + "url": "https://github.com/OndraM/ci-detector.git", + "reference": "8b0223b5ed235fd377c75fdd1bfcad05c0f168b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/OndraM/ci-detector/zipball/8b0223b5ed235fd377c75fdd1bfcad05c0f168b8", + "reference": "8b0223b5ed235fd377c75fdd1bfcad05c0f168b8", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "ergebnis/composer-normalize": "^2.13.2", + "lmc/coding-standard": "^3.0.0", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/extension-installer": "^1.1.0", + "phpstan/phpstan": "^1.2.0", + "phpstan/phpstan-phpunit": "^1.0.0", + "phpunit/phpunit": "^9.6.13" + }, + "type": "library", + "autoload": { + "psr-4": { + "OndraM\\CiDetector\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ondřej Machulda", + "email": "ondrej.machulda@gmail.com" + } + ], + "description": "Detect continuous integration environment and provide unified access to properties of current build", + "keywords": [ + "CircleCI", + "Codeship", + "Wercker", + "adapter", + "appveyor", + "aws", + "aws codebuild", + "azure", + "azure devops", + "azure pipelines", + "bamboo", + "bitbucket", + "buddy", + "ci-info", + "codebuild", + "continuous integration", + "continuousphp", + "devops", + "drone", + "github", + "gitlab", + "interface", + "jenkins", + "pipelines", + "sourcehut", + "teamcity", + "travis" + ], + "support": { + "issues": "https://github.com/OndraM/ci-detector/issues", + "source": "https://github.com/OndraM/ci-detector/tree/4.2.0" + }, + "time": "2024-03-12T13:22:30+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { "issues": "https://github.com/phar-io/manifest/issues", - "source": "https://github.com/phar-io/manifest/tree/2.0.3" + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpstan/extension-installer", + "version": "1.4.3", + "source": { + "type": "git", + "url": "https://github.com/phpstan/extension-installer.git", + "reference": "85e90b3942d06b2326fba0403ec24fe912372936" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/extension-installer/zipball/85e90b3942d06b2326fba0403ec24fe912372936", + "reference": "85e90b3942d06b2326fba0403ec24fe912372936", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^2.0", + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.9.0 || ^2.0" + }, + "require-dev": { + "composer/composer": "^2.0", + "php-parallel-lint/php-parallel-lint": "^1.2.0", + "phpstan/phpstan-strict-rules": "^0.11 || ^0.12 || ^1.0" + }, + "type": "composer-plugin", + "extra": { + "class": "PHPStan\\ExtensionInstaller\\Plugin" + }, + "autoload": { + "psr-4": { + "PHPStan\\ExtensionInstaller\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Composer plugin for automatic installation of PHPStan extensions", + "keywords": [ + "dev", + "static analysis" + ], + "support": { + "issues": "https://github.com/phpstan/extension-installer/issues", + "source": "https://github.com/phpstan/extension-installer/tree/1.4.3" + }, + "time": "2024-09-04T20:21:43+00:00" + }, + { + "name": "phpstan/phpdoc-parser", + "version": "2.3.0", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpdoc-parser.git", + "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495", + "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "doctrine/annotations": "^2.0", + "nikic/php-parser": "^5.3.0", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpstan/phpstan-strict-rules": "^2.0", + "phpunit/phpunit": "^9.6", + "symfony/process": "^5.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "PHPStan\\PhpDocParser\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPDoc parser with support for nullable, intersection and generic types", + "support": { + "issues": "https://github.com/phpstan/phpdoc-parser/issues", + "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.0" + }, + "time": "2025-08-30T15:50:23+00:00" + }, + { + "name": "phpstan/phpstan", + "version": "2.1.33", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9e800e6bee7d5bd02784d4c6069b48032d16224f", + "reference": "9e800e6bee7d5bd02784d4c6069b48032d16224f", + "shasum": "" + }, + "require": { + "php": "^7.4|^8.0" + }, + "conflict": { + "phpstan/phpstan-shim": "*" + }, + "bin": [ + "phpstan", + "phpstan.phar" + ], + "type": "library", + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan - PHP Static Analysis Tool", + "keywords": [ + "dev", + "static analysis" + ], + "support": { + "docs": "https://phpstan.org/user-guide/getting-started", + "forum": "https://github.com/phpstan/phpstan/discussions", + "issues": "https://github.com/phpstan/phpstan/issues", + "security": "https://github.com/phpstan/phpstan/security/policy", + "source": "https://github.com/phpstan/phpstan-src" + }, + "funding": [ + { + "url": "https://github.com/ondrejmirtes", + "type": "github" + }, + { + "url": "https://github.com/phpstan", + "type": "github" + } + ], + "time": "2025-12-05T10:24:31+00:00" + }, + { + "name": "phpstan/phpstan-mockery", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan-mockery.git", + "reference": "89a949d0ac64298e88b7c7fa00caee565c198394" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan-mockery/zipball/89a949d0ac64298e88b7c7fa00caee565c198394", + "reference": "89a949d0ac64298e88b7c7fa00caee565c198394", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "phpstan/phpstan": "^2.0" + }, + "require-dev": { + "mockery/mockery": "^1.6.11", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/phpstan-phpunit": "^2.0", + "phpstan/phpstan-strict-rules": "^2.0", + "phpunit/phpunit": "^9.6" + }, + "type": "phpstan-extension", + "extra": { + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "PHPStan\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan Mockery extension", + "support": { + "issues": "https://github.com/phpstan/phpstan-mockery/issues", + "source": "https://github.com/phpstan/phpstan-mockery/tree/2.0.0" + }, + "time": "2024-10-14T03:18:12+00:00" + }, + { + "name": "phpstan/phpstan-phpunit", + "version": "2.0.10", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan-phpunit.git", + "reference": "8d61a5854e7497d95bc85188e13537e99bd7aae7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/8d61a5854e7497d95bc85188e13537e99bd7aae7", + "reference": "8d61a5854e7497d95bc85188e13537e99bd7aae7", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "phpstan/phpstan": "^2.1.32" + }, + "conflict": { + "phpunit/phpunit": "<7.0" + }, + "require-dev": { + "nikic/php-parser": "^5", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/phpstan-deprecation-rules": "^2.0", + "phpstan/phpstan-strict-rules": "^2.0", + "phpunit/phpunit": "^9.6" + }, + "type": "phpstan-extension", + "extra": { + "phpstan": { + "includes": [ + "extension.neon", + "rules.neon" + ] + } + }, + "autoload": { + "psr-4": { + "PHPStan\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPUnit extensions and rules for PHPStan", + "support": { + "issues": "https://github.com/phpstan/phpstan-phpunit/issues", + "source": "https://github.com/phpstan/phpstan-phpunit/tree/2.0.10" + }, + "time": "2025-12-06T11:15:39+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "11.0.11", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "4f7722aa9a7b76aa775e2d9d4e95d1ea16eeeef4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/4f7722aa9a7b76aa775e2d9d4e95d1ea16eeeef4", + "reference": "4f7722aa9a7b76aa775e2d9d4e95d1ea16eeeef4", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^5.4.0", + "php": ">=8.2", + "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-text-template": "^4.0.1", + "sebastian/code-unit-reverse-lookup": "^4.0.1", + "sebastian/complexity": "^4.0.1", + "sebastian/environment": "^7.2.0", + "sebastian/lines-of-code": "^3.0.1", + "sebastian/version": "^5.0.2", + "theseer/tokenizer": "^1.2.3" + }, + "require-dev": { + "phpunit/phpunit": "^11.5.2" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.11" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage", + "type": "tidelift" + } + ], + "time": "2025-08-27T14:37:49+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "5.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6", + "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-08-27T05:02:59+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "5.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2", + "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "security": "https://github.com/sebastianbergmann/php-invoker/security/policy", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1" }, - "time": "2021-07-20T11:28:43+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:07:44+00:00" }, { - "name": "phar-io/version", - "version": "3.2.1", + "name": "phpunit/php-text-template", + "version": "4.0.1", "source": { "type": "git", - "url": "https://github.com/phar-io/version.git", - "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", - "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964", + "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, "autoload": { "classmap": [ "src/" @@ -4519,119 +6035,148 @@ "BSD-3-Clause" ], "authors": [ - { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" - }, - { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" - }, { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de", - "role": "Developer" + "role": "lead" } ], - "description": "Library for handling version information and constraints", + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], "support": { - "issues": "https://github.com/phar-io/version/issues", - "source": "https://github.com/phar-io/version/tree/3.2.1" + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1" }, - "time": "2022-02-21T01:04:05+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:08:43+00:00" }, { - "name": "phpstan/phpdoc-parser", - "version": "1.25.0", + "name": "phpunit/php-timer", + "version": "7.0.1", "source": { "type": "git", - "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240" + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bd84b629c8de41aa2ae82c067c955e06f1b00240", - "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3", + "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": ">=8.2" }, "require-dev": { - "doctrine/annotations": "^2.0", - "nikic/php-parser": "^4.15", - "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.5", - "phpstan/phpstan-phpunit": "^1.1", - "phpstan/phpstan-strict-rules": "^1.0", - "phpunit/phpunit": "^9.5", - "symfony/process": "^5.2" + "phpunit/phpunit": "^11.0" }, "type": "library", - "autoload": { - "psr-4": { - "PHPStan\\PhpDocParser\\": [ - "src/" - ] + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" } }, + "autoload": { + "classmap": [ + "src/" + ] + }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" ], - "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { - "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.25.0" + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "security": "https://github.com/sebastianbergmann/php-timer/security/policy", + "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1" }, - "time": "2024-01-04T17:06:16+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:09:35+00:00" }, { - "name": "phpunit/php-code-coverage", - "version": "10.1.11", + "name": "phpunit/phpunit", + "version": "11.5.46", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "78c3b7625965c2513ee96569a4dbb62601784145" + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "75dfe79a2aa30085b7132bb84377c24062193f33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/78c3b7625965c2513ee96569a4dbb62601784145", - "reference": "78c3b7625965c2513ee96569a4dbb62601784145", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/75dfe79a2aa30085b7132bb84377c24062193f33", + "reference": "75dfe79a2aa30085b7132bb84377c24062193f33", "shasum": "" }, "require": { "ext-dom": "*", + "ext-json": "*", "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", "ext-xmlwriter": "*", - "nikic/php-parser": "^4.18 || ^5.0", - "php": ">=8.1", - "phpunit/php-file-iterator": "^4.0", - "phpunit/php-text-template": "^3.0", - "sebastian/code-unit-reverse-lookup": "^3.0", - "sebastian/complexity": "^3.0", - "sebastian/environment": "^6.0", - "sebastian/lines-of-code": "^2.0", - "sebastian/version": "^4.0", - "theseer/tokenizer": "^1.2.0" - }, - "require-dev": { - "phpunit/phpunit": "^10.1" + "myclabs/deep-copy": "^1.13.4", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=8.2", + "phpunit/php-code-coverage": "^11.0.11", + "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-invoker": "^5.0.1", + "phpunit/php-text-template": "^4.0.1", + "phpunit/php-timer": "^7.0.1", + "sebastian/cli-parser": "^3.0.2", + "sebastian/code-unit": "^3.0.3", + "sebastian/comparator": "^6.3.2", + "sebastian/diff": "^6.0.2", + "sebastian/environment": "^7.2.1", + "sebastian/exporter": "^6.3.2", + "sebastian/global-state": "^7.0.2", + "sebastian/object-enumerator": "^6.0.1", + "sebastian/type": "^5.1.3", + "sebastian/version": "^5.0.2", + "staabm/side-effects-detector": "^1.0.5" }, "suggest": { - "ext-pcov": "PHP extension that provides line coverage", - "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + "ext-soap": "To be able to generate mocks based on WSDL files" }, + "bin": [ + "phpunit" + ], "type": "library", "extra": { "branch-alias": { - "dev-main": "10.1-dev" + "dev-main": "11.5-dev" } }, "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], "classmap": [ "src/" ] @@ -4642,55 +6187,206 @@ ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.46" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2025-12-06T08:01:15+00:00" + }, + { + "name": "predis/predis", + "version": "v3.3.0", + "source": { + "type": "git", + "url": "https://github.com/predis/predis.git", + "reference": "153097374b39a2f737fe700ebcd725642526cdec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/predis/predis/zipball/153097374b39a2f737fe700ebcd725642526cdec", + "reference": "153097374b39a2f737fe700ebcd725642526cdec", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "psr/http-message": "^1.0|^2.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.3", + "phpstan/phpstan": "^1.9", + "phpunit/phpcov": "^6.0 || ^8.0", + "phpunit/phpunit": "^8.0 || ~9.4.4" + }, + "suggest": { + "ext-relay": "Faster connection with in-memory caching (>=0.6.2)" + }, + "type": "library", + "autoload": { + "psr-4": { + "Predis\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Till Krüss", + "homepage": "https://till.im", + "role": "Maintainer" + } + ], + "description": "A flexible and feature-complete Redis/Valkey client for PHP.", + "homepage": "http://github.com/predis/predis", + "keywords": [ + "nosql", + "predis", + "redis" + ], + "support": { + "issues": "https://github.com/predis/predis/issues", + "source": "https://github.com/predis/predis/tree/v3.3.0" + }, + "funding": [ + { + "url": "https://github.com/sponsors/tillkruss", + "type": "github" + } + ], + "time": "2025-11-24T17:48:50+00:00" + }, + { + "name": "revolt/event-loop", + "version": "v1.0.8", + "source": { + "type": "git", + "url": "https://github.com/revoltphp/event-loop.git", + "reference": "b6fc06dce8e9b523c9946138fa5e62181934f91c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/revoltphp/event-loop/zipball/b6fc06dce8e9b523c9946138fa5e62181934f91c", + "reference": "b6fc06dce8e9b523c9946138fa5e62181934f91c", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "ext-json": "*", + "jetbrains/phpstorm-stubs": "^2019.3", + "phpunit/phpunit": "^9", + "psalm/phar": "^5.15" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Revolt\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Aaron Piotrowski", + "email": "aaron@trowski.com" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "ceesjank@gmail.com" + }, + { + "name": "Christian Lück", + "email": "christian@clue.engineering" + }, + { + "name": "Niklas Keller", + "email": "me@kelunik.com" } ], - "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", - "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "description": "Rock-solid event loop for concurrent PHP applications.", "keywords": [ - "coverage", - "testing", - "xunit" + "async", + "asynchronous", + "concurrency", + "event", + "event-loop", + "non-blocking", + "scheduler" ], "support": { - "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.11" + "issues": "https://github.com/revoltphp/event-loop/issues", + "source": "https://github.com/revoltphp/event-loop/tree/v1.0.8" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2023-12-21T15:38:30+00:00" + "time": "2025-08-27T21:33:23+00:00" }, { - "name": "phpunit/php-file-iterator", - "version": "4.1.0", + "name": "sebastian/cli-parser", + "version": "3.0.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c" + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c", - "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180", + "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "4.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -4709,16 +6405,12 @@ "role": "lead" } ], - "description": "FilterIterator implementation that filters files based on a list of suffixes.", - "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", - "keywords": [ - "filesystem", - "iterator" - ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", "support": { - "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", - "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0" + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2" }, "funding": [ { @@ -4726,36 +6418,32 @@ "type": "github" } ], - "time": "2023-08-31T06:24:48+00:00" + "time": "2024-07-03T04:41:36+00:00" }, { - "name": "phpunit/php-invoker", - "version": "4.0.0", + "name": "sebastian/code-unit", + "version": "3.0.3", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-invoker.git", - "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7" + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", - "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64", + "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "require-dev": { - "ext-pcntl": "*", - "phpunit/phpunit": "^10.0" - }, - "suggest": { - "ext-pcntl": "*" + "phpunit/phpunit": "^11.5" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "4.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -4774,14 +6462,12 @@ "role": "lead" } ], - "description": "Invoke callables with a timeout", - "homepage": "https://github.com/sebastianbergmann/php-invoker/", - "keywords": [ - "process" - ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", "support": { - "issues": "https://github.com/sebastianbergmann/php-invoker/issues", - "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0" + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "security": "https://github.com/sebastianbergmann/code-unit/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3" }, "funding": [ { @@ -4789,32 +6475,32 @@ "type": "github" } ], - "time": "2023-02-03T06:56:09+00:00" + "time": "2025-03-19T07:56:08+00:00" }, { - "name": "phpunit/php-text-template", - "version": "3.0.1", + "name": "sebastian/code-unit-reverse-lookup", + "version": "4.0.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748" + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "183a9b2632194febd219bb9246eee421dad8d45e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748", - "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e", + "reference": "183a9b2632194febd219bb9246eee421dad8d45e", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.0-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -4829,19 +6515,15 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "email": "sebastian@phpunit.de" } ], - "description": "Simple template engine.", - "homepage": "https://github.com/sebastianbergmann/php-text-template/", - "keywords": [ - "template" - ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", "support": { - "issues": "https://github.com/sebastianbergmann/php-text-template/issues", - "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", - "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1" + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1" }, "funding": [ { @@ -4849,32 +6531,39 @@ "type": "github" } ], - "time": "2023-08-31T14:07:24+00:00" + "time": "2024-07-03T04:45:54+00:00" }, { - "name": "phpunit/php-timer", - "version": "6.0.0", + "name": "sebastian/comparator", + "version": "6.3.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d" + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "85c77556683e6eee4323e4c5468641ca0237e2e8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d", - "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/85c77556683e6eee4323e4c5468641ca0237e2e8", + "reference": "85c77556683e6eee4323e4c5468641ca0237e2e8", "shasum": "" }, "require": { - "php": ">=8.1" + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/diff": "^6.0", + "sebastian/exporter": "^6.0" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^11.4" + }, + "suggest": { + "ext-bcmath": "For comparing BcMath\\Number objects" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "6.0-dev" + "dev-main": "6.3-dev" } }, "autoload": { @@ -4889,85 +6578,81 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" } ], - "description": "Utility class for timing", - "homepage": "https://github.com/sebastianbergmann/php-timer/", + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", "keywords": [ - "timer" + "comparator", + "compare", + "equality" ], "support": { - "issues": "https://github.com/sebastianbergmann/php-timer/issues", - "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0" + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.2" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator", + "type": "tidelift" } ], - "time": "2023-02-03T06:57:52+00:00" + "time": "2025-08-10T08:07:46+00:00" }, { - "name": "phpunit/phpunit", - "version": "10.5.5", + "name": "sebastian/complexity", + "version": "4.0.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "ed21115d505b4b4f7dc7b5651464e19a2c7f7856" + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "ee41d384ab1906c68852636b6de493846e13e5a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/ed21115d505b4b4f7dc7b5651464e19a2c7f7856", - "reference": "ed21115d505b4b4f7dc7b5651464e19a2c7f7856", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0", + "reference": "ee41d384ab1906c68852636b6de493846e13e5a0", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-json": "*", - "ext-libxml": "*", - "ext-mbstring": "*", - "ext-xml": "*", - "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.10.1", - "phar-io/manifest": "^2.0.3", - "phar-io/version": "^3.0.2", - "php": ">=8.1", - "phpunit/php-code-coverage": "^10.1.5", - "phpunit/php-file-iterator": "^4.0", - "phpunit/php-invoker": "^4.0", - "phpunit/php-text-template": "^3.0", - "phpunit/php-timer": "^6.0", - "sebastian/cli-parser": "^2.0", - "sebastian/code-unit": "^2.0", - "sebastian/comparator": "^5.0", - "sebastian/diff": "^5.0", - "sebastian/environment": "^6.0", - "sebastian/exporter": "^5.1", - "sebastian/global-state": "^6.0.1", - "sebastian/object-enumerator": "^5.0", - "sebastian/recursion-context": "^5.0", - "sebastian/type": "^4.0", - "sebastian/version": "^4.0" + "nikic/php-parser": "^5.0", + "php": ">=8.2" }, - "suggest": { - "ext-soap": "To be able to generate mocks based on WSDL files" + "require-dev": { + "phpunit/phpunit": "^11.0" }, - "bin": [ - "phpunit" - ], "type": "library", "extra": { "branch-alias": { - "dev-main": "10.5-dev" + "dev-main": "4.0-dev" } }, "autoload": { - "files": [ - "src/Framework/Assert/Functions.php" - ], "classmap": [ "src/" ] @@ -4983,119 +6668,115 @@ "role": "lead" } ], - "description": "The PHP Unit Testing framework.", - "homepage": "https://phpunit.de/", - "keywords": [ - "phpunit", - "testing", - "xunit" - ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", "support": { - "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.5" + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1" }, "funding": [ - { - "url": "https://phpunit.de/sponsors.html", - "type": "custom" - }, { "url": "https://github.com/sebastianbergmann", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", - "type": "tidelift" } ], - "time": "2023-12-27T15:13:52+00:00" + "time": "2024-07-03T04:49:50+00:00" }, { - "name": "predis/predis", - "version": "v2.2.2", + "name": "sebastian/diff", + "version": "6.0.2", "source": { "type": "git", - "url": "https://github.com/predis/predis.git", - "reference": "b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1" + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/predis/predis/zipball/b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1", - "reference": "b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544", + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": ">=8.2" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.3", - "phpstan/phpstan": "^1.9", - "phpunit/phpunit": "^8.0 || ~9.4.4" - }, - "suggest": { - "ext-relay": "Faster connection with in-memory caching (>=0.6.2)" + "phpunit/phpunit": "^11.0", + "symfony/process": "^4.2 || ^5" }, "type": "library", - "autoload": { - "psr-4": { - "Predis\\": "src/" + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" } }, + "autoload": { + "classmap": [ + "src/" + ] + }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Till Krüss", - "homepage": "https://till.im", - "role": "Maintainer" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" } ], - "description": "A flexible and feature-complete Redis client for PHP.", - "homepage": "http://github.com/predis/predis", + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", "keywords": [ - "nosql", - "predis", - "redis" + "diff", + "udiff", + "unidiff", + "unified diff" ], "support": { - "issues": "https://github.com/predis/predis/issues", - "source": "https://github.com/predis/predis/tree/v2.2.2" + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2" }, "funding": [ { - "url": "https://github.com/sponsors/tillkruss", + "url": "https://github.com/sebastianbergmann", "type": "github" } ], - "time": "2023-09-13T16:42:03+00:00" + "time": "2024-07-03T04:53:05+00:00" }, { - "name": "sebastian/cli-parser", - "version": "2.0.0", + "name": "sebastian/environment", + "version": "7.2.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/cli-parser.git", - "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae" + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae", - "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4", + "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^11.3" + }, + "suggest": { + "ext-posix": "*" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.0-dev" + "dev-main": "7.2-dev" } }, "autoload": { @@ -5110,48 +6791,67 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "email": "sebastian@phpunit.de" } ], - "description": "Library for parsing CLI options", - "homepage": "https://github.com/sebastianbergmann/cli-parser", + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "https://github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], "support": { - "issues": "https://github.com/sebastianbergmann/cli-parser/issues", - "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0" + "issues": "https://github.com/sebastianbergmann/environment/issues", + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/environment", + "type": "tidelift" } ], - "time": "2023-02-03T06:58:15+00:00" + "time": "2025-05-21T11:55:47+00:00" }, { - "name": "sebastian/code-unit", - "version": "2.0.0", + "name": "sebastian/exporter", + "version": "6.3.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/code-unit.git", - "reference": "a81fee9eef0b7a76af11d121767abc44c104e503" + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "70a298763b40b213ec087c51c739efcaa90bcd74" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503", - "reference": "a81fee9eef0b7a76af11d121767abc44c104e503", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/70a298763b40b213ec087c51c739efcaa90bcd74", + "reference": "70a298763b40b213ec087c51c739efcaa90bcd74", "shasum": "" }, "require": { - "php": ">=8.1" + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/recursion-context": "^6.0" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^11.3" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.0-dev" + "dev-main": "6.3-dev" } }, "autoload": { @@ -5166,48 +6866,83 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" } ], - "description": "Collection of value objects that represent the PHP code units", - "homepage": "https://github.com/sebastianbergmann/code-unit", + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], "support": { - "issues": "https://github.com/sebastianbergmann/code-unit/issues", - "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0" + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.2" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter", + "type": "tidelift" } ], - "time": "2023-02-03T06:58:43+00:00" + "time": "2025-09-24T06:12:51+00:00" }, { - "name": "sebastian/code-unit-reverse-lookup", - "version": "3.0.0", + "name": "sebastian/global-state", + "version": "7.0.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d" + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "3be331570a721f9a4b5917f4209773de17f747d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", - "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7", + "reference": "3be331570a721f9a4b5917f4209773de17f747d7", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "ext-dom": "*", + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.0-dev" + "dev-main": "7.0-dev" } }, "autoload": { @@ -5225,11 +6960,15 @@ "email": "sebastian@phpunit.de" } ], - "description": "Looks up which function or method a line of code belongs to", - "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "description": "Snapshotting of global state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], "support": { - "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", - "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0" + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2" }, "funding": [ { @@ -5237,36 +6976,33 @@ "type": "github" } ], - "time": "2023-02-03T06:59:15+00:00" + "time": "2024-07-03T04:57:36+00:00" }, { - "name": "sebastian/comparator", - "version": "5.0.1", + "name": "sebastian/lines-of-code", + "version": "3.0.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "2db5010a484d53ebf536087a70b4a5423c102372" + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372", - "reference": "2db5010a484d53ebf536087a70b4a5423c102372", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a", + "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-mbstring": "*", - "php": ">=8.1", - "sebastian/diff": "^5.0", - "sebastian/exporter": "^5.0" + "nikic/php-parser": "^5.0", + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^10.3" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "5.0-dev" + "dev-main": "3.0-dev" } }, "autoload": { @@ -5281,32 +7017,16 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Volker Dusch", - "email": "github@wallbash.com" - }, - { - "name": "Bernhard Schussek", - "email": "bschussek@2bepublished.at" + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Provides the functionality to compare PHP values for equality", - "homepage": "https://github.com/sebastianbergmann/comparator", - "keywords": [ - "comparator", - "compare", - "equality" - ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", "support": { - "issues": "https://github.com/sebastianbergmann/comparator/issues", - "security": "https://github.com/sebastianbergmann/comparator/security/policy", - "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1" + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1" }, "funding": [ { @@ -5314,33 +7034,34 @@ "type": "github" } ], - "time": "2023-08-14T13:18:12+00:00" + "time": "2024-07-03T04:58:38+00:00" }, { - "name": "sebastian/complexity", - "version": "3.2.0", + "name": "sebastian/object-enumerator", + "version": "6.0.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/complexity.git", - "reference": "68ff824baeae169ec9f2137158ee529584553799" + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "f5b498e631a74204185071eb41f33f38d64608aa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799", - "reference": "68ff824baeae169ec9f2137158ee529584553799", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa", + "reference": "f5b498e631a74204185071eb41f33f38d64608aa", "shasum": "" }, "require": { - "nikic/php-parser": "^4.18 || ^5.0", - "php": ">=8.1" + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.2-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -5355,16 +7076,15 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "email": "sebastian@phpunit.de" } ], - "description": "Library for calculating the complexity of PHP code units", - "homepage": "https://github.com/sebastianbergmann/complexity", + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", "support": { - "issues": "https://github.com/sebastianbergmann/complexity/issues", - "security": "https://github.com/sebastianbergmann/complexity/security/policy", - "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0" + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1" }, "funding": [ { @@ -5372,33 +7092,32 @@ "type": "github" } ], - "time": "2023-12-21T08:37:17+00:00" + "time": "2024-07-03T05:00:13+00:00" }, { - "name": "sebastian/diff", - "version": "5.1.0", + "name": "sebastian/object-reflector", + "version": "4.0.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f" + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/fbf413a49e54f6b9b17e12d900ac7f6101591b7f", - "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9", + "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^10.0", - "symfony/process": "^4.2 || ^5" + "phpunit/phpunit": "^11.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "5.1-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -5414,24 +7133,14 @@ { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de" - }, - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" } ], - "description": "Diff implementation", - "homepage": "https://github.com/sebastianbergmann/diff", - "keywords": [ - "diff", - "udiff", - "unidiff", - "unified diff" - ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", "support": { - "issues": "https://github.com/sebastianbergmann/diff/issues", - "security": "https://github.com/sebastianbergmann/diff/security/policy", - "source": "https://github.com/sebastianbergmann/diff/tree/5.1.0" + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "security": "https://github.com/sebastianbergmann/object-reflector/security/policy", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1" }, "funding": [ { @@ -5439,30 +7148,27 @@ "type": "github" } ], - "time": "2023-12-22T10:55:06+00:00" + "time": "2024-07-03T05:01:32+00:00" }, { - "name": "sebastian/environment", - "version": "6.0.1", + "name": "sebastian/recursion-context", + "version": "6.0.3", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951" + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951", - "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/f6458abbf32a6c8174f8f26261475dc133b3d9dc", + "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^10.0" - }, - "suggest": { - "ext-posix": "*" + "phpunit/phpunit": "^11.3" }, "type": "library", "extra": { @@ -5483,49 +7189,62 @@ { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" } ], - "description": "Provides functionality to handle HHVM/PHP environments", - "homepage": "https://github.com/sebastianbergmann/environment", - "keywords": [ - "Xdebug", - "environment", - "hhvm" - ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", "support": { - "issues": "https://github.com/sebastianbergmann/environment/issues", - "security": "https://github.com/sebastianbergmann/environment/security/policy", - "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1" + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "security": "https://github.com/sebastianbergmann/recursion-context/security/policy", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.3" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context", + "type": "tidelift" } ], - "time": "2023-04-11T05:39:26+00:00" + "time": "2025-08-13T04:42:22+00:00" }, { - "name": "sebastian/exporter", - "version": "5.1.1", + "name": "sebastian/type", + "version": "5.1.3", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc" + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/64f51654862e0f5e318db7e9dcc2292c63cdbddc", - "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/f77d2d4e78738c98d9a68d2596fe5e8fa380f449", + "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449", "shasum": "" }, "require": { - "ext-mbstring": "*", - "php": ">=8.1", - "sebastian/recursion-context": "^5.0" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^11.3" }, "type": "library", "extra": { @@ -5545,71 +7264,58 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Volker Dusch", - "email": "github@wallbash.com" - }, - { - "name": "Adam Harvey", - "email": "aharvey@php.net" - }, - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Provides the functionality to export PHP variables for visualization", - "homepage": "https://www.github.com/sebastianbergmann/exporter", - "keywords": [ - "export", - "exporter" - ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", "support": { - "issues": "https://github.com/sebastianbergmann/exporter/issues", - "security": "https://github.com/sebastianbergmann/exporter/security/policy", - "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.1" + "issues": "https://github.com/sebastianbergmann/type/issues", + "security": "https://github.com/sebastianbergmann/type/security/policy", + "source": "https://github.com/sebastianbergmann/type/tree/5.1.3" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/type", + "type": "tidelift" } ], - "time": "2023-09-24T13:22:09+00:00" + "time": "2025-08-09T06:55:48+00:00" }, { - "name": "sebastian/global-state", - "version": "6.0.1", + "name": "sebastian/version", + "version": "5.0.2", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4" + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/7ea9ead78f6d380d2a667864c132c2f7b83055e4", - "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874", + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874", "shasum": "" }, "require": { - "php": ">=8.1", - "sebastian/object-reflector": "^3.0", - "sebastian/recursion-context": "^5.0" - }, - "require-dev": { - "ext-dom": "*", - "phpunit/phpunit": "^10.0" + "php": ">=8.2" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "6.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -5624,18 +7330,16 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Snapshotting of global state", - "homepage": "http://www.github.com/sebastianbergmann/global-state", - "keywords": [ - "global state" - ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", "support": { - "issues": "https://github.com/sebastianbergmann/global-state/issues", - "security": "https://github.com/sebastianbergmann/global-state/security/policy", - "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.1" + "issues": "https://github.com/sebastianbergmann/version/issues", + "security": "https://github.com/sebastianbergmann/version/security/policy", + "source": "https://github.com/sebastianbergmann/version/tree/5.0.2" }, "funding": [ { @@ -5643,591 +7347,749 @@ "type": "github" } ], - "time": "2023-07-19T07:19:23+00:00" + "time": "2024-10-09T05:16:32+00:00" }, { - "name": "sebastian/lines-of-code", - "version": "2.0.2", + "name": "simplesamlphp/simplesamlphp-test-framework", + "version": "v1.10.6", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/lines-of-code.git", - "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0" + "url": "https://github.com/simplesamlphp/simplesamlphp-test-framework.git", + "reference": "b33c1108738ab06fb40314cd1449445da402095f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0", - "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-test-framework/zipball/b33c1108738ab06fb40314cd1449445da402095f", + "reference": "b33c1108738ab06fb40314cd1449445da402095f", "shasum": "" }, "require": { - "nikic/php-parser": "^4.18 || ^5.0", - "php": ">=8.1" + "ext-curl": "*", + "icanhazstring/composer-unused": "^0.9", + "maglnet/composer-require-checker": "^4", + "php": "^8.2", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^11.5 || ^12.3", + "psr/log": "^3.0", + "slevomat/coding-standard": "^8.20", + "squizlabs/php_codesniffer": "^3.13 || ^4.0", + "symfony/phpunit-bridge": "^7.3 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^10.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "2.0-dev" - } + "simplesamlphp/simplesamlphp": "^2.4" }, - "autoload": { - "classmap": [ - "src/" - ] + "type": "project", + "autoload": { + "psr-4": { + "SimpleSAML\\TestUtils\\": "lib/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "LGPL-2.1-or-later" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Tim van Dijen", + "email": "tvdijen@gmail.com" } ], - "description": "Library for counting the lines of code in PHP source code", - "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "description": "Test framework for SimpleSAMLphp and related repositories ", + "keywords": [ + "test-framework" + ], "support": { - "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", - "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", - "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2" + "issues": "https://github.com/simplesamlphp/simplesamlphp-test-framework/issues", + "source": "https://github.com/simplesamlphp/simplesamlphp-test-framework" }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2023-12-21T08:38:20+00:00" + "time": "2025-11-29T21:53:08+00:00" }, { - "name": "sebastian/object-enumerator", - "version": "5.0.0", + "name": "slevomat/coding-standard", + "version": "8.25.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906" + "url": "https://github.com/slevomat/coding-standard.git", + "reference": "4caa5ec5a30b84b2305e80159c710d437f40cc40" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906", - "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906", + "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/4caa5ec5a30b84b2305e80159c710d437f40cc40", + "reference": "4caa5ec5a30b84b2305e80159c710d437f40cc40", "shasum": "" }, "require": { - "php": ">=8.1", - "sebastian/object-reflector": "^3.0", - "sebastian/recursion-context": "^5.0" + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.2.0", + "php": "^7.4 || ^8.0", + "phpstan/phpdoc-parser": "^2.3.0", + "squizlabs/php_codesniffer": "^4.0.1" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phing/phing": "3.0.1|3.1.0", + "php-parallel-lint/php-parallel-lint": "1.4.0", + "phpstan/phpstan": "2.1.32", + "phpstan/phpstan-deprecation-rules": "2.0.3", + "phpstan/phpstan-phpunit": "2.0.8", + "phpstan/phpstan-strict-rules": "2.0.7", + "phpunit/phpunit": "9.6.8|10.5.48|11.4.4|11.5.36|12.4.4" }, - "type": "library", + "type": "phpcodesniffer-standard", "extra": { "branch-alias": { - "dev-main": "5.0-dev" + "dev-master": "8.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "SlevomatCodingStandard\\": "SlevomatCodingStandard/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - } + "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", + "keywords": [ + "dev", + "phpcs" ], - "description": "Traverses array structures and object graphs to enumerate all referenced objects", - "homepage": "https://github.com/sebastianbergmann/object-enumerator/", "support": { - "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", - "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0" + "issues": "https://github.com/slevomat/coding-standard/issues", + "source": "https://github.com/slevomat/coding-standard/tree/8.25.1" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://github.com/kukulich", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard", + "type": "tidelift" } ], - "time": "2023-02-03T07:08:32+00:00" + "time": "2025-11-25T18:01:43+00:00" }, { - "name": "sebastian/object-reflector", - "version": "3.0.0", + "name": "squizlabs/php_codesniffer", + "version": "4.0.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "24ed13d98130f0e7122df55d06c5c4942a577957" + "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", + "reference": "0525c73950de35ded110cffafb9892946d7771b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957", - "reference": "24ed13d98130f0e7122df55d06c5c4942a577957", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/0525c73950de35ded110cffafb9892946d7771b5", + "reference": "0525c73950de35ded110cffafb9892946d7771b5", "shasum": "" }, "require": { - "php": ">=8.1" + "ext-simplexml": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": ">=7.2.0" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^8.4.0 || ^9.3.4 || ^10.5.32 || 11.3.3 - 11.5.28 || ^11.5.31" }, + "bin": [ + "bin/phpcbf", + "bin/phpcs" + ], "type": "library", - "extra": { - "branch-alias": { - "dev-main": "3.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Greg Sherwood", + "role": "Former lead" + }, + { + "name": "Juliette Reinders Folmer", + "role": "Current lead" + }, + { + "name": "Contributors", + "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors" } ], - "description": "Allows reflection of object attributes, including inherited and non-public ones", - "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "description": "PHP_CodeSniffer tokenizes PHP files and detects violations of a defined set of coding standards.", + "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer", + "keywords": [ + "phpcs", + "standards", + "static analysis" + ], "support": { - "issues": "https://github.com/sebastianbergmann/object-reflector/issues", - "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0" + "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues", + "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy", + "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer", + "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://github.com/PHPCSStandards", + "type": "github" + }, + { + "url": "https://github.com/jrfnl", "type": "github" + }, + { + "url": "https://opencollective.com/php_codesniffer", + "type": "open_collective" + }, + { + "url": "https://thanks.dev/u/gh/phpcsstandards", + "type": "thanks_dev" } ], - "time": "2023-02-03T07:06:18+00:00" + "time": "2025-11-10T16:43:36+00:00" }, { - "name": "sebastian/recursion-context", - "version": "5.0.0", + "name": "staabm/side-effects-detector", + "version": "1.0.5", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "05909fb5bc7df4c52992396d0116aed689f93712" + "url": "https://github.com/staabm/side-effects-detector.git", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712", - "reference": "05909fb5bc7df4c52992396d0116aed689f93712", + "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163", "shasum": "" }, "require": { - "php": ">=8.1" + "ext-tokenizer": "*", + "php": "^7.4 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.6", + "phpunit/phpunit": "^9.6.21", + "symfony/var-dumper": "^5.4.43", + "tomasvotruba/type-coverage": "1.0.0", + "tomasvotruba/unused-public": "1.0.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "5.0-dev" - } - }, "autoload": { "classmap": [ - "src/" + "lib/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Adam Harvey", - "email": "aharvey@php.net" - } + "description": "A static analysis tool to detect side effects in PHP code", + "keywords": [ + "static analysis" ], - "description": "Provides functionality to recursively process PHP variables", - "homepage": "https://github.com/sebastianbergmann/recursion-context", "support": { - "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0" + "issues": "https://github.com/staabm/side-effects-detector/issues", + "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://github.com/staabm", "type": "github" } ], - "time": "2023-02-03T07:05:40+00:00" + "time": "2024-10-20T05:08:20+00:00" }, { - "name": "sebastian/type", - "version": "4.0.0", + "name": "symfony/phpunit-bridge", + "version": "v8.0.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/type.git", - "reference": "462699a16464c3944eefc02ebdd77882bd3925bf" + "url": "https://github.com/symfony/phpunit-bridge.git", + "reference": "51b2adaf2cdb00cdab11e6b593e37ef76358e161" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf", - "reference": "462699a16464c3944eefc02ebdd77882bd3925bf", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/51b2adaf2cdb00cdab11e6b593e37ef76358e161", + "reference": "51b2adaf2cdb00cdab11e6b593e37ef76358e161", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.1.0" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.4.3|^7.0.3|^8.0" }, - "type": "library", + "bin": [ + "bin/simple-phpunit" + ], + "type": "symfony-bridge", "extra": { - "branch-alias": { - "dev-main": "4.0-dev" + "thanks": { + "url": "https://github.com/sebastianbergmann/phpunit", + "name": "phpunit/phpunit" } }, "autoload": { - "classmap": [ - "src/" + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Bridge\\PhpUnit\\": "" + }, + "exclude-from-classmap": [ + "/Tests/", + "/bin/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Collection of value objects that represent the types of the PHP type system", - "homepage": "https://github.com/sebastianbergmann/type", + "description": "Provides utilities for PHPUnit, especially user deprecation notices management", + "homepage": "https://symfony.com", + "keywords": [ + "testing" + ], "support": { - "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/4.0.0" + "source": "https://github.com/symfony/phpunit-bridge/tree/v8.0.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "time": "2023-02-03T07:10:45+00:00" + "time": "2025-10-29T07:48:08+00:00" }, { - "name": "sebastian/version", - "version": "4.0.1", + "name": "symfony/polyfill-php84", + "version": "v1.33.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/version.git", - "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17" + "url": "https://github.com/symfony/polyfill-php84.git", + "reference": "d8ced4d875142b6a7426000426b8abc631d6b191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17", - "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191", + "reference": "d8ced4d875142b6a7426000426b8abc631d6b191", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=7.2" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "4.0-dev" + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php84\\": "" + }, "classmap": [ - "src/" + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Library that helps with managing the version number of Git-hosted PHP projects", - "homepage": "https://github.com/sebastianbergmann/version", + "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], "support": { - "issues": "https://github.com/sebastianbergmann/version/issues", - "source": "https://github.com/sebastianbergmann/version/tree/4.0.1" + "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "time": "2023-02-07T11:34:05+00:00" + "time": "2025-06-24T13:30:11+00:00" }, { - "name": "simplesamlphp/simplesamlphp-test-framework", - "version": "v1.5.10", + "name": "symfony/property-access", + "version": "v7.4.0", "source": { "type": "git", - "url": "https://github.com/simplesamlphp/simplesamlphp-test-framework.git", - "reference": "58a0dc88216b7f7bb51da62a7174d646ba526129" + "url": "https://github.com/symfony/property-access.git", + "reference": "537626149d2910ca43eb9ce465654366bf4442f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-test-framework/zipball/58a0dc88216b7f7bb51da62a7174d646ba526129", - "reference": "58a0dc88216b7f7bb51da62a7174d646ba526129", + "url": "https://api.github.com/repos/symfony/property-access/zipball/537626149d2910ca43eb9ce465654366bf4442f4", + "reference": "537626149d2910ca43eb9ce465654366bf4442f4", "shasum": "" }, "require": { - "phpunit/phpunit": "^9.6 || ^10.0", - "slevomat/coding-standard": "^8.14" + "php": ">=8.2", + "symfony/property-info": "^6.4|^7.0|^8.0" }, "require-dev": { - "ext-curl": "*", - "php": "^8.0", - "simplesamlphp/simplesamlphp": "^2.0.0" + "symfony/cache": "^6.4|^7.0|^8.0", + "symfony/var-exporter": "^6.4.1|^7.0.1|^8.0" }, - "type": "project", + "type": "library", "autoload": { "psr-4": { - "SimpleSAML\\TestUtils\\": "lib/" - } + "Symfony\\Component\\PropertyAccess\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "MIT" ], "authors": [ { - "name": "Tim van Dijen", - "email": "tvdijen@gmail.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Test framework for SimpleSAMLphp and related repositories ", + "description": "Provides functions to read and write from/to an object or array using a simple string notation", + "homepage": "https://symfony.com", "keywords": [ - "test-framework" + "access", + "array", + "extraction", + "index", + "injection", + "object", + "property", + "property-path", + "reflection" ], "support": { - "issues": "https://github.com/simplesamlphp/simplesamlphp-test-framework/issues", - "source": "https://github.com/simplesamlphp/simplesamlphp-test-framework" + "source": "https://github.com/symfony/property-access/tree/v7.4.0" }, - "time": "2024-01-11T18:12:00+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-09-08T21:14:32+00:00" }, { - "name": "slevomat/coding-standard", - "version": "8.14.1", + "name": "symfony/property-info", + "version": "v7.4.1", "source": { "type": "git", - "url": "https://github.com/slevomat/coding-standard.git", - "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926" + "url": "https://github.com/symfony/property-info.git", + "reference": "912aafe70bee5cfd09fec5916fe35b83f04ae6ae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/fea1fd6f137cc84f9cba0ae30d549615dbc6a926", - "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926", + "url": "https://api.github.com/repos/symfony/property-info/zipball/912aafe70bee5cfd09fec5916fe35b83f04ae6ae", + "reference": "912aafe70bee5cfd09fec5916fe35b83f04ae6ae", "shasum": "" }, "require": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0", - "php": "^7.2 || ^8.0", - "phpstan/phpdoc-parser": "^1.23.1", - "squizlabs/php_codesniffer": "^3.7.1" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/string": "^6.4|^7.0|^8.0", + "symfony/type-info": "~7.3.8|^7.4.1|^8.0.1" }, - "require-dev": { - "phing/phing": "2.17.4", - "php-parallel-lint/php-parallel-lint": "1.3.2", - "phpstan/phpstan": "1.10.37", - "phpstan/phpstan-deprecation-rules": "1.1.4", - "phpstan/phpstan-phpunit": "1.3.14", - "phpstan/phpstan-strict-rules": "1.5.1", - "phpunit/phpunit": "8.5.21|9.6.8|10.3.5" + "conflict": { + "phpdocumentor/reflection-docblock": "<5.2", + "phpdocumentor/type-resolver": "<1.5.1", + "symfony/cache": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/serializer": "<6.4" }, - "type": "phpcodesniffer-standard", - "extra": { - "branch-alias": { - "dev-master": "8.x-dev" - } + "require-dev": { + "phpdocumentor/reflection-docblock": "^5.2", + "phpstan/phpdoc-parser": "^1.0|^2.0", + "symfony/cache": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/serializer": "^6.4|^7.0|^8.0" }, + "type": "library", "autoload": { "psr-4": { - "SlevomatCodingStandard\\": "SlevomatCodingStandard/" - } + "Symfony\\Component\\PropertyInfo\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", + "authors": [ + { + "name": "Kévin Dunglas", + "email": "dunglas@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Extracts information about PHP class' properties using metadata of popular sources", + "homepage": "https://symfony.com", "keywords": [ - "dev", - "phpcs" + "doctrine", + "phpdoc", + "property", + "symfony", + "type", + "validator" ], "support": { - "issues": "https://github.com/slevomat/coding-standard/issues", - "source": "https://github.com/slevomat/coding-standard/tree/8.14.1" + "source": "https://github.com/symfony/property-info/tree/v7.4.1" }, "funding": [ { - "url": "https://github.com/kukulich", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard", + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2023-10-08T07:28:08+00:00" + "time": "2025-12-05T14:04:53+00:00" }, { - "name": "squizlabs/php_codesniffer", - "version": "3.8.1", + "name": "symfony/serializer", + "version": "v7.4.2", "source": { "type": "git", - "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "14f5fff1e64118595db5408e946f3a22c75807f7" + "url": "https://github.com/symfony/serializer.git", + "reference": "1a957acb613b520e443c2c659a67c782b67794bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/14f5fff1e64118595db5408e946f3a22c75807f7", - "reference": "14f5fff1e64118595db5408e946f3a22c75807f7", + "url": "https://api.github.com/repos/symfony/serializer/zipball/1a957acb613b520e443c2c659a67c782b67794bc", + "reference": "1a957acb613b520e443c2c659a67c782b67794bc", "shasum": "" }, "require": { - "ext-simplexml": "*", - "ext-tokenizer": "*", - "ext-xmlwriter": "*", - "php": ">=5.4.0" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php84": "^1.30" + }, + "conflict": { + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/dependency-injection": "<6.4", + "symfony/property-access": "<6.4", + "symfony/property-info": "<6.4", + "symfony/uid": "<6.4", + "symfony/validator": "<6.4", + "symfony/yaml": "<6.4" }, "require-dev": { - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4" + "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0", + "phpstan/phpdoc-parser": "^1.0|^2.0", + "seld/jsonlint": "^1.10", + "symfony/cache": "^6.4|^7.0|^8.0", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^7.2|^8.0", + "symfony/error-handler": "^6.4|^7.0|^8.0", + "symfony/filesystem": "^6.4|^7.0|^8.0", + "symfony/form": "^6.4|^7.0|^8.0", + "symfony/http-foundation": "^6.4|^7.0|^8.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/messenger": "^6.4|^7.0|^8.0", + "symfony/mime": "^6.4|^7.0|^8.0", + "symfony/property-access": "^6.4|^7.0|^8.0", + "symfony/property-info": "^6.4|^7.0|^8.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/type-info": "^7.1.8|^8.0", + "symfony/uid": "^6.4|^7.0|^8.0", + "symfony/validator": "^6.4|^7.0|^8.0", + "symfony/var-dumper": "^6.4|^7.0|^8.0", + "symfony/var-exporter": "^6.4|^7.0|^8.0", + "symfony/yaml": "^6.4|^7.0|^8.0" }, - "bin": [ - "bin/phpcbf", - "bin/phpcs" - ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.x-dev" - } + "autoload": { + "psr-4": { + "Symfony\\Component\\Serializer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Greg Sherwood", - "role": "Former lead" - }, - { - "name": "Juliette Reinders Folmer", - "role": "Current lead" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Contributors", - "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", - "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer", - "keywords": [ - "phpcs", - "standards", - "static analysis" - ], + "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues", - "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy", - "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer", - "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki" + "source": "https://github.com/symfony/serializer/tree/v7.4.2" }, "funding": [ { - "url": "https://github.com/PHPCSStandards", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" }, { - "url": "https://github.com/jrfnl", + "url": "https://github.com/nicolas-grekas", "type": "github" }, { - "url": "https://opencollective.com/php_codesniffer", - "type": "open_collective" + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "time": "2024-01-11T20:47:48+00:00" + "time": "2025-12-07T17:35:40+00:00" }, { "name": "symfony/translation", - "version": "v6.4.3", + "version": "v7.4.0", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "637c51191b6b184184bbf98937702bcf554f7d04" + "reference": "2d01ca0da3f092f91eeedb46f24aa30d2fca8f68" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/637c51191b6b184184bbf98937702bcf554f7d04", - "reference": "637c51191b6b184184bbf98937702bcf554f7d04", + "url": "https://api.github.com/repos/symfony/translation/zipball/2d01ca0da3f092f91eeedb46f24aa30d2fca8f68", + "reference": "2d01ca0da3f092f91eeedb46f24aa30d2fca8f68", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", - "symfony/translation-contracts": "^2.5|^3.0" + "symfony/translation-contracts": "^2.5.3|^3.3" }, "conflict": { - "symfony/config": "<5.4", - "symfony/console": "<5.4", - "symfony/dependency-injection": "<5.4", + "nikic/php-parser": "<5.0", + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", "symfony/http-client-contracts": "<2.5", - "symfony/http-kernel": "<5.4", + "symfony/http-kernel": "<6.4", "symfony/service-contracts": "<2.5", - "symfony/twig-bundle": "<5.4", - "symfony/yaml": "<5.4" + "symfony/twig-bundle": "<6.4", + "symfony/yaml": "<6.4" }, "provide": { "symfony/translation-implementation": "2.3|3.0" }, "require-dev": { - "nikic/php-parser": "^4.18|^5.0", + "nikic/php-parser": "^5.0", "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/console": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/finder": "^6.4|^7.0|^8.0", "symfony/http-client-contracts": "^2.5|^3.0", - "symfony/http-kernel": "^5.4|^6.0|^7.0", - "symfony/intl": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/intl": "^6.4|^7.0|^8.0", "symfony/polyfill-intl-icu": "^1.21", - "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/routing": "^6.4|^7.0|^8.0", "symfony/service-contracts": "^2.5|^3", - "symfony/yaml": "^5.4|^6.0|^7.0" + "symfony/yaml": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { @@ -6258,7 +8120,90 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v6.4.3" + "source": "https://github.com/symfony/translation/tree/v7.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-27T13:27:24+00:00" + }, + { + "name": "symfony/type-info", + "version": "v7.4.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/type-info.git", + "reference": "ac5ab66b21c758df71b7210cf1033d1ac807f202" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/type-info/zipball/ac5ab66b21c758df71b7210cf1033d1ac807f202", + "reference": "ac5ab66b21c758df71b7210cf1033d1ac807f202", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "phpstan/phpdoc-parser": "<1.30" + }, + "require-dev": { + "phpstan/phpdoc-parser": "^1.30|^2.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\TypeInfo\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mathias Arlaud", + "email": "mathias.arlaud@gmail.com" + }, + { + "name": "Baptiste LEDUC", + "email": "baptiste.leduc@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Extracts PHP types information.", + "homepage": "https://symfony.com", + "keywords": [ + "PHPStan", + "phpdoc", + "symfony", + "type" + ], + "support": { + "source": "https://github.com/symfony/type-info/tree/v7.4.1" }, "funding": [ { @@ -6269,25 +8214,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-01-29T13:11:52+00:00" + "time": "2025-12-05T14:04:53+00:00" }, { "name": "theseer/tokenizer", - "version": "1.2.2", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96" + "reference": "b7489ce515e168639d17feec34b8847c326b0b3c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96", - "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c", + "reference": "b7489ce515e168639d17feec34b8847c326b0b3c", "shasum": "" }, "require": { @@ -6316,7 +8265,7 @@ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "support": { "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/1.2.2" + "source": "https://github.com/theseer/tokenizer/tree/1.3.1" }, "funding": [ { @@ -6324,18 +8273,65 @@ "type": "github" } ], - "time": "2023-11-20T00:12:19+00:00" + "time": "2025-11-17T20:03:58+00:00" + }, + { + "name": "webmozart/glob", + "version": "4.7.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/glob.git", + "reference": "8a2842112d6916e61e0e15e316465b611f3abc17" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/glob/zipball/8a2842112d6916e61e0e15e316465b611f3abc17", + "reference": "8a2842112d6916e61e0e15e316465b611f3abc17", + "shasum": "" + }, + "require": { + "php": "^7.3 || ^8.0.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.5", + "symfony/filesystem": "^5.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Glob\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "A PHP implementation of Ant's glob.", + "support": { + "issues": "https://github.com/webmozarts/glob/issues", + "source": "https://github.com/webmozarts/glob/tree/4.7.0" + }, + "time": "2024-03-07T20:33:40+00:00" } ], "aliases": [], "minimum-stability": "stable", - "stability-flags": { - "simplesamlphp/saml2": 15 - }, + "stability-flags": {}, "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": "^8.1", + "php": "^8.2", "ext-date": "*", "ext-dom": "*", "ext-fileinfo": "*", @@ -6357,5 +8353,5 @@ "ext-curl": "*", "ext-pdo_sqlite": "*" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.9.0" } diff --git a/config/authsources.php.dist b/config/authsources.php.dist index fe896f4067..15dcfc759a 100644 --- a/config/authsources.php.dist +++ b/config/authsources.php.dist @@ -97,13 +97,15 @@ $config = [ //'remember.username.enabled' => false, //'remember.username.checked' => false, - 'student:studentpass' => [ - 'uid' => ['test'], - 'eduPersonAffiliation' => ['member', 'student'], - ], - 'employee:employeepass' => [ - 'uid' => ['employee'], - 'eduPersonAffiliation' => ['member', 'employee'], + 'users' => [ + 'student:studentpass' => [ + 'uid' => ['test'], + 'eduPersonAffiliation' => ['member', 'student'], + ], + 'employee:employeepass' => [ + 'uid' => ['employee'], + 'eduPersonAffiliation' => ['member', 'employee'], + ], ], ], */ @@ -133,7 +135,7 @@ $config = [ /* // This authentication source serves as an example of integration with an // external authentication engine. Take a look at the comment in the beginning - // of modules/exampleauth/lib/Auth/Source/External.php for a description of + // of modules/exampleauth/src/Auth/Source/External.php for a description of // how to adjust it to your own site. 'example-external' => [ 'exampleauth:External', diff --git a/config/config.php.dist b/config/config.php.dist index 61ad4e7b77..9100e9f4b6 100644 --- a/config/config.php.dist +++ b/config/config.php.dist @@ -58,11 +58,10 @@ $config = [ /* * The following settings are *filesystem paths* which define where * SimpleSAMLphp can find or write the following things: - * - 'cachedir': Where SimpleSAMLphp can write its cache. + * - 'cachedir': Where SimpleSAMLphp can write its cache. * - 'loggingdir': Where to write logs. MUST be set to NULL when using a logging * handler other than `file`. * - 'datadir': Storage of general data. - * this directory if it doesn't exist. * When specified as a relative path, this is relative to the SimpleSAMLphp * root directory. */ @@ -194,6 +193,10 @@ $config = [ * This password will give access to the installation page of SimpleSAMLphp with * metadata listing and diagnostics pages. * You can also put a hash here; run "bin/pwgen.php" to generate one. + * + * If you are using Ansible you might like to use + * ansible.builtin.password_hash(hashtype='blowfish', ident='2y', rounds=13) + * to generate this hashed value. */ 'auth.adminpassword' => '123', @@ -275,9 +278,20 @@ $config = [ * Whenever you change any of these headers, make sure to validate your config by running your * hostname through a security-test like https://en.internet.nl 'headers.security' => [ - 'Content-Security-Policy' => "default-src 'none'; frame-ancestors 'self'; object-src 'none'; script-src 'self'; style-src 'self'; font-src 'self'; connect-src 'self'; img-src 'self' data:; base-uri 'none'", - 'Referrer-Policy' => 'origin-when-cross-origin', + 'Content-Security-Policy' => + "default-src 'none'; " . + "frame-ancestors 'self'; " . + "object-src 'none'; " . + "script-src 'self'; " . + "style-src 'self'; " . + "font-src 'self'; " . + "connect-src 'self'; " . + "media-src data:; " . + "img-src 'self' data:; " . + "base-uri 'none'", + 'X-Frame-Options' => 'SAMEORIGIN', 'X-Content-Type-Options' => 'nosniff', + 'Referrer-Policy' => 'origin-when-cross-origin', ], */ @@ -330,9 +344,69 @@ $config = [ * When 'errorreporting' is enabled, a form will be presented for the user to report * the error to 'technicalcontact_email'. */ - 'showerrors' => true, + 'showerrors' => false, 'errorreporting' => true, + /* + * When showerrors is true, this is an array of which errors + * should still be shown to the user. By default an error will + * always be shown if showerrors==true and this setting is at the default value to allow all. + * + * If you list anything in this option you have to explicitly list each error + * you would like to be shown to the user. You can also set the value to false + * to hide that error. If this setting is used with anything other than the default + * value and an error is not listed in the list then a backtrace for that error + * will not be shown. + * + * These can be any of the error codes in + * src/SimpleSAML/Error/ErrorCodes.php + * + */ + 'showerrors.whitelist' => [ '*' => true ], + /* + some of the many possibilities for this setting + + 'showerrors.whitelist' => [ + 'ACSPARAMS' => true, + 'ADMINNOTHASHED' => true, + 'ARSPARAMS' => true, + 'AUTHSOURCEERROR' => true, + 'BADREQUEST' => true, + 'CASERROR' => true, + 'CONFIG' => true, + 'CREATEREQUEST' => true, + 'DISCOPARAMS' => true, + 'GENERATEAUTHNRESPONSE' => true, + 'INVALIDCERT' => true, + 'LDAPERROR' => true, + 'LOGOUTINFOLOST' => true, + 'LOGOUTREQUEST' => true, + 'MEMCACHEDOWN' => true, + 'METADATA' => true, + 'METADATANOTFOUND' => true, + 'METHODNOTALLOWED' => true, + 'NOACCESS' => true, + 'NOCERT' => true, + 'NORELAYSTATE' => true, + 'NOSTATE' => true, + 'NOTFOUND' => true, + 'NOTFOUNDREASON' => true, + 'NOTSET' => true, + 'NOTVALIDCERT' => true, + 'NOTVALIDCERTSIGNATURE' => true, + 'PROCESSASSERTION' => true, + 'PROCESSAUTHNREQUEST' => true, + 'RESPONSESTATUSNOSUCCESS' => true, + 'SLOSERVICEPARAMS' => true, + 'SSOPARAMS' => true, + 'UNHANDLEDEXCEPTION' => true, + 'UNKNOWNCERT' => true, + 'USERABORTED' => true, + 'WRONGUSERPASS' => true, + ], + */ + + /* * Custom error show function called from SimpleSAML\Error\Error::show. * See docs/simplesamlphp-errorhandling.md for function code example. @@ -448,7 +522,7 @@ $config = [ * Proxy to use for retrieving URLs. * * Example: - * 'proxy' => 'tcp://proxy.example.com:5100' + * 'proxy' => 'http://proxy.example.com:5100' */ 'proxy' => null, @@ -542,19 +616,20 @@ $config = [ ***********/ /* - * Configuration for enabling/disabling modules. By default the 'core', 'admin' and 'saml' modules are enabled. + * Configuration for enabling/disabling modules. By default, the 'core', 'admin' and 'saml' modules are enabled. * * Example: * * 'module.enable' => [ * 'exampleauth' => true, // Setting to TRUE enables. * 'consent' => false, // Setting to FALSE disables. - * 'core' => null, // Unset or NULL uses default. + * 'core' => null, // Unset or NULL uses default from \SimpleSAML\Module::$core_modules. * ], */ - 'module.enable' => [ + 'core' => true, 'admin' => true, + 'saml' => true, ], @@ -815,7 +890,7 @@ $config = [ */ 'language.available' => [ 'en', 'no', 'nn', 'se', 'da', 'de', 'sv', 'fi', 'es', 'ca', 'fr', 'it', 'nl', 'lb', - 'cs', 'sk', 'sl', 'lt', 'hr', 'hu', 'pl', 'pt', 'pt-br', 'tr', 'ja', 'zh', 'zh-tw', + 'cs', 'sk', 'sl', 'lt', 'hr', 'hu', 'pl', 'pt', 'pt_BR', 'tr', 'ja', 'zh', 'zh_TW', 'ru', 'et', 'he', 'id', 'sr', 'lv', 'ro', 'eu', 'el', 'af', 'zu', 'xh', 'st', ], 'language.rtl' => ['ar', 'dv', 'fa', 'ur', 'he'], @@ -891,6 +966,14 @@ $config = [ */ 'template.auto_reload' => false, + + /* + * Set the 'template.debug' to true to enable debugging for Twig templates. + * This is useful during development as it provides better error messages. + * Defaults to false. + */ + //'template.debug' => false, + /* * Set this option to true to indicate that your installation of SimpleSAMLphp * is running in a production environment. This will affect the way resources @@ -908,6 +991,19 @@ $config = [ * The serving of the resources can be configured through these settings. */ 'assets' => [ + /* + * Used to generate cache buster tags. This salt is only used for this purpose. + * You should set this in the same way as secretsalt. + * + * You can change this salt at any time. This will have the effect of explicit + * cache busting as the tags for resources will change and thus all resources + * will be fetched again. + * + * Leaving the default value in place can allow an attacker the opportunity + * to work out the version of SSP you have installed. + */ + 'salt' => 'assets.salt.default', + /* * These settings adjust the caching headers that are sent * when serving static resources. @@ -987,12 +1083,6 @@ $config = [ // Adopts language from attribute to use in UI 30 => 'core:LanguageAdaptor', - 45 => [ - 'class' => 'core:StatisticsWithAttribute', - 'attributename' => 'realm', - 'type' => 'saml20-idp-SSO', - ], - /* When called without parameters, it will fallback to filter attributes 'the old way' * by checking the 'attributes' parameter in metadata on IdP hosted and SP remote. */ @@ -1127,6 +1217,21 @@ $config = [ * ['type' => 'xml', 'file' => 'idp.example.org-idpMeta.xml'], * ], * + * This example defines a remote xml-file with optional connection context. + * See PHP documentation for possible context options: https://www.php.net/manual/en/context.php + * + * 'metadata.sources' => [ + * [ + * 'type' => 'xml', + * 'url' => 'https://example.org/idp.example.org-idpMeta.xml', + * 'context' => [ + * 'ssl' => [ + * 'verify_peer' => true, + * ], + * ], + * ], + * ], + * * This example defines an mdq source. * 'metadata.sources' => [ * [ diff --git a/docs/index.md b/docs/index.md index b0d65634d6..fe3731f20f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -22,12 +22,14 @@ * [Identity Provider Advanced Topics](simplesamlphp-idp-more) * [Holder-of-Key profile](simplesamlphp-hok-idp) * Further topics + * [Testing your installation](simplesamlphp-testing-install) - Test out your new installation * [Maintenance and configuration](simplesamlphp-maintenance) - covers session handling, php configuration etc. * [Automated Metadata Management](/docs/contrib_modules/metarefresh/simplesamlphp-automated_metadata) * [Key rollover](./saml:keyrollover) * [Authentication Processing Filters](simplesamlphp-authproc) - attribute filtering, attribute mapping, consent, group generation etc. * [State Information Lost](simplesamlphp-nostate) - more about this common error message * [Advanced features](simplesamlphp-advancedfeatures) - covers bridging protocols, attribute filtering, etc. + * [Developer documentation](simplesamlphp-developer-information) - code overview and other docs for new and returning developers * SimpleSAMLphp Modules * [Documentation for specific modules](/docs/contributed_modules.html) * [Theming SimpleSAMLphp](simplesamlphp-theming) diff --git a/docs/simplesamlphp-advancedfeatures.md b/docs/simplesamlphp-advancedfeatures.md index e80a40b504..3b00fc13d9 100644 --- a/docs/simplesamlphp-advancedfeatures.md +++ b/docs/simplesamlphp-advancedfeatures.md @@ -57,7 +57,9 @@ The default is not to use a proxy ('proxy' = null) and no username and password ## Metadata signing -SimpleSAMLphp supports signing of the metadata it generates. Metadata signing is configured by four options: +SimpleSAMLphp supports signing of the metadata it generates. + +Metadata signing is configured by four options: - `metadata.sign.enable`: Whether metadata signing should be enabled or not. Set to `TRUE` to enable metadata signing. Defaults to `FALSE`. - `metadata.sign.privatekey`: Location of the private key data which should be used to sign the metadata. @@ -71,15 +73,80 @@ SimpleSAMLphp supports signing of the metadata it generates. Metadata signing is - `http://www.w3.org/2001/04/xmldsig-more#rsa-sha384` - `http://www.w3.org/2001/04/xmldsig-more#rsa-sha512` -These options can be configured globally in the `config/config.php`-file, or per SP/IdP by adding them to the hosted metadata for the SP/IdP. The configuration in the metadata for the SP/IdP takes precedence over the global configuration. - -There is also an additional fallback for the private key and the certificate. If `metadata.sign.privatekey` and `metadata.sign.certificate` isn't configured, SimpleSAMLphp will use the `privatekey`, `privatekey_pass` and `certificate` options in the metadata for the SP/IdP. +These options can be configured globally in the +`config/config.php`-file, or per SP/IdP by adding them to the hosted +metadata for the SP/IdP. The configuration in the metadata for the +SP/IdP takes precedence over the global configuration. Note that if +wish to set the metadata.sign.privatekey and metadata.sign.certificate +in a metadata file you need to also set metadata.sign.enable=true in +that metadata file. ## Session checking function Optional session checking function, called on session init and loading, defined with 'session.check_function' in config.php. -Example code for the function with GeoIP country check: +A simple example that will logout a specific user and also prevent +them from logging in. The code should be placed in in a file +`src/SimpleSAML/CustomCode.php` in the main repository. + +```php + 'session.check_function' => ['\SimpleSAML\CustomCode', 'checkSession'], +``` + +In the `src/SimpleSAML/CustomCode.php` file we check for a specific +`uid` who we know is a bad boy in a known auth source and stop them +from doing anything. + +```php +declare(strict_types=1); + +namespace SimpleSAML; + +class CustomCode +{ + /** + * The session.check_function can be used to throw away a session object + * during normal processing. If we throw it away by returning `false` then + * the user will be forced to create a new session. + * + * There are two call modes: during session init which can not fail and + * during testing. When testing returning false will cause the session to + * be discarded. + * + * @param \SimpleSAML\Session $session The session to approve/reject + * @param bool $init true if called during session init. + */ + public static function checkSession(\SimpleSAML\Session $session, bool $init = false): bool + { + $authority = "default-sp"; + + if ($init) { + // init can not fail + // return value is ignored + return true; + } + + $ad = $session->getAuthData($authority, "Attributes"); + if (empty($ad)) { + return true; + } + $uid = $ad["uid"]; + + if (in_array("badboy@localhost.localdomain", $uid)) { + // drop the session + return false; + } + + // normal functionality + return true; + } +}; + +``` + +A more complex example which performs a GeoIP country check on the +session to make sure the user is in the same country as they were when +they authenticated. ```php public static function checkSession(\SimpleSAML\Session $session, bool $init = false) diff --git a/docs/simplesamlphp-changelog.md b/docs/simplesamlphp-changelog.md index d229aa3e0f..4249e2f176 100644 --- a/docs/simplesamlphp-changelog.md +++ b/docs/simplesamlphp-changelog.md @@ -3,7 +3,396 @@ [TOC] This document lists the changes between versions of SimpleSAMLphp. -See the upgrade notes for specific information about upgrading. +See the [upgrade notes](https://simplesamlphp.org/docs/stable/simplesamlphp-upgrade-notes.html) for specific information about upgrading. + +## Version 2.5.0 + +Released TBD - November 2025 - as soon as Symfony 7.4 is released + +`authorize` + +* Add entityID based filtering (simplesamlphp/simplesamlphp-module-authorize#30) (v1.7.0) + +## Version 2.4.3 + +Released TBD + +* Update and improve Indonesian translations (#2462) +* Update and improve Thai translations (#2464) +* Update and improve Vietnamese translations (#2465) +* Fix various errors and warnings detected in VS Code (#2468) +* Remove information in simplesamlphp-advancedfeatures.md about + possible fallback from metadata.sign.privatekey to privatekey in IdP + and SP metadata files (#2470) +* Fix auth state AuthnInstant (#2478) +* Allow "Secure" cookie attribute via HTTP on localhost (#2483) +* Fix override over errorURL +* Introduced a new assets.salt to allow cache busting without leaking version information (#2490) +* If session.check_function is set and can not be called an error is raised (#2498) + +`authorize` + +* Remove reauthentication-button when reauthentication is disabled (simplesamlphp/simplesamlphp-module-authorize#24) (v1.6.2) + +## Version 2.4.2 + +Released 2025-06-04 + +* Fixed a bug where metadata-endpoints with isDefault set would not yield the expected metadata (#2439) +* Fixed a backwards incompatibility that would throw an exception on an invalid entityID. + The exception was downgraded to a warning in the log (#2448) +* Fixed a security-issue where cron-jobs could be executed using the default key, + even if a different one was set (#2453) + +`memcacheMonitor` + +* Fixed an issue that prevented the latest version of this module from being installed on SSP 2.4.x + +`negotiate` + +* Fixed an issue that prevented the latest version of this module from being installed on SSP 2.4.x + +## Version 2.4.1 + +Released 2025-05-14 + +* Reverted #2278 because of a regression in SLO when using SSP as a bridge (#2436) +* Fixed a dependency on a dev-version of the saml2-library + +## Version 2.4.0 + +Released 2025-04-16 + +* Added a new feature flag `encryption.optional` to allow unencrypted assertions if the SP does + not provide an encryption certificate (#2208) +* Make translations tool theme-aware (#2315) +* Fix deprecation of Twig spaceless-filter (#2229) +* Add possibility to provide connection context to XML storage-handler (#2332) +* Throw user-friendly exception with the proper HTTP statuscode for incorrect HTTP-method (#2234) +* Fixed build-workflow to only re-build the website once +* Bugfix: Use entityID from state to allow overriding the issuer (#2345) +* When only a single IdP is in scope, skip discovery screen (#2355) +* Downgrade simplesamlphp/composer-module-installer to 1.3.x to keep things working with older (OS-supplied) + versions of composer +* Skip test if xdebug.mode does not contain develop (#2419) +* Add a console-script to clear cache (#2410) +* PHP 8.4 Deprecation fixes (#2413) +* Warn if a module has an unexpected translation-domain in its po file. +* Add configuration that enables/disables twig template debug mode (#2406) +* Add support for IDP Discovery protocol (#2402) +* Destroy session cookies on logout (#2278) +* A new module to allow debugging SP logins (#2381) +* When only a single IdP is in scope, skip discovery screen (#2355) +* Add authproc-filter to manipulate the Assertion's Issuer (#2346) +* Many improvements to docs and translations +* Updated dependencies + +`adfs` + +* The ADFS-module has been disconnected from the SSP release. To continue to use it, the module has to be manually installed. +* The ADFS-module was completely rewritten and now uses our own XML-libraries for building, signing and encrypting XML (v3.0.0) + +`discopower` + +* Create discopower.po for italian locale (#22) +* Hide tab list when there's only one tab +* Fix for tags containing uppercase letters +* Updated jQuery + +`ldap` + +* Add SASL-support (v2.4.0). Note that this required a newer version of symfony/ldap than the one packaged (v2.4.3) + +`metarefresh` + +* Fixed parsing of large metadata files (v1.2.4) + +`saml` + +* Stricter regexp to verify SubjectID/PairwiseID: disallow trailing spaces. + +## Version 2.3.7 + +Released TBD + +* Fixed loading translations for themes where there is no explicit X-Domain set in the po file. + +## Version 2.3.6 + +Released 2025-02-17 + +* Fixed PHP 8.4 deprecation notices +* Fixed infinite recursion (#2367) +* Added a new feature flag `encryption.optional` to allow unencrypted assertions if the SP does + not provide an encryption certificate (#2208) +* Make translations tool theme-aware (#2315) +* Fixed build-workflow to only re-build the website once +* Bugfix: Use entityID from state to allow overriding the issuer (#2345) +* When only a single IdP is in scope, skip discovery screen (#2355) +* Fixed "Undefined array key" warning in RequestedAuthnContextSelector if no RAC is present in the request +* SimpleSAMLAuthToken cookie is now removed during an SLO + +`adfs` + +* PHP 8.4 support +* The ADFS-module has been disconnected from the SSP release. To continue to use it, the module has to be manually installed. +* The ADFS-module was completely rewritten and now uses our own XML-libraries for building, signing and encrypting XML (v3.0.0) + +`authcrypt` + +* PHP 8.4 support + +`discopower` + +* Hide tab list when there's only one tab (simplesamlphp/simplesamlphp-module-discopower#27) (v1.5.0) +* Bugfix: Use jquery-assets repo to work around symlink-issue (simplesamlphp/simplesamlphp-module-discopower#28) (v1.5.1) + +`ldap` + +* Add SASL-support (v2.4.0). Note that this required a newer version of symfony/ldap than the one packaged (v2.4.3) + +`saml` + +* Stricter regexp to verify SubjectID/PairwiseID: disallow trailing spaces. +* Feature: Add authproc-filter to be able to manipulate the Assertion's Issuer (#2346) + +`debugsp` + +* Added module to allow testing the SP you have in your installation without needing admin login + This is similar to the admin/test page but can more easily be used by an IdP who may not have admin + privileges on your site. + +## Version 2.3.0 + +Released 2024-08-20 + +* The SubjectID authproc-filter now has a new option `hashed`, which if set to true + will automatically hash the unique part of the ID. This will also automatically + make the unique part of the ID in compliance with the specs (#2006) +* Add microsecond support to the FileLoggingHandler (#2084) +* Session ID's are now hashed when stored in a database (#2106) +* Improved HTML 5 compatibility (#2162) +* Fix: preloaded resource not used (#2207) +* BC-break (unintentional): plain-text admin-password are no longer allowed (#2113) + +`authorize` + +* Feature: allow a user to reauthenticate with a different account (simplesamlphp/simplesamlphp-module-authorize#17) (v1.5.0) +* Feature: show user what account he's using when authorization fails (simplesamlphp/simplesamlphp-module-authorize#20) (v1.6.0) +* Fix: fix faulty translation (v1.6.1) + +`consent` + +* Update Luxembourgish translations (v1.4.0) + +`negotiate` + +* Add support for SPNEGO channel binding (v2.3.1) + +`sqlauth` + +* Add username_regex option - run regular expression over username before querying the + database (simplesamlphp/simplesamlphp-module-sqlauth#11) (v1.3.0) + +## Version 2.2.6 + +Released 2025-08-20 + +* Fix auth state AuthnInstant (#2478) + +`cron` + +* Fixed a security-issue where cron-jobs could be executed using the default key, + even if a different one was set (#2453) + +`metarefresh` + +* Fixed parsing of large metadata files (v1.2.4) + +## Version 2.2.5 + +Released 2025-03-11 + +* Fixed PHP 8.4 deprecation notices +* Fixed infinite recursion (#2367) +* Fixed "Undefined array key" warning in RequestedAuthnContextSelector if no RAC is present in the request +* Bumped vulnerable saml2-library to v4.17.0 + +## Version 2.2.4 + +Released 2024-12-02 + +`Security` + +* A security bug was patched in the `saml2-library` that allowed for XXE during the parsing + of SAML2-messages (CVE-2024-52596) + +`Other fixes` + +* Run ob_end_clean() on configuration file parsing error (#2219) +* Fix typo that caused the metadata file-upload to be hidden (#2271) + +`admin` + +* Fix metadata-viewer to output a valid PHP array + +## Version 2.2.3 + +Released 2024-08-20 + +* Added a missing use-statement that would cause a 'class not found' exception. +* Improved Luxembourgish (LB) translations (#2129, #2140) +* Fix regression introduced in v2.2.2 regarding autofilling usernames. +* Restore the possibility to set `trusted.url.domains` to null +* Improved documentation on cachedir-setting (#2153) +* Fix bug in post.twig (#2161) +* Fix MDQ cache file bugs (#2200) + +`adfs` + +* Fixed metadata download to become a proper xml-file +* Prevent metadata-download from ever being cached + +`authorize` + +* Fixed logout button (simplesamlphp/simplesamlphp-module-authorize#16) (v1.4.1) + +`ldap` + +* Fixed a bug that would throw an unhandled exception to the user if they would enter + a non-existing organization and `username_organization_method` is set to `allow` or `force` (v2.3.6). + +`metarefresh` + +* Fixed incorrect parsing of configuration (v1.2.2) + +`radius` + +* Fixed security bug known as Blast-Radius (CVE-2024-3596) (simplesamlphp/simplesamlphp-module-radius#10) (v2.0.2) + +## Version 2.2.2 + +:warning: IMPORTANT NOTE :warning: + +Due to a mistake, this bugfix-release can turn out to become a backwards-incompatibility for those who override the loginuserpass.twig in their custom theme. +Please update your theme to reflect the changes in [this commit](https://github.com/simplesamlphp/simplesamlphp/pull/2022/commits/691199e9b963a2861d731e6583555c7a8df39992) before updating. + +Released 2024-04-30 + +* Fix regression when setting the host-variable in `saml20-idp-hosted` (was #1922) +* Fix posting the form to the incorrect endpoint when using an authsource based on UserPassOrgBase (#2022) +* Fix RequestedAuthnContextSelector for case with multiple RACs in request +* Add xml opening-tag to SP-metadata for consistency with IdP-metadata (#2048) +* Fixed a PHP 8.3 compliance issue in the logout handler (#2047) +* Improve parsing of base64-encoded strings +* Autofill username when Entra ID hints it in the HTTP parameters + +`admin` + +* Set custom security header to properly display phpinfo-page +* Hide file-upload button for metadata-converter if uploads are disabled at PHP-level + +`exampleauth` + +* Fix controller for External-authsource + +`ldap` + +* Fix exception being thrown when password is empty + +`saml2 library` + +Fixed a bug where base64 encoded strings were not decoded using the `strict` flag, leading +to an incorrect error message. + +`sqlauth` + +* Add username_regex option (simplesamlphp/simplesamlphp-module-sqlauth#11) (v1.3.0) + +## Version 2.2.1 + +Released 2014-03-17 + +* Fix regression in bin/initMDSPdo.php (was #1892) +* Fix regression in translations, causing a fallback to English (#2009 + #2010) + +`sqlauth` + +* Add multi-query support (simplesamlphp/simplesamlphp-module-sqlauth#9) (v1.2.0) + +## Version 2.2.0 + +Released 2024-03-08 + +* Make error codes easier to extend (#1870) +* Updated eduPerson attributes in attribute maps (#1948) +* Add regex support for attribute names in AttributeLimit authproc filter (#1971) +* Reverted the .mo files change introduced in 2.1.x +* NOTE: 'core:StatisticsWithAttribute' filter was removed from SimpleSAMLphp, but is still + available from the [statistics](https://github.com/simplesamlphp/simplesamlphp-module-statistics)-module. + It was previously enabled in the default configuration file (config/config.php.dist), so + many lightly configured installations will have it enabled by default. Please check your + config/config.php (and anywhere else you have authprocs configured) that you've either + disabled "core:StatisticsWithAttribute" or migrated to "statistics:StatisticsWithAttribute" + before upgrading to SimpleSAMLphp 2.2.0. + +## Version 2.1.4 + +Released 2024-02-29 + +* Fix static call for non-static method in bin/importPdoMetadata.php (#1969) +* Validate AuthState before processing it (#1706) +* Fix possible incompatible dependency-set (#1981) + +## Version 2.1.3 + +Released 2024-02-12 + +* Fix backwards compatibility for mandatory cachedir-setting introduced in 2.1.2 + +Deprecations: + +* The core:StatisticsWithAttribute authproc-filter has been deprecated. It is now available + in the 'statistics' module (v1.2+) as 'statistics:StatisticsWithAttribute', while only the + 'core:StatisticsWithAttribute' filter will be removed from SimpleSAMLphp in a future release. + +## Version 2.1.2 + +Released 2024-02-05 + +* Restore possibility to use HTTP-Artifact on AuthnRequests (regression from 2.0.4) +* Fixed undefined variable exception when using MS SQL store (#1917 + #1918) +* Fix legacy-endpoints to not send responses twice +* Fix exception when using iframe-logout (#1936) +* Look for the schema files in the right place (#1929) +* Fixed file logging handler to not fail on the first write after file-creation (#1877) +* Fixed a warning in the RequestedAuthnContextSelector + +`adfs` + +* Fixed incorrect use of StreamedResponse (v2.1.3) + +`core` + +* Fixed a broken template for the WarnShortSSOInterval authproc-filter (#1920) +* Fixed the order of the routes so that the least specific error-controller is hit last (#1923) + +`ldap` + +* Restored 1.x functionality to be able to fetch operational attributes (v2.3.0) +* Fixed undesirable side-effect introduced in v2.3.0 (v2.3.1) +* Restore the ability to read attributes using a privileged account (v2.3.2) + +`saml` + +* Disable caching for metadata-endpoint when protect.metadata is true (#1926) + +`saml2 library` + +* Fix serialization for the NameID element +* Fix inheritance - There is no relation between BaseID and NameID + +NOTE: Clear your session store after updating, because old serialized sessions can no longer be unserialized ## Version 2.1.1 @@ -23,16 +412,23 @@ Released 2023-11-28 ## Version 2.1.0 -Released 2023-07-31 +Released 2023-10-30 * Functionality that before was provided by the sanitycheck-module is now implicit. The module has been archived and should no longer be used. (#1843) +* Add support for conditional authproc-filters (#1836) * Add support for TLS configuration for Redis Store (#1828) * Add support for Metadata Deployment Profile for errorURL (#1841) * Raised minimum Symfony version to 6.0 * Raise minimum PHP version to 8.0 * Specified the allowed HTTP methods for each route -* Our dependency on `composer/composer` was dropped in favour of a packaged phar-file. +* Our dependency on `composer/composer` was dropped in favour of a packaged phar-file (#1857) +* The `bin/pwgen.php` script was improved to used stronger encryption (#1849) +* Fixed a missing Accept-header for metadata queries (#1865) +* Changed the UNIQUE constraint for the SP LogoutStore database to PRIMARY KEY to + prevent confusing warnings in Drupal (#1862) +* Add Accept HTTP headers to MDQ queries (#1865) +* The custom error- and exception handlers were moved to their very own classes (#1858) ## Version 2.0.8 @@ -71,12 +467,34 @@ Released 2023-09-07 ## Version 2.0.5 +Released 2023-07-31 + +* Fixed link pointing to legacy endpoint (#1833) +* Updated German translations (#1814) +* Do not drop UIInfo from SSP array style metadata (#1808) +* Fixed incorrect return types +* Added removeEntry-method to MetadataStorageHandlerPdo (#1823) +* Fixed SLO with signed response (#1812) +* Fixed broken MetaDataStorageHandlerSerialize +* Usernames are now trimmed (#1829) * Never expose the cron-API if secret is not properly configured (#1831) * Fixed a bug where IdP-initiated SLO using the HTTP-POST binding wasn't properly dealt with +`admin` + +* Updated French translations (#1824) + +`cron` + +* Log a warning if secret is not properly configured (#1831) + +`metarefresh` + +* Added support for PDO storage (v0.11.0) + ## Version 2.0.4 -Released TBD +Released 2023-05-12 * The source that was selected by the SourceSelector is now available in the state. * The zone that was selected by the SourceIPSelector is now available in the state. @@ -86,6 +504,17 @@ Released TBD * Fixed a bug in MDQ metadata expiration * Resolved a possible object injection vulnerability in MDQ metadata cache * Restored the possibility to use HTTP-Artifact binding on AuthnRequests +* Removed unused private method MetaDataStorageSource::getDynamicHostedUrl (leftover from entityid generation) +* Bumped simplesamlphp-assets-base + +`ldap` + +* Fixed loading the options-array from configuration (v2.1.6) +* Properly escape user-input in ldap filters (v2.1.7) + +`saml2` + +* Fixed a static call to a non-static function that caused a broken artifact binding (v4.6.8) ## Version 2.0.3 diff --git a/docs/simplesamlphp-customauth.md b/docs/simplesamlphp-customauth.md index 3a8a78d89c..a6de7a20de 100644 --- a/docs/simplesamlphp-customauth.md +++ b/docs/simplesamlphp-customauth.md @@ -21,7 +21,6 @@ cd modules mkdir mymodule ``` -Since this is a custom module, it should always be enabled in the configuration. Now that we have our own module, we can move on to creating an authentication source. Creating a basic authentication source @@ -41,7 +40,7 @@ namespace SimpleSAML\Module\mymodule\Auth\Source; class MyAuth extends \SimpleSAML\Module\core\Auth\UserPassBase { - protected function login($username, $password) + protected function login(string $username, string $password): array { if ($username !== 'theusername' || $password !== 'thepassword') { throw new \SimpleSAML\Error\Error(\SimpleSAML\Error\ErrorCodes::WRONGUSERPASS); @@ -76,7 +75,7 @@ Configuring our authentication source ------------------------------------- Before we can test our authentication source, we must add an entry for it in `config/authsources.php`. -`config/authsources.php` contains an list of enabled authentication sources. +`config/authsources.php` contains a list of enabled authentication sources. The entry looks like this: @@ -106,6 +105,18 @@ The instance name is used to refer to this authentication source in other config The first element of the configuration of the authentication source must be `'mymodule:MyAuth'`. This tells SimpleSAMLphp to look for the `\SimpleSAML\Module\mymodule\Auth\Source\MyAuth` class. +We also need to enable our new module in `config/config.php`. +`config/config.php` contains a list of enabled modules. + +We want to add our new module to the list of other enabled modules. We can add it to the beginning of the list, so the enabled modules section looks something like this: + +```php +'module.enable' => [ + 'mymodule' => true, + /* Other enabled modules follow. */ +], +``` + Testing our authentication source --------------------------------- @@ -203,7 +214,7 @@ class MyAuth extends \SimpleSAML\Module\core\Auth\UserPassBase $this->password = $config['password']; } - protected function login($username, $password) + protected function login(string $username, string $password): array { if ($username !== $this->username || $password !== $this->password) { throw new \SimpleSAML\Error\Error(\SimpleSAML\Error\ErrorCodes::WRONGUSERPASS); @@ -324,7 +335,11 @@ class MyAuth extends \SimpleSAML\Module\core\Auth\UserPassBase */ private function checkPassword($passwordHash, $password) { - $passwordHash = base64_decode($passwordHash); + $passwordHash = base64_decode($passwordHash, true); + if (empty($passwordHash)) { + throw new \InvalidArgumentException("Password hash is empty or not a valid base64 encoded string."); + } + $digest = substr($passwordHash, 0, 20); $salt = substr($passwordHash, 20); @@ -332,11 +347,12 @@ class MyAuth extends \SimpleSAML\Module\core\Auth\UserPassBase return $digest === $checkDigest; } - protected function login($username, $password) + protected function login(string $username, string $password): array { /* Connect to the database. */ $db = new PDO($this->dsn, $this->username, $this->password, $this->options); $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + $db->setAttribute(PDO::ATTR_EMULATE_PREPARES, false); /* Ensure that we are operating with UTF-8 encoding. * This command is for MySQL. Other databases may need different commands. @@ -380,7 +396,7 @@ class MyAuth extends \SimpleSAML\Module\core\Auth\UserPassBase } ``` -And configured in `config/authsources.php`: +Configured in `config/authsources.php`: ```php 'myauthinstance' => [ @@ -390,3 +406,12 @@ And configured in `config/authsources.php`: 'password' => 'secret_db_password', ], ``` + +And enabled in `config/config.php`: + +```php +'module.enable' => [ + 'mymodule' => true, + /* Other enabled modules follow. */ +], +``` diff --git a/docs/simplesamlphp-developer-information.md b/docs/simplesamlphp-developer-information.md new file mode 100644 index 0000000000..31b22c344b --- /dev/null +++ b/docs/simplesamlphp-developer-information.md @@ -0,0 +1,168 @@ +# SimpleSAMLphp developer information + + + +[TOC] + +This document is intended to provide an overview of the code for developers. +It should be readable to new developers and developers who contribute as +time allows and may have forgotten some details over time. + +## Overview + +This is a living document and various sections and additions are being made +as my knowledge of the SSP code and environment expands. Hopefully this can help +others find their way around the code a bit quicker. + +The `master` branch is where active development of the next release is +taking place. If you would like to contribute an update to and +existing release please checkout the branch for that release, for +example to make a contribution to the v2.1.1 release you would +checkout the [simplesamlphp-2.1 +branch](https://github.com/simplesamlphp/simplesamlphp/tree/simplesamlphp-2.1). + +## Libraries that SimpleSAMLphp uses and planned changes + +Many dependencies are listed in the require clause of the composer.json such as Symfony, Twig, and simplesamlphp/saml2. + +As at early 2024 there is a plan to move from using robrichards/xmlseclibs to using the newly written [xml-security +library](https://github.com/simplesamlphp/xml-security). The integration of xml-security started in the v5 of the saml2 library. +The saml2 library is already a dependency of SimpleSAMLphp and is brought in with composer as a [dependency here.](https://github.com/simplesamlphp/simplesamlphp/blob/15019f97eb1b4041859582b8b6f39fe432b603af/composer.json#L66C21-L66C29). + +## Build process + +There are two main release targets for each release: slim and full. +This is done by the +[build-release.yml](https://github.com/simplesamlphp/simplesamlphp/blob/master/.github/workflows/build-release.yml) +script. The full version also contains some [simplesamlphp +modules](https://github.com/simplesamlphp/simplesamlphp/blob/master/.github/build/full.json). +The build will also include some files in the vendor directory in the +full build that are not in the slim build. + +If the SimpleSAMLphp code relies on other repositories on the [simplesamlphp](https://github.com/simplesamlphp) site then +they are brought in using composer as shown for example for the [saml2 library](https://github.com/simplesamlphp/simplesamlphp/blob/435ce92874a789101495504cd6c4da600fb01334/composer.json#L73). + +## Code checks + +The github actions perform some linting and checks on the php code. +The linting is done with super-linter and the php checks with phpcs. +You can run the phpcs checks locally by executing `phpcs` in the root +of the git repository. If you would like your simpler issues to be +solved for you execute `phpcbf` which will update the code to remedy +as many issues as it can. + +## CSS and common asset setup + +The common assets such as CSS in SimpleSAMLphp, for example, that +stored in public/assets/base/css/stylesheet.css comes from the +[simplesamlphp-assets-base](https://github.com/simplesamlphp/simplesamlphp-assets-base) +package. + +The dependencies are updated using github actions in +simplesamlphp-assets-base. Select a recent branch such as release-2.2 +and dig into the .github directory for details. + +## Following a simple login + +The `SimpleSAML\Auth\Simple` class takes the authentication_source +name and can be used to find a login URL with `getLoginURL()`. The +getLoginURL method takes the return URL as it's only parameter. The +URL returned from `getLoginURL()` will be a request to module.php and +include the return URL information. + +The module.php code `Module::process`. The `process` method uses +Symfony to dispatch the request. This may result in a call to +modules/core/src/Controller/Login.php in `Login::loginuserpass()`. The +code flows through `handleLogin()` which may call +`UserPassBase::handleLogin(authstateid, username, password)`. The +`handleLogin` method looks up the `$as = Auth\Source` and passes the +login credentials to the `$as->login( username, password )` method. + +For an SQL based login this would be in +modules/sqlauth/src/Auth/Source/SQL.php and the `SQL::login` method. +This `login` method either returns the user attributes on success or +throws an exception on login failure. + +## Documentation + +The core of the simplesamlphp.org website is taken from +[simplesamlphp.github.io](https://github.com/simplesamlphp/simplesamlphp.github.io). +The [docs subdirectory](https://simplesamlphp.org/docs/) is built from +the [docs +subdirectory](https://github.com/simplesamlphp/simplesamlphp/tree/master/docs) +of the main repository on github. + +### Documentation updates + +There are two main repositories for documentation. The website itself +comes from one place and everything that is under the "Documentation" +menu uses another process +. + +The website lives in + +That only has a "release" branch to commit to, which is the website as +it is shown. There you'd commit to change the pages on the website, +e.g. to the page /contrib/ + +The "docs" repo (as described in the readme of the repo) only contains +the scripts that generate the docs website. In order to improve the +content of the documentation themselves, you commit using the same branches used +for code contributions at +. + +You can address documentation updates to master +. +Though it makes sense to backport them to supported releases, so each +version under will show the +change. In other words, if a documentation change relates to 2.1.3 you +might like to make the pull request against the simplesamlphp-2.1 +branch and leave it to the team to also apply it to master and other +branches in the same way that code updates work. + +Some docs offered under the `docs` directory on the web site come from modules. +For example the [saml module](https://simplesamlphp.org/docs/2.3/saml/sp.html) +file comes from the file `./modules/saml/docs/sp.md` in the git repository. + +### Documentation linting + +The CI system has some linting for markdown files in place. This uses +`github-action-markdown-cli` to perform the work which itself uses +`markdownlint-cli`. You can install the latter with npm install and +then setup the rc file from github-action-markdown-cli from + +to run the linter locally. + +For example, with the markdownlintrc from above in a local file you +could use the following if you have not globally installed +markdownlint. The `--fix` option will have markdownlint fix simpler +issues for you so you can concentrate on the document and not the fine +details of the syntax formatting. + +```bash +npm install markdownlint-cli +cd ./node_modules/.bin +# copy the markdown lint file to markdownlintrc +./markdownlint -c markdownlintrc /tmp/simplesamlphp-developer-information.md +./markdownlint -c markdownlintrc --fix /tmp/simplesamlphp-developer-information.md +``` + +You will probably want to make a script or alias to the above command +and apply it before pushing documentation changes to github. + +## Making a release + +The release process is documented on the wiki +. + +## Dependbot + +The dependbot + runs on the master branch +and creates pull requests with recommended updates. + +The release branches are updated automatically as part of the release process. diff --git a/docs/simplesamlphp-idp.md b/docs/simplesamlphp-idp.md index 49bc82b95a..b5af78fca3 100644 --- a/docs/simplesamlphp-idp.md +++ b/docs/simplesamlphp-idp.md @@ -83,13 +83,15 @@ In this setup, this file should contain a single entry: $config = [ 'example-userpass' => [ 'exampleauth:UserPass', - 'student:studentpass' => [ - 'uid' => ['student'], - 'eduPersonAffiliation' => ['member', 'student'], - ], - 'employee:employeepass' => [ - 'uid' => ['employee'], - 'eduPersonAffiliation' => ['member', 'employee'], + 'users' => [ + 'student:studentpass' => [ + 'uid' => ['student'], + 'eduPersonAffiliation' => ['member', 'student'], + ], + 'employee:employeepass' => [ + 'uid' => ['employee'], + 'eduPersonAffiliation' => ['member', 'employee'], + ], ], ], ]; @@ -182,8 +184,18 @@ This is a minimal example of a `metadata/saml20-sp-remote.php` metadata file for 'https://sp.example.org/simplesaml/module.php/saml/sp/saml2-acs.php/default-sp', - 'SingleLogoutService' => 'https://sp.example.org/simplesaml/module.php/saml/sp/saml2-logout.php/default-sp', + 'AssertionConsumerService' => [ + [ + 'Location' => 'https://sp.example.org/simplesaml/module.php/saml/sp/saml2-acs.php/default-sp', + 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + ], + ], + 'SingleLogoutService' => [ + [ + 'Location' => 'https://sp.example.org/simplesaml/module.php/saml/sp/saml2-logout.php/default-sp', + 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + ], + ], ]; ``` diff --git a/docs/simplesamlphp-install-repo.md b/docs/simplesamlphp-install-repo.md index 6f3fccfc55..c2dd4752f3 100644 --- a/docs/simplesamlphp-install-repo.md +++ b/docs/simplesamlphp-install-repo.md @@ -6,7 +6,7 @@ These are some notes about running SimpleSAMLphp from the repository. Prerequisites ------------- -Review the [prerequisites](../simplesamlphp-install) from the main installation guide. +Review the [prerequisites](simplesamlphp-install) from the main installation guide. Installing from git ------------------- @@ -37,6 +37,28 @@ cp metadata/saml20-idp-remote.php.dist metadata/saml20-idp-remote.php cp metadata/saml20-sp-remote.php.dist metadata/saml20-sp-remote.php ``` +SimpleSAMLphp uses Symfony to maintain a cache which is by default stored +at `/var/cache/simplesamlphp`. You are encouraged to consider something +like the ACL commands from the [Symfony +website](https://symfony.com/doc/current/setup/file_permissions.html#1-using-acl-on-a-system-that-supports-setfacl-linux-bsd) +to enable access to this cache directory. + +The cache directory is stored at the location indicated by the +`cachedir` option in your config.php (defaulting to +`/var/cache/simplesamlphp`). This directory should exist and be +writable by the web server user and the user you use to run composer. + +Some commands which may be run from composer will want to clear this +cache which leads to a situation that the cache directory will need +permission to be updated by both the web server and also from your +regular user account that you use to checkout the git repository and +run composer. + +This is why it is recommended to use the solution provided on the +[Symfony +website](https://symfony.com/doc/current/setup/file_permissions.html#1-using-acl-on-a-system-that-supports-setfacl-linux-bsd) +linked above to enable access to this cache directory. + Install the external dependencies with Composer (you can refer to [getcomposer.org](https://getcomposer.org/) to get detailed instructions on how to install Composer itself): @@ -45,6 +67,12 @@ instructions on how to install Composer itself): php composer.phar install ``` +When installing on Windows, use: + +```bash +php composer.phar install --ignore-platform-req=ext-posix +``` + Upgrading --------- @@ -54,11 +82,21 @@ Go to the root directory of your SimpleSAMLphp installation: cd /var/simplesamlphp ``` -Ask git to update to the latest version: +Ask git to update to update the local repository information: ```bash git fetch origin -git pull origin master +``` + +If you installed as described above, you will be using a +[tag](https://github.com/simplesamlphp/simplesamlphp/tags) for a +specific release. You can see the current tag you are using and +checkout a newer one with the below commands: + +```bash +git branch +* (HEAD detached at v2.2.1) +git checkout v2.2.2 ``` Install or upgrade the external dependencies with Composer: @@ -66,3 +104,6 @@ Install or upgrade the external dependencies with Composer: ```bash php composer.phar install ``` + +When using Windows see the additional options for this composer +command shown at the end of the installation step above. diff --git a/docs/simplesamlphp-install.md b/docs/simplesamlphp-install.md index aeea63a4e4..64372c3b25 100644 --- a/docs/simplesamlphp-install.md +++ b/docs/simplesamlphp-install.md @@ -14,7 +14,7 @@ repository](simplesamlphp-install-repo). ## Prerequisites * A web server capable of executing PHP scripts. -* PHP version >= 8.0.0. +* PHP version >= 8.1.0. * Support for the following PHP extensions: * Always required: `date`, `dom`, `fileinfo`, `filter`, `hash`, `json`, `libxml`, `mbstring`, `openssl`, `pcre`, `session`, `simplexml`, `sodium`, `SPL` and `zlib` @@ -109,7 +109,7 @@ directory doesn't need to be inside the library's directory, making it easier to to set this environment variable is to set it in your web server's configuration. See the next section for more information. -## Configuring Apache {#section_4} +## Configuring Apache Examples below assume that SimpleSAMLphp is installed in the default location, `/var/simplesamlphp`. You may choose another location, but this requires a path update in a few files. See Appendix _Installing SimpleSAMLphp @@ -142,7 +142,7 @@ Note the `Alias` directive, which gives control to SimpleSAMLphp for all urls ma them are accessible through the `public` subdirectory of your SimpleSAMLphp installation. You can name the alias whatever you want, but the name must be specified in the `baseurlpath` configuration option in the `config.php` file of SimpleSAMLphp as described in -[the section called “SimpleSAMLphp configuration: config.php”](simplesamlphp-install#section_6). +[the section called “SimpleSAMLphp configuration: config.php”](simplesamlphp-install#configuration). Here is an example of how this configuration may look like in `config.php`: ```php @@ -162,7 +162,7 @@ directory too, use the `metadatadir` configuration option to specify the locatio This is just the basic configuration to get things working. For a checklist further completing your documentation, please see -[Maintenance and configuration: Apache](simplesamlphp-maintenance#section_5). +[Maintenance and configuration: Apache](simplesamlphp-maintenance). ## Configuring Nginx @@ -181,6 +181,7 @@ look like this: server { listen 443 ssl; server_name idp.example.com; + index index.php; ssl_certificate /etc/pki/tls/certs/idp.example.com.crt; ssl_certificate_key /etc/pki/tls/private/idp.example.com.key; @@ -204,7 +205,7 @@ server { } ``` -## SimpleSAMLphp configuration: config.php {#section_6} +## SimpleSAMLphp configuration: config.php There are a few steps that you should complete in the main configuration file, `config.php`, right away: @@ -221,19 +222,20 @@ There are a few steps that you should complete in the main configuration file, ` **ignores** the `X-Forwarded-*` set of headers that your proxy might be setting, so **do not rely on those**. * Set an administrator password. This is needed to access some of the pages in your SimpleSAMLphp installation web - interface. - - Hashed passwords can also be used here. See the [`authcrypt`](./authcrypt:authcrypt) documentation - for more information. + interface. Plain-text passwords are not allowed, but you can generate a safe password-hash using the `bin/pwgen.php` + script. ```php 'auth.adminpassword' => 'setnewpasswordhere', ``` -* Set a secret salt. This should be a random string. Some parts of the SimpleSAMLphp needs this salt to generate +* Set a secret salt and assets.salt. + These should be random strings. Some parts of the SimpleSAMLphp needs this salt to generate cryptographically secure hashes. SimpleSAMLphp will give an error if the salt is not changed from the default value. The command below can help you to generated a random string on (some) unix systems: + The assets.salt is separate to the main secretsalt because assets.salt is used on many assets with known values. + ```bash tr -c -d '0123456789abcdefghijklmnopqrstuvwxyz' /dev/null;echo ``` @@ -277,6 +279,13 @@ Here is an example of the configuration option: You can see [a list of Supported Timezones at php.net](http://php.net/manual/en/timezones.php). +You might consider setting showerrors to `false` to hide error +descriptions and backtraces from the browser. + +```php +'showerrors' => false, +``` + ## Configuring PHP ### Sending e-mails from PHP @@ -374,7 +383,7 @@ The SimpleSAMLphp package contains one folder named `simplesamlphp-x.y.z` (where this folder there are a lot of subfolders for library, metadata, configuration, etc. One of these folders is named `public`. **Only this folder should be exposed on the web**. The recommended configuration is to put the whole `simplesamlphp` folder outside the web root, and then link to the `public` folder by using the `Alias` directive, as -described in [the section called “Configuring Apache”](simplesamlphp-install#section_4). This is not the only +described in [the section called “Configuring Apache”](simplesamlphp-install#configuring-apache). This is not the only possible way, though. As an example, let's see how you can install SimpleSAMLphp in your home directory on a shared hosting server. @@ -428,13 +437,13 @@ Now, we need to make a few configuration changes. First, let's edit `~/public_ht Change the two lines from: ```php -require_once(dirname(_FILE__, 2) . '/lib/_autoload.php'); +require_once(dirname(_FILE__, 2) . '/src/_autoload.php'); ``` to something like: ```php -require_once(dirname(__FILE__, 3) . '/lib/_autoload.php'); +require_once(dirname(__FILE__, 3) . '/src/_autoload.php'); ``` **Warning**: note that this will make upgrading SimpleSAMLphp much more difficult, since you will need to move the diff --git a/docs/simplesamlphp-maintenance.md b/docs/simplesamlphp-maintenance.md index 5e77c49684..3259648a0f 100644 --- a/docs/simplesamlphp-maintenance.md +++ b/docs/simplesamlphp-maintenance.md @@ -48,7 +48,7 @@ SimpleSAMLphp as an Identity Provider, or any other applications using it are no settings by leaving these options unset or setting them to `null`. If you need to restore your session's application after calling SimpleSAMLphp, you can do it by calling the `cleanup()` method of the -`\SimpleSAML\Session` class, like described [here](simplesamlphp-sp#section_6). +`\SimpleSAML\Session` class, like described [here](simplesamlphp-sp#integrating-authentication-with-your-own-application). ### Configuring memcache @@ -198,7 +198,7 @@ Configure your master group by setting `store.redis.mastergroup` (`mymaster` by ## Metadata storage -Several metadata storage backends are available by default, including `flatfile`, `serialize`, `mdq` and +Several metadata storage backends are available by default, including `flatfile`, `directory`, `serialize`, `mdq` and [`pdo`](https://simplesamlphp.org/docs/stable/simplesamlphp-metadata-pdostoragehandler). Here you have an example configuration of different metadata sources in use at the same time: @@ -207,9 +207,18 @@ example configuration of different metadata sources in use at the same time: ['type' => 'flatfile'], ['type' => 'flatfile', 'directory' => 'metadata/metarefresh-kalmar'], ['type' => 'serialize', 'directory' => 'metadata/metarefresh-ukaccess'], + ['type' => 'directory'], + ['type' => 'directory', 'directory' => 'metadata/somewhere-else'], ], ``` +The directory type storage backend will look in subdirectories such as +saml20-idp-hosted.d and saml20-sp-remote.d in the given directory (or +the 'metadatadir' configuration option in 'config.php' by default). +All xml and php files found in those subdirectories will be loaded. It is +currently an error to have subdirectories inside the +saml20-sp-remote.d directories. + You may also implement your own metadata storage handler, in a very similar way to how you would implement your own session handler. Your class **must** extend the `\SimpleSAML\Metadata\MetaDataStorageSource` class and override the methods needed to change the backend used. This class **must** also be located in the @@ -238,7 +247,7 @@ alternative, you may log to flat files. ## Apache configuration -Basic Apache configuration is described in [SimpleSAMLphp Installation](simplesamlphp-install#section_6). +Basic Apache configuration is described in [SimpleSAMLphp Installation](simplesamlphp-install#configuring-apache). However, your IdP or SP is most likely a valuable website that you want to configure securely. Here are some checks. * Make sure you use HTTPS with a proper certificate. The best way is to not diff --git a/docs/simplesamlphp-metadata-endpoints.md b/docs/simplesamlphp-metadata-endpoints.md index 8e65dd50ce..6c685cf581 100644 --- a/docs/simplesamlphp-metadata-endpoints.md +++ b/docs/simplesamlphp-metadata-endpoints.md @@ -12,32 +12,9 @@ Endpoint | Indexed | Default binding `SingleLogoutService` | N | HTTP-Redirect `SingleSignOnService` | N | HTTP-Redirect -The various endpoints can be specified in three different ways: +Note that `isDefault` is only available for indexed endpoints. -* A single string. -* Array of strings. -* Array of arrays. - -A single string ---------------- - - 'AssertionConsumerService' => 'https://sp.example.org/ACS', - -This is the simplest endpoint format. -It can be used when there is only a single endpoint that uses the default binding. - -Array of strings ----------------- - - 'AssertionConsumerService' => [ - 'https://site1.example.org/ACS', - 'https://site2.example.org/ACS', - ], - -This endpoint format can be used to represent multiple endpoints, all of which use the default binding. - -Array of arrays ---------------- +The various endpoints can be specified in the following format: 'AssertionConsumerService' => [ [ diff --git a/docs/simplesamlphp-metadata-extensions-attributes.md b/docs/simplesamlphp-metadata-extensions-attributes.md index 4e75bbd3b3..82a9fa0599 100644 --- a/docs/simplesamlphp-metadata-extensions-attributes.md +++ b/docs/simplesamlphp-metadata-extensions-attributes.md @@ -111,7 +111,7 @@ entity category support for a service provider in `authsources.php`: ... 'EntityAttributes' => [ 'http://macedir.org/entity-category' => [ - '{urn:oasis:names:tc:SAML:2.0:attrname-format:uri}http://www.geant.net/uri/dataprotection-code-of-conduct/v1' + 'http://www.geant.net/uri/dataprotection-code-of-conduct/v1' ] ], 'UIInfo' =>[ diff --git a/docs/simplesamlphp-metadata-extensions-idpdisc.md b/docs/simplesamlphp-metadata-extensions-idpdisc.md new file mode 100644 index 0000000000..b2d1bee945 --- /dev/null +++ b/docs/simplesamlphp-metadata-extensions-idpdisc.md @@ -0,0 +1,47 @@ +SAML V2.0 Metadata Extensions for Identity Provider Discovery Service Protocol and Profile +============================= + +[TOC] + +This is a reference for the SimpleSAMLphp implementation of the [SAML +V2.0 Metadata Extensions for Identity Provider Discovery Service Protocol and Profile](http://docs.oasis-open.org/security/saml/Post2.0/sstc-saml-idp-discovery.pdf) +defined by OASIS. + +The metadata extension is available to SP usage of SimpleSAMLphp. The entries are placed inside the relevant +entry in `authsources.php`. + +An example: + + [ + 'saml:SP', + + 'DiscoveryResponse' => [ + [ + 'index' => 1, + 'Binding' => 'urn:oasis:names:tc:SAML:profiles:SSO:idp-discovery-protocol', + 'Location' => 'https://simplesamlphp.org/some/endpoint', + 'isDefault' => true, + ], + ], + /* ... */ + ], + ]; + +Generated XML Metadata Examples +---------------- + +The example given above will generate the following XML metadata: + + + + + + + + + + + ... diff --git a/docs/simplesamlphp-nostate.md b/docs/simplesamlphp-nostate.md index c7315ac3a0..882d0ac4f5 100644 --- a/docs/simplesamlphp-nostate.md +++ b/docs/simplesamlphp-nostate.md @@ -36,7 +36,7 @@ The domain name the IdP sends the response to is configured in the metadata of the IdP. This means that it may not match up with the domain name the user accessed. For example we may have the following scenario: -1. The user accesses `https://www.example.org/`. A session is created for the user, and the session cookie is set for the current domain (www.example.org). +1. The user accesses `https://www.example.org/`. A session is created for the user, and the session cookie is set for the current domain (`www.example.org`). 1. The user needs to be authenticated. We therefore save some information about the current status in the state array, create a SAML 2.0 authentication request, and send it to the IdP. 1. The user logs in on the IdP. The IdP then sends a response to the SP at `example.org`. However, the metadata for the SP that is registered at the IdP uses `https://example.org/` (without `www`) as the domain the response should be sent to. The authentication response is therefore sent to that domain. 1. The SP (now at `https://example.org/`) tries to load the state information associated with the authentication response it received. But, because the domain name has changed, we do not receive the session cookie of the user. We are therefore unable to find the session of the user. When we attempt to load the state information from the session we are therefore unable to find it. diff --git a/docs/simplesamlphp-reference-idp-hosted.md b/docs/simplesamlphp-reference-idp-hosted.md index 353d79aad8..c0873d6fc5 100644 --- a/docs/simplesamlphp-reference-idp-hosted.md +++ b/docs/simplesamlphp-reference-idp-hosted.md @@ -35,6 +35,11 @@ select the correct configuration. One entry in the metadata-list can have the host `__DEFAULT__`. This entry will be used when no other entry matches. +Directives that relate to signing of metadata start with the +`metadata.sign` prefix. The signing directives are documented in their +[own section](simplesamlphp-advancedfeatures.html#metadata-signing). +in the advanced features page. + ## Common options `auth` @@ -58,7 +63,7 @@ entry matches. 'ContactType' => 'support', 'EmailAddress' => 'support@example.org', 'GivenName' => 'John', - 'surName' => 'Doe', + 'SurName' => 'Doe', 'TelephoneNumber' => '+31(0)12345678', 'Company' => 'Example Inc.', ], @@ -142,10 +147,13 @@ The following SAML 2.0 options are available: `assertion.encryption` : Whether assertions sent from this IdP should be encrypted. The default - value is `FALSE`. + value is `FALSE`. When set to `TRUE` encryption will be enforced for all + remote SP's and an exception is thrown if encryption fails. : Note that this option can be set for each SP in the SP-remote metadata. +: Note that enforcement can be disabled by setting `encryption.optional` to `TRUE`. + `attributeencodings` : What encoding should be used for the different attributes. This is an array which maps attribute names to attribute encodings. There @@ -190,6 +198,10 @@ The following SAML 2.0 options are available: any value in the SP-remote metadata overrides the one configured in the IdP metadata. +`encryption.optional` +: Whether or not we may continue to send an unencrypted assertion if the SP has no encryption certificate. + The default value is `FALSE`. + `encryption.blacklisted-algorithms` : Blacklisted encryption algorithms. This is an array containing the algorithm identifiers. @@ -198,7 +210,7 @@ The following SAML 2.0 options are available: : The RSA encryption algorithm with PKCS#1 v1.5 padding is blacklisted by default for security reasons. Any assertions encrypted with this algorithm will therefore fail to decrypt. You can override this limitation by defining an empty array in this option (or blacklisting any other algorithms not including that one). However, it is strongly - discouraged to do so. For your own safety, please include the string 'http://www.w3.org/2001/04/xmlenc#rsa-1_5' if + discouraged to do so. For your own safety, please include the string `http://www.w3.org/2001/04/xmlenc#rsa-1_5` if you make use of this option. `https.certificate` diff --git a/docs/simplesamlphp-reference-idp-remote.md b/docs/simplesamlphp-reference-idp-remote.md index 4dc53b3e1f..7514013196 100644 --- a/docs/simplesamlphp-reference-idp-remote.md +++ b/docs/simplesamlphp-reference-idp-remote.md @@ -74,7 +74,7 @@ $metadata['entity-id-2'] = [ : The RSA encryption algorithm with PKCS#1 v1.5 padding is blacklisted by default for security reasons. Any assertions encrypted with this algorithm will therefore fail to decrypt. You can override this limitation by defining an empty array in this option (or blacklisting any other algorithms not including that one). However, it is strongly - discouraged to do so. For your own safety, please include the string 'http://www.w3.org/2001/04/xmlenc#rsa-1_5' if + discouraged to do so. For your own safety, please include the string `http://www.w3.org/2001/04/xmlenc#rsa-1_5` if you make use of this option. `hide.from.discovery` @@ -182,7 +182,7 @@ $metadata['entity-id-2'] = [ `SingleLogoutService` : Endpoint URL for logout requests and responses. You should obtain this from the IdP. Users who log out from your service is redirected to this URL with the LogoutRequest using HTTP-REDIRECT. -: The value of this option is specified in one of several [endpoint formats](./simplesamlphp-metadata-endpoints). +: The value of this option is specified in the format shown in [endpoint format](./simplesamlphp-metadata-endpoints). `SingleLogoutServiceResponse` : Endpoint URL for logout responses. Overrides the `SingleLogoutService`-option for responses. @@ -190,7 +190,7 @@ $metadata['entity-id-2'] = [ `SingleSignOnService` : Endpoint URL for sign on. You should obtain this from the IdP. For SAML 2.0, SimpleSAMLphp will use the HTTP-Redirect binding when contacting this endpoint. -: The value of this option is specified in one of several [endpoint formats](./simplesamlphp-metadata-endpoints). +: The value of this option is specified in the format shown in [endpoint format](./simplesamlphp-metadata-endpoints). `SPNameQualifier` : This corresponds to the SPNameQualifier in the SAML 2.0 specification. It allows to give subjects a SP specific namespace. This option is rarely used, so if you don't need it, leave it out. When left out, SimpleSAMLphp assumes the entityID of your SP as the SPNameQualifier. @@ -203,7 +203,7 @@ $metadata['entity-id-2'] = [ ### Decrypting assertions -It is possible to decrypt the assertions received from an IdP. Currently the only algorithm supported is `AES128_CBC` or `RIJNDAEL_128`. +It is possible to decrypt the assertions received from an IdP. The supported algorithms are listed in `sharedkey_algorithm` below. There are two modes of encryption supported by SimpleSAMLphp. One is symmetric encryption, in which case both the SP and the IdP needs to share a key. The other mode is the use of public key encryption. In that mode, the public key of the SP is extracted from the certificate of the SP. diff --git a/docs/simplesamlphp-reference-sp-remote.md b/docs/simplesamlphp-reference-sp-remote.md index f9a55e97fd..a2d3d44f1b 100644 --- a/docs/simplesamlphp-reference-sp-remote.md +++ b/docs/simplesamlphp-reference-sp-remote.md @@ -89,7 +89,7 @@ The following options can be set: This option is required - without it you will not be able to send responses back to the SP. -: The value of this option is specified in one of several [endpoint formats](./simplesamlphp-metadata-endpoints). +: The value of this option is specified the format detailed in [endpoint format](./simplesamlphp-metadata-endpoints). `attributeencodings` : What encoding should be used for the different attributes. This is @@ -153,7 +153,7 @@ The following options can be set: : The RSA encryption algorithm with PKCS#1 v1.5 padding is blacklisted by default for security reasons. Any assertions encrypted with this algorithm will therefore fail to decrypt. You can override this limitation by defining an empty array in this option (or blacklisting any other algorithms not including that one). However, it is strongly - discouraged to do so. For your own safety, please include the string 'http://www.w3.org/2001/04/xmlenc#rsa-1_5' if + discouraged to do so. For your own safety, please include the string `http://www.w3.org/2001/04/xmlenc#rsa-1_5` if you make use of this option. `ForceAuthn` @@ -166,10 +166,9 @@ The following options can be set: : The three most commonly used values are: -: - 1. `urn:oasis:names:tc:SAML:2.0:nameid-format:transient` - 2. `urn:oasis:names:tc:SAML:2.0:nameid-format:persistent` - 3. `urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress` +* `urn:oasis:names:tc:SAML:2.0:nameid-format:transient` +* `urn:oasis:names:tc:SAML:2.0:nameid-format:persistent` +* `urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress` : The `transient` format will generate a new unique ID every time the SP logs in. @@ -241,7 +240,7 @@ The following options can be set: this SP. If the option isn't specified, this SP will not be logged out automatically when a single logout operation is initialized. -: The value of this option is specified in one of several [endpoint formats](./simplesamlphp-metadata-endpoints). +: The value of this option is specified in the format detailed in [endpoint format](./simplesamlphp-metadata-endpoints). `SingleLogoutServiceResponse` : The URL logout responses to this SP should be sent. If this option @@ -276,14 +275,11 @@ The following options can be set: no effect) or a callable. When used as a callable, the static class method must accept the SP metadata config as a parameter and return a boolean. -### Encrypting assertions - -It is possible to encrypt the assertions sent to a SP. Currently the -only algorithm supported is `AES128_CBC` or `RIJNDAEL_128`. +## Encrypting assertions -There are two modes of encryption supported by SimpleSAMLphp. One is -symmetric encryption, in which case both the SP and the IdP needs to -share a key. The other mode is the use of public key encryption. In +It is possible to encrypt the assertions sent to a SP. There are two modes of encryption +supported by SimpleSAMLphp. One is symmetric encryption, in which case both the SP and +the IdP needs to share a key. The other mode is the use of public key encryption. In that mode, the public key of the SP is extracted from the certificate of the SP. @@ -310,7 +306,7 @@ of the SP. * `http://www.w3.org/2009/xmlenc11#aes192-gcm` * `http://www.w3.org/2009/xmlenc11#aes256-gcm` -### Fields for signing and validating messages +## Fields for signing and validating messages SimpleSAMLphp only signs authentication responses by default. Signing of logout requests and logout responses can be enabled by @@ -328,24 +324,24 @@ These options overrides the options set in `saml20-idp-hosted`. responses received from this SP should be validated. The default is `FALSE` -#### Example: Configuration for validating messages +### Example: Configuration for validating messages ```php 'redirect.validate' => true, 'certificate' => 'example.org.crt', ``` -### Fields for scoping +## Fields for scoping -Only relevant if you are a proxy/bridge and wants to limit the idps this -sp can use. +Only relevant if you are a proxy/bridge and want to limit the IdPs on your proxy +that this SP can use. `IDPList` : The list of scoped IdPs, i.e. the list of entityids for IdPs that are relevant for this SP. It will override any list set in the IdP's metadata. -#### Example: Configuration for scoping +### Example: Configuration for scoping ```php 'IDPList' => ['https://idp1.wayf.dk', 'https://idp2.wayf.dk'], diff --git a/docs/simplesamlphp-sp-api.md b/docs/simplesamlphp-sp-api.md index 76d7fe76fc..dcb31860bd 100644 --- a/docs/simplesamlphp-sp-api.md +++ b/docs/simplesamlphp-sp-api.md @@ -29,8 +29,14 @@ The constructor initializes a \SimpleSAML\Auth\Simple object. `Parameters`: -It has a single parameter, which is the ID of the authentication source that should be used. -This authentication source must exist in `config/authsources.php`. +It has a single parameter, which is the ID of the authentication +source that should be used. This authentication source must exist in +`config/authsources.php` and be of type saml:SP. Note that +authentication methods such as `ldap:Ldap` and `sqlauth` are defined +in `config/authsources.php` but those are only to be used by an IdP. +A normal setup would have your application talking to an SP, that SP +talking with an IdP, and that IdP using an authentication method to +authenticate the user. `Example`: diff --git a/docs/simplesamlphp-sp.md b/docs/simplesamlphp-sp.md index 05274ed4d6..1e9f0a1958 100644 --- a/docs/simplesamlphp-sp.md +++ b/docs/simplesamlphp-sp.md @@ -90,9 +90,20 @@ metadata file: ```php 'https://example.org/simplesaml/module.php/saml/idp/singleSignOnService', - 'SingleLogoutService' => 'https://example.org/simplesaml/module.php/saml/idp/singleLogout', - 'certificate' => 'example.pem', + 'SingleSignOnService' => [ + [ + 'Location' => 'https://example.org/simplesaml/module.php/saml/idp/singleSignOnService', + 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + ], + ], + 'SingleLogoutService' => [ + [ + 'Location' => 'https://example.org/simplesaml/module.php/saml/idp/singleLogout', + 'ResponseLocation' => 'https://sp.example.org/LogoutResponse', + 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + ], + ], + 'certificate' => 'example.pem', ]; ``` diff --git a/docs/simplesamlphp-testing-install.md b/docs/simplesamlphp-testing-install.md new file mode 100644 index 0000000000..afa893b848 --- /dev/null +++ b/docs/simplesamlphp-testing-install.md @@ -0,0 +1,67 @@ +# SimpleSAMLphp Testing installation + +[TOC] + +## Testing a SimpleSAMLphp installation + +The admin interface available as `/module.php/admin/` on your site +allows for testing logins to the authentication sources available on +your installation. + +You can also see configuration including which modules are enabled and +what extensions are available in your PHP environment. + +To see the admin page you should set a password in the adminpassword +configuration directive (the config.php.dist has details of this +process). Also please check that the admin module must be enabled. + +The relevant parts of config.php: + +```php + 'auth.adminpassword' => '123', + ... + 'module.enable' => [ + 'admin' => true, + ... +``` + +## Testing various user profiles + +The ProfileAuth authentication source can be used to test login as +various users by simply clicking on the user. Note that this testing +method allows for login without password so should be disabled in any +non testing environment. + +The ProfileAuth functionality can be accessed through the path +`/module.php/admin/test` page using for example a `profileauth` +authentication source with the following `config.php` fragment. + +The module must be enabled (and admin to get to it easily) and a small +configuration to show what users you wish to "click to authenticate" +as. If there is only a single item in the users array then you will +not have to click and will be authenticated as that user when you +visit the authentication source. + +```php + 'module.enable' => [ + 'admin' => true, + 'exampleauth' => true, + ... + ], + + 'profileauth' => [ + 'exampleauth:UserClick', + 'users' => [ + [ + 'uid' => ['student'], + 'displayName' => ['Student'], + 'eduPersonAffiliation' => ['student', 'member'], + ], + [ + 'uid' => ['employee'], + 'displayName' => ['Employee'], + 'eduPersonAffiliation' => ['employee', 'member'], + ], + ], + ], +``` diff --git a/docs/simplesamlphp-upgrade-notes-2.0.md b/docs/simplesamlphp-upgrade-notes-2.0.md index 1a8009940b..8356ffc274 100644 --- a/docs/simplesamlphp-upgrade-notes-2.0.md +++ b/docs/simplesamlphp-upgrade-notes-2.0.md @@ -21,6 +21,14 @@ composer require simplesamlphp/simplesamlphp-module-ldap --update-no-dev ## Functional changes +- EntityIDs are no longer auto-generated. Make sure to set something sensible in the array-keys in + `metadata/saml20-idp-hosted.php` and for any saml:SP in `config/authsources.php` (or to the existing entityIDs when + upgrading an existing installation). + If you are using a database to store metadata, make sure to replace any `__DYNAMIC:__` entityID's with + a real value manually. Dynamic records are no longer loaded from the database. See the "Upgrading and EntityIDs" + section at the end of the document for more information. +- EntityIDs are now checked for validity in accordance to SAML 2.0 Core specification, section 8.3.6 Entity Identifier: + "... The syntax of such an identifier is a URI of not more than 1024 characters in length." - Modules must be enabled through the `module.enable` option in `config.php`. Modules can no longer be enabled by having a file named `enable` or `default-enable` in the module's root directory. - The base URL of the SimpleSAMLphp installation no longer provides an admin menu. Instead this is now at the location @@ -38,11 +46,6 @@ composer require simplesamlphp/simplesamlphp-module-ldap --update-no-dev - All support for the Shibboleth 1.3 / SAML 1.1 protocol has been removed. - Sessions are no longer backwards compatible with previous versions. Make sure to clear your session cache during the upgrade process. How to do this depends on your session backend. -- EntityIDs are no longer auto-generated. Make sure to set something sensible in the array-keys in - `metadata/saml20-idp-hosted.php` and for any saml:SP in `config/authsources.php` (or to the existing entityIDs when - upgrading an existing installation). - If you are using a database to store metadata, make sure to replace any `__DYNAMIC:__` entityID's with - a real value manually. Dynamic records are no longer loaded from the database. ## Configuration changes @@ -144,3 +147,50 @@ $x = \SimpleSAML\Utils\Arrays::arrayize($someVar) [1]: https://github.com/simplesamlphp/simplesamlphp/wiki/Migrating-translations-(pre-migration) [2]: https://github.com/simplesamlphp/simplesamlphp/wiki/Twig:-Migrating-templates + +## Upgrading and EntityIDs + +If you still have your 1.x installation available, the entityID you +are using for your SP and IdP should be available in +module.php/core/frontpage_federation.php location on your +SimpleSAMLphp server. + +For a service provider, if it was set as auto-generated in 1.19, it +will likely have the form of (). + +The EntityID is set in two locations, as the property 'entityID' for +an SP and as the index in the $metadata array for an IdP. Examples of +both are shown below. + +For the SP you can set the EntityID as shown in the below fragment of +authsources.php. In all of the below configuration fragments the +EntityID is set to (). + +```php +... + 'default-sp' => [ + 'saml:SP', + // The entity ID of this SP. + 'entityID' => 'https://example.com/the-service/', +... +``` + +One suggestion for forming an EntityID is to use the below scheme. + +```php +$entityid_sp = 'https://' + . $_SERVER['HTTP_HOST'] + . '/simplesaml/module.php/saml/sp/metadata.php/default-sp'; +``` + +For an IdP you might like to look at saml20-idp-hosted.php where the +EntityID is used as the key in the metadata array. + +```php +... +$metadata['https://example.com/the-service/'] = [ +... +``` + +If you use SimpleSAMLphp as an SP, the IdP you are using will have +your correct entityID configured. diff --git a/docs/simplesamlphp-upgrade-notes-2.2.md b/docs/simplesamlphp-upgrade-notes-2.2.md index f47fc4ea23..acac55db07 100644 --- a/docs/simplesamlphp-upgrade-notes-2.2.md +++ b/docs/simplesamlphp-upgrade-notes-2.2.md @@ -3,6 +3,11 @@ SimpleSAMLphp 2.2 is a minor new release which introduces a few new features. The following changes are relevant for installers and/or developers. +## Software requirements + +- The minimum PHP version required is now PHP 8.1. +- Symfony was upgraded to 6.4 (LTS). + ## Deprecations The following methods were marked `deprecated` and will be removed in a next major release. @@ -17,3 +22,8 @@ The following methods were marked `deprecated` and will be removed in a next maj - SimpleSAML\Error\Errorcodes::getErrorCodeTitle - Use getTitle instead - SimpleSAML\Error\Errorcodes::getErrorCodeDescription - Use getDescription instead - SimpleSAML\Error\Errorcodes::getErrorCodeMessage - Use getMessage instead + +The `tempdir` configuration setting was marked `deprecated`. Use `cachedir` instead. + +The core:StatisticsWithAttribute authproc-filter was removed from SimpleSAMLphp. +It is now available in the statistics-module from v2.1 and up. diff --git a/docs/simplesamlphp-upgrade-notes-2.3.md b/docs/simplesamlphp-upgrade-notes-2.3.md new file mode 100644 index 0000000000..fcf6068926 --- /dev/null +++ b/docs/simplesamlphp-upgrade-notes-2.3.md @@ -0,0 +1,38 @@ +# Upgrade notes for SimpleSAMLphp 2.3 + +SimpleSAMLphp 2.3 is a minor new release which introduces a few new features. +The following changes are relevant for installers and/or developers. + +- Session ID's are now hashed when stored in a database. This means all old sessions are effectively + invalidated by this upgrade. We recommend clearing your session store as part of the upgrade-routine. + +## Deprecations + +The following classes were marked `deprecated` and will be removed in a next major release. + +- SimpleSAML\Utils\Net + +The following methods were marked `deprecated` and will be removed in a next major release. + +- SimpleSAML\Utils\Crypto::aesDecrypt - use the xml-security library instead - See commit `52ef3a78d1faf22e040efd5d0fd1f234da2458eb` for an example. +- SimpleSAML\Utils\Crypto::aesEncrypt - use the xml-security library instead - See commit `52ef3a78d1faf22e040efd5d0fd1f234da2458eb` for an example. +- SimpleSAML\Utils\Crypto::pwHash - Use \Symfony\Component\PasswordHasher\NativePasswordHasher::hash instead +- SimpleSAML\Utils\Crypto::pwValid - Use \Symfony\Component\PasswordHasher\NativePasswordHasher::verify instead +- SimpleSAML\Utils\Crypto::secureCompare - Use hash_equals() instead +- SimpleSAML\Utils\Net::ipCIDRcheck - Use \Symfony\Component\HttpFoundation\IpUtils::checkIp instead + +The following properties were marked `deprecated` and will be removed in a next major release. + +- SimpleSAML\Locale\Language::$language_names - Use \Symfony\Component\Intl\Languages::getNames() instead + +The use of plain-text admin-passwords has been deprecated. Generate a secure hash using the `bin/pwgen.php` script instead. + +## BC break + +- The language codes `pt-br` and `zh-tw` have been renamed to `pt_BR` and `zh_TW`. + Please update your configuration to match the new names. + +- Endpoints in metadata (e.g. "SingleSignOnLocation" and "AssertionCosumerService") can no longer be simple strings and are now only accepted in array-style. The old string-style was deprecated for 9 yrs + already and was broken anyway. See [endpoints] for the current format. + +[endpoints]: https://simplesamlphp.org/docs/stable/simplesamlphp-metadata-endpoints.html diff --git a/docs/simplesamlphp-upgrade-notes-2.4.md b/docs/simplesamlphp-upgrade-notes-2.4.md new file mode 100644 index 0000000000..9733851827 --- /dev/null +++ b/docs/simplesamlphp-upgrade-notes-2.4.md @@ -0,0 +1,11 @@ +# Upgrade notes for SimpleSAMLphp 2.4 + +SimpleSAMLphp 2.4 is a minor new release which introduces a few new features. +The following changes are relevant for installers and/or developers. + +- Where a configuration has multiple hosted IdPs, metadata is now associated with the entityId. + This means that endpoints such as SingleSignOnService values will be taken from the + entityId block in saml20-idp-hosted.php. See () for details. + +- The `statistics` module has been removed from the release, because the Charts API it depends on has been discontinued + by Google, rendering the module useless. diff --git a/docs/simplesamlphp-upgrade-notes-2.5.md b/docs/simplesamlphp-upgrade-notes-2.5.md new file mode 100644 index 0000000000..5fa61207d3 --- /dev/null +++ b/docs/simplesamlphp-upgrade-notes-2.5.md @@ -0,0 +1,9 @@ +# Upgrade notes for SimpleSAMLphp 2.5 + +SimpleSAMLphp 2.5 is a minor new release which introduces a few new features. +The following changes are relevant for installers and/or developers. + +## Software requirements + +- The minimum PHP version required is now PHP 8.2. +- Symfony was upgraded to 7.4 (LTS). diff --git a/docs/simplesamlphp-upgrade-notes.md b/docs/simplesamlphp-upgrade-notes.md index 1ec56e70df..b5959b9d50 100644 --- a/docs/simplesamlphp-upgrade-notes.md +++ b/docs/simplesamlphp-upgrade-notes.md @@ -3,6 +3,9 @@ See the following pages for important information for users upgrading from older versions of SimpleSAMLphp: +* [Upgrade notes for version 2.4](simplesamlphp-upgrade-notes-2.4) +* [Upgrade notes for version 2.3](simplesamlphp-upgrade-notes-2.3) +* [Upgrade notes for version 2.2](simplesamlphp-upgrade-notes-2.2) * [Upgrade notes for version 2.1](simplesamlphp-upgrade-notes-2.1) * [Upgrade notes for version 2.0](simplesamlphp-upgrade-notes-2.0) * [Upgrade notes for version 1.19](simplesamlphp-upgrade-notes-1.19) diff --git a/locales/af/LC_MESSAGES/messages.po b/locales/af/LC_MESSAGES/messages.po index d70179e26e..d98e250ebb 100644 --- a/locales/af/LC_MESSAGES/messages.po +++ b/locales/af/LC_MESSAGES/messages.po @@ -1,570 +1,675 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Geen SAML versoek gevind nie" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Geen SAML boodskap gevind nie" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "'n Diens vereis dat jy jouself identifiseer. Voer jou gebruikersnaam en wagwoord in die onderstaande vorm in." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Affiliasie" + +msgid "Affiliation at home organization" +msgstr "Affiliasie by Tuis organisasie" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Daar was 'n fout met die skepping van die SAML versoek." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Daar was 'n probleem tydens die verwerking van die Afmelding Versoek" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "'n Onverwagte foutmelding is aangetoon" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Verifikasie gestop" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Fout in verifikasie bron %AUTHSOURCE%. Die rede was %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Verifikasie het misluk: Jou webblaaier het 'n ongeldige of korrupte sertifikaat gestuur" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Verifikasie het misluk: die sertifikaat wat jou webblaaier gestuur het is onbekend" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Verifikasie het misluk: Jou webblaaier het geen sertifikaat gestuur nie" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Fout in verifikasie bron" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Foutiewe versoek ontvang" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Toegangsfout by die ontdekkings diens" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS Fout" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Change your home organization" +msgstr "Verander jou tuisorganisasie" + +msgid "Choose home organization" +msgstr "Kies tuisorganisasie" + +msgid "Choose your home organization" +msgstr "Kies jou tuisorganisasie" + +msgid "Common name" +msgstr "Algemene naam" + +msgid "Completed" +msgstr "Voltooid" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Instellings fout" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Fout met skepping van nuwe versoek" +msgid "Contact information:" +msgstr "Kontak detail:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Toegangsfout by die ontdekkings diens" +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Kon nie 'n verifikasie versoek skep nie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Ongeldige sertifikaat" +msgid "Date of birth" +msgstr "Geboorte datum" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP Fout" +msgid "Debug information" +msgstr "Ontleed informasie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Afmelding informasie verlore" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Fout met die verwerking van die Afmeldings Versoek" +msgid "Display name" +msgstr "Vertoon naam" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Fout met die laai van die metadata" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Kenmerkende naam (DN) van die person se tuisorganisasie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadata nie gevind nie" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Kenmerkende naam (DN) van die persoon se primêre organisatoriese afdeling" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Geen toegang" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Kenmerkende naam (DN) van die persoon se organisatoriese afdeling" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Geen sertifikaat" +msgid "Do you want to logout from all the services above?" +msgstr "Wil jy van alle bogenoemde dienste afmeld?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Geen aflos staat('RelayState')" +msgid "Domain component (DC)" +msgstr "Domein komponent (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Toestandsinformasie verlore" +msgid "E-mail address:" +msgstr "Epos adres:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Bladsy nie gevind nie" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Die gegewe gebruikersnaam bestaan nie, of die wagwoord wat jy verskaf het is verkeerd. Bevestig die gebruikersnaam en probeer weer." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Wagwoord nie opgestel nie" +msgid "Enter your username and password" +msgstr "Voer jou gebruikersnaam en wagwoord in" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Fout in die Identiteits Verskaffer(IdP) versoek" +msgid "Entitlement regarding the service" +msgstr "Reg mbt. die diens" + +msgid "Error" +msgstr "Fout" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Fout met skepping van nuwe versoek" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Fout met die laai van die metadata" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Fout in Diens Verskaffer versoek proses" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Fout in die Identiteits Verskaffer(IdP) versoek" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Fout met die verwerking van die Afmeldings Versoek" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Foutmelding ontvang vanaf die Identiteits Verskaffer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Onverwagte foutmelding" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Onbekende sertifikaat" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Verifikasie gestop" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Inkorrekte gebruikersnaam of wagwoord" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Jy het aansoek gedoen vir toegang na die Assertion Consumer Service koppelvlak, maar geen SAML Verifikasie Versoek is saam gestuur nie." - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Fout in verifikasie bron %AUTHSOURCE%. Die rede was %REASON%" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Daar is 'n fout in die versoek na die bladsy. Die rede is: %REASON%" +msgid "Error report sent" +msgstr "Foutmeldingsverslag gestuur" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 msgid "Error when communicating with the CAS server." msgstr "Fout tydens kommunikasie met die CAS bediener." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp is nie korrek ingestel nie" +msgid "Explain what you did when this error occurred..." +msgstr "Verduidelik wat jy gedoen het toe jy die probleem ervaar..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Daar was 'n fout met die skepping van die SAML versoek." +msgid "Fax number" +msgstr "Faksnommer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Die gestuurde parameters na die ontdekkings diens was not volgens die korrekte spesifikasies nie." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Daar was 'n fout tydens die verifikasie skepping deur die Identiteits Verskaffer." +msgid "Given name" +msgstr "Voornaam" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Verifikasie het misluk: Jou webblaaier het 'n ongeldige of korrupte sertifikaat gestuur" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Gaan terug na die SimpleSAMLphp installasie bladsy" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP is die gebruikers databasis en waneer jy probeer inteken moet ons die LDAP databasis kontak. Daar was 'n fout toe ons die slag probeer het." +msgid "Group membership" +msgstr "Groeplidmaatskap" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Die inligting vir die huidige uiteken sessie is verlore. Jy moet terugkeer na die diens waarvan jy probeer afmeld het en probeer om weer af te meld. Dié fout kan voorkom weens verstreke afmelding inligting. Die afmelding inligting word gestoor vir 'n beperkte tydperk - gewoonlik 'n paar ure. Dit is langer as wat 'n normale afmelding sessie moet vat, so die fout mag 'n indikasie wees van 'n probleem met die stellings. Kontak jou diens verskaffer sou die probleem voortduur." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Daar was 'n probleem tydens die verwerking van die Afmelding Versoek" +msgid "Help desk homepage" +msgstr "Hulplyn-tuisblad" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Daar is fout met jou SimplSAMLphp installasie. Indien jy die administrateur is van dié diens moet jy verseker dat jou metadata konfigurasie korrek is." +msgid "Help! I don't remember my password." +msgstr "Hulp! Ek het nie my wagwoord onthou nie." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Kan geen metadata vind vir %ENTITYID%" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Die eindpunt is nie beskikbaar nie. Gaan die staat opsies in jou opset van SimpleSAMLphp na." +msgid "Home organization domain name" +msgstr "Tuis Organisasie domein naam" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Verifikasie het misluk: Jou webblaaier het geen sertifikaat gestuur nie" +msgid "Home postal address" +msgstr "Tuis posadres" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Die inisieerder van hierdie versoek het nie 'n aflos staat('RelayState') parameter wat aandui waarheen om volgende te gaan nie." - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Toestandsinformasie verlore en daar is geen manier om die versoek weer te stuur nie" +msgid "Home telephone" +msgstr "Tuistelefoon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Die bladsy bestaan nie. Die URL was: %URL%" +msgid "How to get help" +msgstr "Hoe om hulp te verkry" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Die gegewe bladsy is nie gevind nie. Die rede was: %REASON%. Die URL was: %URL%" +msgid "Identity assurance profile" +msgstr "Identiteitsversekerings profiel" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Die wagwoord in die konfigurasie (auth.adminpassword) is nie aangepas nie. Redigeer asb die konfigurasie leër." +msgid "Identity number assigned by public authorities" +msgstr "Identiteitsnommer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Jy het nie 'n geldige sertifikaat gestuur nie." +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Waneer jy die fout rapporteer, verskaf asb. ook die 'tracking'/verwysings nommer wat dit moontlik maak vir die sisteem administrateur om jou sessie in die logs op te spoor:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Die antwoord vanaf die Indentiteits Verskaffer is nie aanvaar nie." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Inkorrekte gebruikersnaam of wagwoord" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Die Identiteits Verskaffer het 'n Verifikasie Versoek ontvang vanaf 'n Diens Verskaffer maar 'n fout het voorgekom tydens die verwerking van die versoek." +msgid "Incorrect username or password." +msgstr "Verkeerde gebruikersnaam of wagwoord." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Die Identiteits Verskaffer reageer met 'n fout. (Die status kode in die SAML reaksie was onsuksesvol)" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Jy het toegang verkry na die SingleLogoutService koppelvlak('interface'), maar het geen SAML LogoutRequest of LogoutResponse gestuur nie." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Ongeldige sertifikaat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "'n Onverwagte foutmelding is aangetoon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Verifikasie het misluk: die sertifikaat wat jou webblaaier gestuur het is onbekend" +msgid "JPEG Photo" +msgstr "JPEG Foto" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Die verifikasie is gestop deur die gebruiker" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP Fout" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Die gegewe gebruikersnaam bestaan nie, of die wagwoord wat jy verskaf het is verkeerd. Bevestig die gebruikersnaam en probeer weer." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP is die gebruikers databasis en waneer jy probeer inteken moet ons die LDAP databasis kontak. Daar was 'n fout toe ons die slag probeer het." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Kies asb. jou identiteits verskaffer waar jy wil verifieer:" +msgid "Labeled URI" +msgstr "URI" -msgid "Remember my choice" -msgstr "Onthou my keuse" +msgid "Language" +msgstr "" -msgid "Select" -msgstr "Kies" +msgid "Legal name" +msgstr "Wettige naam" -msgid "Select your identity provider" -msgstr "Kies jou identiteits verskaffer" +msgid "Local identity number" +msgstr "Identiteitsnommer" -msgid "Yes, continue" -msgstr "Ja, voortgaan" +msgid "Locality" +msgstr "Ligging" -msgid "Debug information" -msgstr "Ontleed informasie" +msgid "Logged out" +msgstr "Afgemeld" -msgid "E-mail address:" -msgstr "Epos adres:" +msgid "Logging out of the following services:" +msgstr "Afmelding van die volgende dienste:" -msgid "Explain what you did when this error occurred..." -msgstr "Verduidelik wat jy gedoen het toe jy die probleem ervaar..." +msgid "Logging out..." +msgstr "Besig om af te meld?" -msgid "How to get help" -msgstr "Hoe om hulp te verkry" +msgid "Login" +msgstr "Meld aan" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Waneer jy die fout rapporteer, verskaf asb. ook die 'tracking'/verwysings nommer wat dit moontlik maak vir die sisteem administrateur om jou sessie in die logs op te spoor:" +msgid "Login at" +msgstr "Meld aan by" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Voeg opsioneel jou epos adres in vir die administrateurs om jou te kontak vir meer inligting m.b.t jou probleem:" +msgid "Logout" +msgstr "" -msgid "Report errors" -msgstr "Rapporteer foute" +msgid "Logout failed" +msgstr "Afmelding misluk" -msgid "Send error report" -msgstr "Stuur die fout verslag" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Afmelding informasie verlore" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Die onderstaande informasie mag van hulp wees vir die stelsel administrateur / hulplyn." +msgid "Mail" +msgstr "E-pos" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Die fout is moontlik te danke aan onverwagte gedrag of weens inkorrekte instellings in SimpleSAMLphp. Kontak die administrateur in beheer van die aanmeld diens en stuur die bostaande fout boodskap aan." +msgid "Manager" +msgstr "Bestuurder" -msgid "[Preferred choice]" -msgstr "[Verkies]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadata nie gevind nie" -msgid "Person's principal name at home organization" -msgstr "Persoonlike ID by tuis organisasie" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" msgid "Mobile" msgstr "Selfoon" -msgid "Display name" -msgstr "Vertoon naam" - -msgid "Home telephone" -msgstr "Tuistelefoon" - -msgid "Service Provider" -msgstr "Diens Verskaffer" +msgid "Next" +msgstr "Volgende" -msgid "Incorrect username or password." -msgstr "Verkeerde gebruikersnaam of wagwoord." +msgid "Nickname" +msgstr "Bynaam" -msgid "Locality" -msgstr "Ligging" +msgid "No" +msgstr "Nee" -msgid "Organizational number" -msgstr "Organisasie nommer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Geen aflos staat('RelayState')" -msgid "Post office box" -msgstr "Posbus" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Geen SAML boodskap gevind nie" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "'n Diens vereis dat jy jouself identifiseer. Voer jou gebruikersnaam en wagwoord in die onderstaande vorm in." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Error" -msgstr "Fout" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Geen SAML versoek gevind nie" -msgid "Next" -msgstr "Volgende" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Geen toegang" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Kenmerkende naam (DN) van die persoon se organisatoriese afdeling" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Geen sertifikaat" -msgid "Mail" -msgstr "E-pos" +msgid "No identity providers found. Cannot continue." +msgstr "" msgid "No, cancel" msgstr "Nee" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Jy het %HOMEORG% gekies as jou tuisorganisasie. As dit is verkeerd jy kan 'n ander een te kies." - -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Kenmerkende naam (DN) van die persoon se primêre organisatoriese afdeling" - -msgid "Enter your username and password" -msgstr "Voer jou gebruikersnaam en wagwoord in" - -msgid "Login at" -msgstr "Meld aan by" - -msgid "No" -msgstr "Nee" +msgid "No, only %SP%" +msgstr "Nee, net %SP%" -msgid "Home postal address" -msgstr "Tuis posadres" +msgid "On hold" +msgstr "Hou die verbinding" -msgid "Do you want to logout from all the services above?" -msgstr "Wil jy van alle bogenoemde dienste afmeld?" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Een of meerdere dienste waarby jy aangemeld het, ondersteun nie afmelding nie. Om seker te wees datal jou sessies afgesluit word, is dit beter om jou webblaaier toe te maak." -msgid "Given name" -msgstr "Voornaam" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Voeg opsioneel jou epos adres in vir die administrateurs om jou te kontak vir meer inligting m.b.t jou probleem:" -msgid "Identity assurance profile" -msgstr "Identiteitsversekerings profiel" +msgid "Organization" +msgstr "Organisasie" msgid "Organization name" msgstr "Organisasie naam" -msgid "Home organization domain name" -msgstr "Tuis Organisasie domein naam" +msgid "Organization's legal name" +msgstr "Wettige naam" -msgid "Error report sent" -msgstr "Foutmeldingsverslag gestuur" +msgid "Organizational homepage" +msgstr "Organisasie tuisblad" -msgid "Common name" -msgstr "Algemene naam" +msgid "Organizational number" +msgstr "Organisasie nommer" -msgid "Logout failed" -msgstr "Afmelding misluk" +msgid "Organizational unit" +msgstr "Organisasie eenheid" -msgid "Identity number assigned by public authorities" -msgstr "Identiteitsnommer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Bladsy nie gevind nie" -msgid "Organization" -msgstr "Organisasie" +msgid "Password" +msgstr "Wagwoord" -msgid "Choose home organization" -msgstr "Kies tuisorganisasie" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Wagwoord nie opgestel nie" msgid "Persistent pseudonymous ID" msgstr "Aanhoudende anonieme ID" -msgid "Domain component (DC)" -msgstr "Domein komponent (DC)" +msgid "Person's principal name at home organization" +msgstr "Persoonlike ID by tuis organisasie" + +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Kies asb. jou identiteits verskaffer waar jy wil verifieer:" + +msgid "Post office box" +msgstr "Posbus" + +msgid "Postal address" +msgstr "Posadres" + +msgid "Postal code" +msgstr "Poskode" + +msgid "Preferred language" +msgstr "Taal voorkeur" + +msgid "Primary affiliation" +msgstr "Primêre affiliasie" + +msgid "Private information elements" +msgstr "Private informasie elemente" + +msgid "Remember" +msgstr "Onthou" + +msgid "Remember me" +msgstr "Onthou my" + +msgid "Remember my choice" +msgstr "Onthou my keuse" + +msgid "Remember my username" +msgstr "Onthou my gebruikersnaam" + +msgid "Report errors" +msgstr "Rapporteer foute" + +msgid "Return to service" +msgstr "Terug na diens" + +msgid "SAML Subject" +msgstr "" + +msgid "Select" +msgstr "Kies" + +msgid "Select your identity provider" +msgstr "Kies jou identiteits verskaffer" + +msgid "Send e-mail to help desk" +msgstr "Stuur e-pos aan hulplyn" + +msgid "Send error report" +msgstr "Stuur die fout verslag" -msgid "Password" -msgstr "Wagwoord" +msgid "Sending message" +msgstr "" -msgid "Nickname" -msgstr "Bynaam" +msgid "Service Provider" +msgstr "Diens Verskaffer" -msgid "The error report has been sent to the administrators." -msgstr "Die foutmeldings verslag is gestuur na die administrateurs." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp is nie korrek ingestel nie" -msgid "Date of birth" -msgstr "Geboorte datum" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp-fout" -msgid "Private information elements" -msgstr "Private informasie elemente" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are also logged in on these services:" -msgstr "Jy is ook by dié dienste aangemeld:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Toestandsinformasie verlore" -msgid "No, only %SP%" -msgstr "Nee, net %SP%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Toestandsinformasie verlore en daar is geen manier om die versoek weer te stuur nie" -msgid "Username" -msgstr "Gebruikersnaam" +msgid "Street" +msgstr "Straat" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Gaan terug na die SimpleSAMLphp installasie bladsy" +msgid "Surname" +msgstr "Van" -msgid "You have successfully logged out from all services listed above." -msgstr "Jy het suksesvol afgemeld." +msgid "Telephone number" +msgstr "Telefoon nommer" -msgid "You are now successfully logged out from %SP%." -msgstr "Jy is suksesvol afgemeld van %SP% af." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Die Identiteits Verskaffer reageer met 'n fout. (Die status kode in die SAML reaksie was onsuksesvol)" -msgid "Affiliation" -msgstr "Affiliasie" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Die verifikasie is gestop deur die gebruiker" -msgid "You have been logged out." -msgstr "Jy is afgemeld." +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Die onderstaande informasie mag van hulp wees vir die stelsel administrateur / hulplyn." -msgid "Return to service" -msgstr "Terug na diens" +msgid "The error report has been sent to the administrators." +msgstr "Die foutmeldings verslag is gestuur na die administrateurs." -msgid "Remember my username" -msgstr "Onthou my gebruikersnaam" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Die bladsy bestaan nie. Die URL was: %URL%" -msgid "Preferred language" -msgstr "Taal voorkeur" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Die gegewe bladsy is nie gevind nie. Die rede was: %REASON%. Die URL was: %URL%" -msgid "Surname" -msgstr "Van" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Die inligting vir die huidige uiteken sessie is verlore. Jy moet terugkeer na die diens waarvan jy probeer afmeld het en probeer om weer af te meld. Dié fout kan voorkom weens verstreke afmelding inligting. Die afmelding inligting word gestoor vir 'n beperkte tydperk - gewoonlik 'n paar ure. Dit is langer as wat 'n normale afmelding sessie moet vat, so die fout mag 'n indikasie wees van 'n probleem met die stellings. Kontak jou diens verskaffer sou die probleem voortduur." -msgid "User ID" -msgstr "Gebruikers ID" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Die inisieerder van hierdie versoek het nie 'n aflos staat('RelayState') parameter wat aandui waarheen om volgende te gaan nie." -msgid "JPEG Photo" -msgstr "JPEG Foto" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Die gestuurde parameters na die ontdekkings diens was not volgens die korrekte spesifikasies nie." -msgid "Postal address" -msgstr "Posadres" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Logging out of the following services:" -msgstr "Afmelding van die volgende dienste:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Die wagwoord in die konfigurasie (auth.adminpassword) is nie aangepas nie. Redigeer asb die konfigurasie leër." -msgid "Labeled URI" -msgstr "URI" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Daar is 'n fout in die versoek na die bladsy. Die rede is: %REASON%" -msgid "Login" -msgstr "Meld aan" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Daar is fout met jou SimplSAMLphp installasie. Indien jy die administrateur is van dié diens moet jy verseker dat jou metadata konfigurasie korrek is." -msgid "Yes, all services" -msgstr "Ja, alle dienste" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Die Identiteits Verskaffer het 'n Verifikasie Versoek ontvang vanaf 'n Diens Verskaffer maar 'n fout het voorgekom tydens die verwerking van die versoek." -msgid "Logged out" -msgstr "Afgemeld" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Die eindpunt is nie beskikbaar nie. Gaan die staat opsies in jou opset van SimpleSAMLphp na." -msgid "Postal code" -msgstr "Poskode" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Die fout is moontlik te danke aan onverwagte gedrag of weens inkorrekte instellings in SimpleSAMLphp. Kontak die administrateur in beheer van die aanmeld diens en stuur die bostaande fout boodskap aan." -msgid "Logging out..." -msgstr "Besig om af te meld?" +msgid "Title" +msgstr "Titel" -msgid "Primary affiliation" -msgstr "Primêre affiliasie" +msgid "Tracking number" +msgstr "" -msgid "Telephone number" -msgstr "Telefoon nommer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Kan geen metadata vind vir %ENTITYID%" msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." msgstr "Dit was nie moontlik om van een of meer dienste af te meld nie. Om seker te wees dat al jou sessies afgesluit word, is dit beter om jou webblaaier toe te maak." -msgid "Group membership" -msgstr "Groeplidmaatskap" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Entitlement regarding the service" -msgstr "Reg mbt. die diens" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Onverwagte foutmelding" -msgid "Remember" -msgstr "Onthou" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Onbekende sertifikaat" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Kenmerkende naam (DN) van die person se tuisorganisasie" +msgid "User ID" +msgstr "Gebruikers ID" -msgid "Organizational unit" -msgstr "Organisasie eenheid" +msgid "User's password hash" +msgstr "Gebruikerswagwoord" -msgid "Local identity number" -msgstr "Identiteitsnommer" +msgid "Username" +msgstr "Gebruikersnaam" -msgid "Change your home organization" -msgstr "Verander jou tuisorganisasie" +msgid "Warning" +msgstr "" -msgid "User's password hash" -msgstr "Gebruikerswagwoord" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Die antwoord vanaf die Indentiteits Verskaffer is nie aanvaar nie." -msgid "Completed" -msgstr "Voltooid" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Daar was 'n fout tydens die verifikasie skepping deur die Identiteits Verskaffer." -msgid "On hold" -msgstr "Hou die verbinding" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Jammer! - Sonder jou gebruikersnaam en wagwoord kan jy jouself nie vir toegang tot die diens identifiseer nie. Dalk is daar iemand wat jou kan help. Raadpleeg die hulplyn by jou organisasie!" -msgid "Help! I don't remember my password." -msgstr "Hulp! Ek het nie my wagwoord onthou nie." +msgid "World" +msgstr "" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp-fout" +msgid "Yes, all services" +msgstr "Ja, alle dienste" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Een of meerdere dienste waarby jy aangemeld het, ondersteun nie afmelding nie. Om seker te wees datal jou sessies afgesluit word, is dit beter om jou webblaaier toe te maak." +msgid "Yes, continue" +msgstr "Ja, voortgaan" -msgid "Remember me" -msgstr "Onthou my" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Organization's legal name" -msgstr "Wettige naam" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Jy het aansoek gedoen vir toegang na die Assertion Consumer Service koppelvlak, maar geen SAML Verifikasie Versoek is saam gestuur nie." -msgid "Street" -msgstr "Straat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Contact information:" -msgstr "Kontak detail:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Jy het toegang verkry na die SingleLogoutService koppelvlak('interface'), maar het geen SAML LogoutRequest of LogoutResponse gestuur nie." -msgid "Legal name" -msgstr "Wettige naam" +msgid "You are also logged in on these services:" +msgstr "Jy is ook by dié dienste aangemeld:" -msgid "You have previously chosen to authenticate at" -msgstr "Jy het voorheen gekies om te verifieer deur:" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Jy het nou toegang gekry tot 'n pre-produksie stelsel. Dié verifikasie opstel is vir die toets en pre-produksie verifikasie aleen. Indien iemand vir jou 'n skakel gestuur wat na hier verwys en jy is nie 'n toets persoon nie het jy waarskynlik die verkeerde skakel en moet jy nie hier wees nie." -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Jy het probeer aanmeld maar jou wagwoord is nie verstuur nie, probeer asb. weer." +msgid "You are now successfully logged out from %SP%." +msgstr "Jy is suksesvol afgemeld van %SP% af." -msgid "Fax number" -msgstr "Faksnommer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Jy het nie 'n geldige sertifikaat gestuur nie." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Jammer! - Sonder jou gebruikersnaam en wagwoord kan jy jouself nie vir toegang tot die diens identifiseer nie. Dalk is daar iemand wat jou kan help. Raadpleeg die hulplyn by jou organisasie!" +msgid "You have been logged out." +msgstr "Jy is afgemeld." -msgid "Choose your home organization" -msgstr "Kies jou tuisorganisasie" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Jy het %HOMEORG% gekies as jou tuisorganisasie. As dit is verkeerd jy kan 'n ander een te kies." -msgid "Send e-mail to help desk" -msgstr "Stuur e-pos aan hulplyn" +msgid "You have previously chosen to authenticate at" +msgstr "Jy het voorheen gekies om te verifieer deur:" -msgid "Title" -msgstr "Titel" +msgid "You have successfully logged out from all services listed above." +msgstr "Jy het suksesvol afgemeld." -msgid "Manager" -msgstr "Bestuurder" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Jy het probeer aanmeld maar jou wagwoord is nie verstuur nie, probeer asb. weer." -msgid "Affiliation at home organization" -msgstr "Affiliasie by Tuis organisasie" +msgid "Your attributes" +msgstr "" -msgid "Help desk homepage" -msgstr "Hulplyn-tuisblad" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Organizational homepage" -msgstr "Organisasie tuisblad" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Jy het nou toegang gekry tot 'n pre-produksie stelsel. Dié verifikasie opstel is vir die toets en pre-produksie verifikasie aleen. Indien iemand vir jou 'n skakel gestuur wat na hier verwys en jy is nie 'n toets persoon nie het jy waarskynlik die verkeerde skakel en moet jy nie hier wees nie." +msgid "[Preferred choice]" +msgstr "[Verkies]" + +msgid "not set" +msgstr "" diff --git a/locales/ar/LC_MESSAGES/messages.po b/locales/ar/LC_MESSAGES/messages.po index 309efbee6c..01cab4b95f 100644 --- a/locales/ar/LC_MESSAGES/messages.po +++ b/locales/ar/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "لا توجد استجابة SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "لم يتم تقديم رسالة SAML" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "طلبت احدي الخدمات ان توثق انك انت. رجاءاً قم بإدراج اسم المستخدم و كلمة السر خاصتك بالاستمارة أدناه" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "جهة العمل" + +msgid "Affiliation at home organization" +msgstr "الوضع أو الوظيفة بالمنظمةالام\\الموقع الام" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "حدث خطا عند محاولة تكوين طلب SAML" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "خطا عند محاولة تسجيل الخروج" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "تم التخلص من استثناء غير معالج" + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "يمكنك رؤية محتوي الرسالة طالما كنت في حالة تصحيح" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "إيقاف التوثيق" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "خطا بمصدر التوثيق %AUTHSOURCE% نتيجة ل %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "فشل التوثيق لان متصفحك ارسل شهادات غير صحيحة او لا يمكن قراءتها " + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "فشل التوثيق لان متصفحك ارسل شهاده غير معلومة" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "فشل التوثيق لان متصفحك لم يرسل شهادات" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "خطا بمصدر التوثيق" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "استقبال طلب سيء" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "طلب سيء لخدمة استكشافية" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "خطا CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "الشهادات" + +msgid "Change your home organization" +msgstr "غيرالجهة الام" + +msgid "Choose home organization" +msgstr "اختار جهتك الام" + +msgid "Choose your home organization" +msgstr "اختار جهتك الام" + +msgid "Common name" +msgstr "أسماء اخري" + +msgid "Completed" +msgstr "اكتمل" + +msgid "Configuration check" +msgstr "مراجعة الترتيب" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "خطا بالترتيب" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "خطا بطلب التكوين" +msgid "Contact information:" +msgstr "بيانات الاتصال" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "طلب سيء لخدمة استكشافية" +msgid "Converted metadata" +msgstr "بيانات وصفية محولة" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "لا يمكننا اجراء التوثيق" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "شهادة غير صحيحة" +msgid "Date of birth" +msgstr "تاريخ الميلاد" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "خطا LDAP" +msgid "Debug information" +msgstr "معلومات التصحيح" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "معلومات تسجيل الخروج مفقودة" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "خطا عند تسجيل الخروج" +msgid "Display name" +msgstr "الاسم المستخدم " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "خطا بتحميل البيانات الوصفية/ الميتاداتا " +msgid "Distinguished name (DN) of person's home organization" +msgstr "الاسم المميز للمنظمة رب العمل" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "الميتاداتا مفقودة" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "الاسم المميز للوحدة الأساسية بالمنظمة رب العمل" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "ممنوع الدخول" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "الاسم المميز للوحدة بالمنظمة رب العمل" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "الشهادات مفقودة" +msgid "Do you want to logout from all the services above?" +msgstr "هل ترغب بتسجيل الخروج من جميع الخدمات أعلا؟" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "انعدام التقوية" +msgid "Domain component (DC)" +msgstr "مكونات النطاق" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "فقدان معلومات الحالة" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "حمل شهادات X509 كملفات بترميز PEM" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "الصفحة غير موجودة" +msgid "E-mail address:" +msgstr "عنوان الأميل" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "لم تقم بتحديد كلمة السر" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "اما انه لم نتمكن من التعرف علي اسم المستخدم او ان كلمة السر خطا. راجع اسم الدخول و حاول مرة اخري" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "خطا بإجراءات معاملة إجابات مقدم الهوية" +msgid "Enter your username and password" +msgstr "ادخل اسم المستخدم و كلمة السر" + +msgid "Entitlement regarding the service" +msgstr "استحقاقات الخدمة" + +msgid "Error" +msgstr "خطا" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "خطا بطلب التكوين" + +msgid "Error in this metadata entry" +msgstr "خطا بهذا البيان الوصفي/ الميتاداتا" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "خطا بتحميل البيانات الوصفية/ الميتاداتا " #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "خطا بمعاملة طلب مقدم الخدمة" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "خطا بإجراءات معاملة إجابات مقدم الهوية" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "خطا عند تسجيل الخروج" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "خطا تم الحصول عليه من مقدم الهوية" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "استثناء غير معالج" +msgid "Error report sent" +msgstr "تم إرسال التقرير عن الخطأ " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "شهادة غير معلومة" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "خطا عند محاولة الاتصال بمقدم خدمة CAS" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "إيقاف التوثيق" +msgid "Explain what you did when this error occurred..." +msgstr "اشرح ما فعلته عند حدوث الخطأ " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "اسم مستخدم او كلمة سر خطا " +msgid "Fax number" +msgstr "رقم الفاكس" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "لقد وصلت لنطاق تأكيد خدمة زبون لكنك لم توفر استجابة توثيق SAML" +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "خطا بمصدر التوثيق %AUTHSOURCE% نتيجة ل %REASON%" +msgid "Given name" +msgstr "الاسم" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "خطا بطلب هذه الصفحة. السبب %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "عد لصفحة إنزال SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "خطا عند محاولة الاتصال بمقدم خدمة CAS" +msgid "Go back to the file list" +msgstr "عد لقائمة الملفات" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "يبدو ان ترتيب SimpleSAMLphp غير صحيح" +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "حدث خطا عند محاولة تكوين طلب SAML" +msgid "Help desk homepage" +msgstr "صفحة المساعدة" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "الخصائص المرفقة لا تطابق المواصفات" +msgid "Help! I don't remember my password." +msgstr "ساعدني! لا اذكر كلمة السر" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr " حدث خطا عند محاولة اجراء التوثيق" +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "هذه هي بياناتك الوصفية المجهزة بواسطة SAMLphp. للتجهيز لفدرالية موثوق بها قم بإرسال هذه الوثيقة لشركاء موثوق بهم" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "فشل التوثيق لان متصفحك ارسل شهادات غير صحيحة او لا يمكن قراءتها " +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "مرحباً بكم في صفحة حالة SimpleSAMLphp. يمكنك هنا مراقبة وقت انتهاء جلستك، فترة استمرارها، متي ستنتهي و جميع السمات المرتبطة بالجلسة" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP هو سجل معلومات المستخدم. عندما تسجل دخولك ينبغي علينا الاتصال بسجل LDAP. حدث خطا ما عندما حاولنا ذلك هذه المرة" +msgid "Home organization domain name" +msgstr "اسم النطاق المخصص للمنظمةالام\\الموقع الام " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "معلومات تسجيل الخروج الحالي مفقودة. عد لصفحة مقدم الخدمة و حاول تسجيل الخروج مرة اخري. يحدث هذا الخطأ نتيجة لانتهاء صلاحية معلومات تسجيل الخروج التي تحفظ لفترة محددة- عدة ساعات عادة. فترة تسجيل الخروج هذه أطول من المعتاد مما يدل علي وجود أخطاء اخري بالترتيب. اذا واجهتك هذه المشكلة مرة اخري قم رجاءاً بالاتصال بمقدم الخدمة" +msgid "Home postal address" +msgstr "العنوان البريدي" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "خطا عند محاولة تسجيل الخروج" +msgid "Home telephone" +msgstr "رقم الهاتف المنزلي" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "هناك خطا بترتيب SimpleSAMLphp الخاص بك. ان كنت المشرف علي الموقع، تأكد رجاءاً من ان ترتيب الميتاداتا صحيح" +msgid "How to get help" +msgstr "للمساعدة" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "لا يمكن تحديد موقع الميتاداتا ل %ENTITYID%" +msgid "Identity assurance profile" +msgstr "هوية الضمان" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "هذه النقطة غير منشطة. راجع خيارات التنشيط بترتيب SimpleSAMLphp" +msgid "Identity number assigned by public authorities" +msgstr "الرقم التعريفي المعين من قبل السلطات العامة " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "فشل التوثيق لان متصفحك لم يرسل شهادات" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "اذا قمت برفع تقرير عن هذا الخطأ قم رجاءاً بإدراج رقم المتابعة أدناه كيما نستطيع تحديد فترة دخولك بملفات المشرف علي الموقع" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "لم يوفر طالب الخدمة خصائص تقوية تقود للخطوة التالية" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "بيانات SAML 2.0 الوصفية بصيغة XML" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "فقدان معلومات الحالة و لا يمكن اعادة البدء للطلب" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "بصيغة SimpleSAMLphp- استخدم هذه الصيغة ان كنت تستخدم وحدة SimpleSAMLphp بالاتجاه الاخر ايضاً" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "الصفحة غير موجودة. العنوان %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "اسم مستخدم او كلمة سر خطا " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "الصفحة غير موجودة. السبب %REASON% و العنوان %URL%" +msgid "Incorrect username or password." +msgstr " اسم مستخدم او كلمة سر خطا" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "لم تقم بتغيير كلمة السر الافتراضية بالترتيب (auth.adminpassword). رجاءاً قم بتحرير ملف الترتيب" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "لم تقدم شهادة صحيحة" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "شهادة غير صحيحة" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "لم نقبل إجابات مقدم الهوية" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "حصل مقدم الهوية هذا علي طلب توثيق من مقدم الخدمة لكن حدث خطا بالإجراءات " +msgid "JPEG Photo" +msgstr "صورة (JPEG)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "مقدم الهوية استجاب بخطأ. (رمز الحالة باستجابة SAML فاشل)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "خطا LDAP" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "لقد وصلت لنقطة تسجيل الخروج الموحد لكنك لم توفر طلب تسجيل خروج SAML او استجابة لطلب الخروج" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP هو سجل معلومات المستخدم. عندما تسجل دخولك ينبغي علينا الاتصال بسجل LDAP. حدث خطا ما عندما حاولنا ذلك هذه المرة" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "تم التخلص من استثناء غير معالج" +msgid "Labeled URI" +msgstr "URI أسم " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "فشل التوثيق لان متصفحك ارسل شهاده غير معلومة" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "تم إيقاف التوثيق بواسطة المستخدم" +msgid "Legal name" +msgstr "الاسم الشرعي" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "اما انه لم نتمكن من التعرف علي اسم المستخدم او ان كلمة السر خطا. راجع اسم الدخول و حاول مرة اخري" +msgid "Local identity number" +msgstr "رقم الهوية المحلي" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "مرحباً بكم في صفحة حالة SimpleSAMLphp. يمكنك هنا مراقبة وقت انتهاء جلستك، فترة استمرارها، متي ستنتهي و جميع السمات المرتبطة بالجلسة" +msgid "Locality" +msgstr "المحلية" -msgid "Logout" +msgid "Logged out" +msgstr "خروج" + +msgid "Logging out of the following services:" +msgstr "تسجيل خروج من الخدمات أدناه " + +msgid "Logging out..." msgstr "تسجيل الخروج" -msgid "Your attributes" -msgstr "السمات" +msgid "Login" +msgstr "تسجيل الدخول" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "ستستمر جلستك ل٪عدد ثواني٪ ثانية تبدأ الان" +msgid "Login at" +msgstr "سجل دخولي علي" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "اختر موقع الهوية الذي ترغب بدخوله" +msgid "Logout" +msgstr "تسجيل الخروج" -msgid "Remember my choice" -msgstr "تذكر خياراتي" +msgid "Logout failed" +msgstr "تسجيل خروج فاشل" -msgid "Select" -msgstr "اختار" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "معلومات تسجيل الخروج مفقودة" -msgid "Select your identity provider" -msgstr "اختار موقع هويتك" +msgid "Mail" +msgstr "العنوان البريدي" -msgid "Sending message" -msgstr "ارسل رسالة" +msgid "Manager" +msgstr "المدير" -msgid "Yes, continue" -msgstr "نعم، واصل" +msgid "Message" +msgstr "رسالة" -msgid "Debug information" -msgstr "معلومات التصحيح" +msgid "Metadata" +msgstr "بيانات وصفية/ ميتاداتا" -msgid "E-mail address:" -msgstr "عنوان الأميل" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "الميتاداتا مفقودة" -msgid "Explain what you did when this error occurred..." -msgstr "اشرح ما فعلته عند حدوث الخطأ " +msgid "Metadata overview" +msgstr "نظرة عامة للبيانات الوصفية/ الميتاداتا" -msgid "How to get help" -msgstr "للمساعدة" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "اذا قمت برفع تقرير عن هذا الخطأ قم رجاءاً بإدراج رقم المتابعة أدناه كيما نستطيع تحديد فترة دخولك بملفات المشرف علي الموقع" +msgid "Mobile" +msgstr "رقم الهاتف السيار" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "ادرج عنوان ايميلك اختيارياً للمشرف ليستطيع التواصل معك لحل المشكلة" +msgid "Next" +msgstr "التالي" -msgid "Report errors" -msgstr "ارفع تقريراً عن الأخطاء " +msgid "Nickname" +msgstr "الكنية" -msgid "Send error report" -msgstr "ارسل تقريراً عن الخطأ " +msgid "No" +msgstr "لا" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr " قد تكون معلومات التصحيح أدناه مفيدة لمشرف الموقع/ او موظف المساعدة" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "انعدام التقوية" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "هذا الخطأ ناتج غالباً عن سلوك غير متوقع او عن خطا في ترتيب البرنامج. اتصل بالمشرف علي تسجيل الدخول لهذه الخدمة و قم بإرسال تقرير الخطأ أعلاه لهم أيضاً " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "لم يتم تقديم رسالة SAML" -msgid "[Preferred choice]" -msgstr "اختياري المفضل" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Person's principal name at home organization" -msgstr "ألاسم بالمنظمة الام\\الموقع الام " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "لا توجد استجابة SAML" -msgid "Superfluous options in config file" -msgstr "خيارات فائضة بملف الترتيب" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "ممنوع الدخول" -msgid "Mobile" -msgstr "رقم الهاتف السيار" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "الشهادات مفقودة" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "مقدم خدمة Shib 1.3 المستضاف" +msgid "No errors found." +msgstr "لا توجد أخطاء " -msgid "Display name" -msgstr "الاسم المستخدم " +msgid "No identity providers found. Cannot continue." +msgstr "" -msgid "SAML 2.0 SP Metadata" -msgstr "البيانات الوصفية ل SAML 2.0 SP" +msgid "No, cancel" +msgstr "لا" + +msgid "No, only %SP%" +msgstr "لا من %SP% فقط" msgid "Notices" msgstr "ملحوظات" -msgid "Home telephone" -msgstr "رقم الهاتف المنزلي" +msgid "On hold" +msgstr "بالانتظار " -msgid "Service Provider" -msgstr "مقدم خدمات" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "واحدة او اكثر من الخدمات التي قمت بتسجيل دخولك بها لا تدعم تسجيل الخروج. للتأكد من ان جميع صفحاتك قد تم إغلاقها قم بإغلاق متصفحك" + +msgid "Optional fields" +msgstr "حقل اختياري" -msgid "Incorrect username or password." -msgstr " اسم مستخدم او كلمة سر خطا" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "ادرج عنوان ايميلك اختيارياً للمشرف ليستطيع التواصل معك لحل المشكلة" -msgid "Submit message" -msgstr "سلم الرسالة" +msgid "Options missing from config file" +msgstr "خيارات مفقودة من ملف الترتيب" -msgid "Locality" -msgstr "المحلية" +msgid "Organization" +msgstr "الجهة " -msgid "The following required fields was not found" -msgstr "الحقول الإجبارية أدناه مفقودة" +msgid "Organization name" +msgstr "اسم المنظمة" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "حمل شهادات X509 كملفات بترميز PEM" +msgid "Organization's legal name" +msgstr "الاسم القانوني للمنظمة" + +msgid "Organizational homepage" +msgstr " عنوان الصفحة الالكترونية للمنظمة" msgid "Organizational number" msgstr "الرقم بالمنظمة" -msgid "Post office box" -msgstr "الصندوق البريدي" +msgid "Organizational unit" +msgstr "الوحدة" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "طلبت احدي الخدمات ان توثق انك انت. رجاءاً قم بإدراج اسم المستخدم و كلمة السر خاصتك بالاستمارة أدناه" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "الصفحة غير موجودة" -msgid "Error" -msgstr "خطا" +msgid "Parse" +msgstr "حلل" -msgid "Next" -msgstr "التالي" +msgid "Password" +msgstr "كلمة السر" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "الاسم المميز للوحدة بالمنظمة رب العمل" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "لم تقم بتحديد كلمة السر" -msgid "Converted metadata" -msgstr "بيانات وصفية محولة" +msgid "Persistent pseudonymous ID" +msgstr "الاسم المستعار " -msgid "Mail" -msgstr "العنوان البريدي" +msgid "Person's principal name at home organization" +msgstr "ألاسم بالمنظمة الام\\الموقع الام " -msgid "No, cancel" -msgstr "لا" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "اختر موقع الهوية الذي ترغب بدخوله" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "لقد قمت باختيار %HOMEORG% كجهتك الام. ان كان هذا الاختيار غير صحيح يمكنك تغييره" +msgid "Post office box" +msgstr "الصندوق البريدي" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "الاسم المميز للوحدة الأساسية بالمنظمة رب العمل" +msgid "Postal address" +msgstr "العنوان البريدي للمنظمة" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "لإلغاء نظرة علي تفاصيل احدي وحدات SAML, اضغط علي ترويسة الوحدة " +msgid "Postal code" +msgstr "الرمز البريدي" -msgid "Enter your username and password" -msgstr "ادخل اسم المستخدم و كلمة السر" +msgid "Preferred language" +msgstr "اللغة المفضلة" -msgid "Login at" -msgstr "سجل دخولي علي" +msgid "Primary affiliation" +msgstr "الوظيفة الاساسية" -msgid "No" -msgstr "لا" +msgid "Private information elements" +msgstr "وحدات التعريف الخاصة" -msgid "Home postal address" -msgstr "العنوان البريدي" +msgid "Remember" +msgstr "تذكرألغت ذكر" -msgid "WS-Fed SP Demo Example" -msgstr "استعراض مثال ل WS-Fed" +msgid "Remember my choice" +msgstr "تذكر خياراتي" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "مقدم هوية SAML 2.0 البعيد" +msgid "Report errors" +msgstr "ارفع تقريراً عن الأخطاء " -msgid "Do you want to logout from all the services above?" -msgstr "هل ترغب بتسجيل الخروج من جميع الخدمات أعلا؟" +msgid "Required fields" +msgstr "حقل إجباري" -msgid "Given name" -msgstr "الاسم" +msgid "Return to service" +msgstr "عد للخدمة" -msgid "Identity assurance profile" -msgstr "هوية الضمان" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "مقدم هوية SAML 2.0 المستضاف" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "مقدم هوية SAML 2.0 البعيد" msgid "SAML 2.0 SP Demo Example" msgstr "استعراض مثال ل SAML 2.0 SP" -msgid "Organization name" -msgstr "اسم المنظمة" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "انت علي وشك إرسال رسالة. اضغط علي الزر للمواصلة" +msgid "SAML 2.0 SP Metadata" +msgstr "البيانات الوصفية ل SAML 2.0 SP" -msgid "Home organization domain name" -msgstr "اسم النطاق المخصص للمنظمةالام\\الموقع الام " +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "مقدم خدمة SAML 2.0 (المستضاف)" -msgid "Go back to the file list" -msgstr "عد لقائمة الملفات" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "تم إرسال التقرير عن الخطأ " +msgid "Select" +msgstr "اختار" -msgid "Common name" -msgstr "أسماء اخري" +msgid "Select configuration file to check:" +msgstr "اختارملف الترتيب الذي ترغب بمراجعته" -msgid "Logout failed" -msgstr "تسجيل خروج فاشل" +msgid "Select your identity provider" +msgstr "اختار موقع هويتك" -msgid "Identity number assigned by public authorities" -msgstr "الرقم التعريفي المعين من قبل السلطات العامة " +msgid "Send e-mail to help desk" +msgstr "ارسل إيميل لصفحة المساعدة" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "مقدم خدمة WS-الفدرالية البعيد" +msgid "Send error report" +msgstr "ارسل تقريراً عن الخطأ " -msgid "Some error occurred" -msgstr "لقد حدث خطا ما" +msgid "Sending message" +msgstr "ارسل رسالة" -msgid "Organization" -msgstr "الجهة " +msgid "Service Provider" +msgstr "مقدم خدمات" -msgid "Choose home organization" -msgstr "اختار جهتك الام" +msgid "Session size: %SIZE%" +msgstr "حجم الجلسة ٪حجم٪" -msgid "Persistent pseudonymous ID" -msgstr "الاسم المستعار " +msgid "Shib 1.3 IdP Metadata" +msgstr "البيانات الوصفية لShib 1.3 IdP" -msgid "No errors found." -msgstr "لا توجد أخطاء " +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "مقدم هوية Shib 1.3 المستضاف" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "مقدم خدمة SAML 2.0 (المستضاف)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "مقدم هوية Shib 1.3 البعيد" -msgid "Required fields" -msgstr "حقل إجباري" +msgid "Shib 1.3 SP Metadata" +msgstr "البيانات الوصفية لShib 1.3 SP" -msgid "Domain component (DC)" -msgstr "مكونات النطاق" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "مقدم خدمة Shib 1.3 المستضاف" msgid "Shib 1.3 Service Provider (Remote)" msgstr "مقدم خدمة Shib 1.3 البعيد" -msgid "Password" -msgstr "كلمة السر" - -msgid "Nickname" -msgstr "الكنية" - -msgid "The error report has been sent to the administrators." -msgstr "تم إرسال التقرير عن الخطأ للمشرف" - -msgid "Date of birth" -msgstr "تاريخ الميلاد" - -msgid "Private information elements" -msgstr "وحدات التعريف الخاصة" - -msgid "You are also logged in on these services:" -msgstr "لقد قمت بتسجيل الدخول للخدمات " +msgid "Shibboleth demo" +msgstr "استعراض Shibboleth" msgid "SimpleSAMLphp Diagnostics" msgstr "تشخيص SimpleSAMLphp" -msgid "No, only %SP%" -msgstr "لا من %SP% فقط" - -msgid "Username" -msgstr "اسم المستخدم" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "يبدو ان ترتيب SimpleSAMLphp غير صحيح" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "عد لصفحة إنزال SimpleSAMLphp" +msgid "SimpleSAMLphp error" +msgstr "خطا ب SimpleSAMLphp" -msgid "You have successfully logged out from all services listed above." -msgstr "تسجيل خروج ناجح من جميع الخدمات أعلاه " +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "لقد خرجت بنجاح من %SP%" +msgid "Some error occurred" +msgstr "لقد حدث خطا ما" -msgid "Affiliation" -msgstr "جهة العمل" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "فقدان معلومات الحالة" -msgid "You have been logged out." -msgstr "لقدخروج لقد قمت بالخروج" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "فقدان معلومات الحالة و لا يمكن اعادة البدء للطلب" -msgid "Return to service" -msgstr "عد للخدمة" +msgid "Street" +msgstr "الشارع" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "مقدم خدمة WS-الفدرالية المستضاف " +msgid "Submit message" +msgstr "سلم الرسالة" -msgid "Preferred language" -msgstr "اللغة المفضلة" +msgid "Superfluous options in config file" +msgstr "خيارات فائضة بملف الترتيب" msgid "Surname" msgstr "اسم العائله" -msgid "The following fields was not recognized" -msgstr "لم يتم التعرف علي القل أدناه " - -msgid "User ID" -msgstr "الاسم التعريفي للمستخدم" +msgid "Telephone number" +msgstr "رقم الهاتف" -msgid "JPEG Photo" -msgstr "صورة (JPEG)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "مقدم الهوية استجاب بخطأ. (رمز الحالة باستجابة SAML فاشل)" -msgid "Postal address" -msgstr "العنوان البريدي للمنظمة" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "تم إيقاف التوثيق بواسطة المستخدم" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "بيانات SAML 2.0 الوصفية بصيغة XML" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr " قد تكون معلومات التصحيح أدناه مفيدة لمشرف الموقع/ او موظف المساعدة" -msgid "Logging out of the following services:" -msgstr "تسجيل خروج من الخدمات أدناه " +msgid "The error report has been sent to the administrators." +msgstr "تم إرسال التقرير عن الخطأ للمشرف" -msgid "Labeled URI" -msgstr "URI أسم " +msgid "The following fields was not recognized" +msgstr "لم يتم التعرف علي القل أدناه " -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "مقدم هوية Shib 1.3 المستضاف" +msgid "The following optional fields was not found" +msgstr "الحقول الاختيارية أدناه مفقودة" -msgid "Metadata" -msgstr "بيانات وصفية/ ميتاداتا" +msgid "The following required fields was not found" +msgstr "الحقول الإجبارية أدناه مفقودة" -msgid "Login" -msgstr "تسجيل الدخول" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "الصفحة غير موجودة. العنوان %URL%" -msgid "Yes, all services" -msgstr "نعم من جميع الخدمات" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "الصفحة غير موجودة. السبب %REASON% و العنوان %URL%" -msgid "Logged out" -msgstr "خروج" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "معلومات تسجيل الخروج الحالي مفقودة. عد لصفحة مقدم الخدمة و حاول تسجيل الخروج مرة اخري. يحدث هذا الخطأ نتيجة لانتهاء صلاحية معلومات تسجيل الخروج التي تحفظ لفترة محددة- عدة ساعات عادة. فترة تسجيل الخروج هذه أطول من المعتاد مما يدل علي وجود أخطاء اخري بالترتيب. اذا واجهتك هذه المشكلة مرة اخري قم رجاءاً بالاتصال بمقدم الخدمة" -msgid "Postal code" -msgstr "الرمز البريدي" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "لم يوفر طالب الخدمة خصائص تقوية تقود للخطوة التالية" -msgid "Logging out..." -msgstr "تسجيل الخروج" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "الخصائص المرفقة لا تطابق المواصفات" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "مقدم هوية SAML 2.0 المستضاف" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "الوظيفة الاساسية" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "لم تقم بتغيير كلمة السر الافتراضية بالترتيب (auth.adminpassword). رجاءاً قم بتحرير ملف الترتيب" -msgid "XML metadata" -msgstr "بيانات وصفية بصيغة XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "خطا بطلب هذه الصفحة. السبب %REASON%" -msgid "Telephone number" -msgstr "رقم الهاتف" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "هناك خطا بترتيب SimpleSAMLphp الخاص بك. ان كنت المشرف علي الموقع، تأكد رجاءاً من ان ترتيب الميتاداتا صحيح" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "لم استطع تسجيل الخروج من واحدة او اكثر من الخدمات. للتأكد من ان جميع صفحاتك قد أغلقت قم بإغلاق متصفحك" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "حصل مقدم الهوية هذا علي طلب توثيق من مقدم الخدمة لكن حدث خطا بالإجراءات " -msgid "Entitlement regarding the service" -msgstr "استحقاقات الخدمة" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "هذه النقطة غير منشطة. راجع خيارات التنشيط بترتيب SimpleSAMLphp" -msgid "Shib 1.3 SP Metadata" -msgstr "البيانات الوصفية لShib 1.3 SP" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "هذا الخطأ ناتج غالباً عن سلوك غير متوقع او عن خطا في ترتيب البرنامج. اتصل بالمشرف علي تسجيل الدخول لهذه الخدمة و قم بإرسال تقرير الخطأ أعلاه لهم أيضاً " -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "يمكنك رؤية محتوي الرسالة طالما كنت في حالة تصحيح" +msgid "Title" +msgstr "اللقب" -msgid "Certificates" -msgstr "الشهادات" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "لإلغاء نظرة علي تفاصيل احدي وحدات SAML, اضغط علي ترويسة الوحدة " -msgid "Remember" -msgstr "تذكرألغت ذكر" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "الاسم المميز للمنظمة رب العمل" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "لا يمكن تحديد موقع الميتاداتا ل %ENTITYID%" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "انت علي وشك إرسال رسالة. اضغط علي الرابط للمواصلة" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "لم استطع تسجيل الخروج من واحدة او اكثر من الخدمات. للتأكد من ان جميع صفحاتك قد أغلقت قم بإغلاق متصفحك" -msgid "Organizational unit" -msgstr "الوحدة" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "رقم الهوية المحلي" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "استثناء غير معالج" -msgid "Shib 1.3 IdP Metadata" -msgstr "البيانات الوصفية لShib 1.3 IdP" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "شهادة غير معلومة" -msgid "Change your home organization" -msgstr "غيرالجهة الام" +msgid "User ID" +msgstr "الاسم التعريفي للمستخدم" msgid "User's password hash" msgstr "كلمة السر" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "بصيغة SimpleSAMLphp- استخدم هذه الصيغة ان كنت تستخدم وحدة SimpleSAMLphp بالاتجاه الاخر ايضاً" - -msgid "Completed" -msgstr "اكتمل" - -msgid "Select configuration file to check:" -msgstr "اختارملف الترتيب الذي ترغب بمراجعته" - -msgid "On hold" -msgstr "بالانتظار " +msgid "Username" +msgstr "اسم المستخدم" -msgid "Help! I don't remember my password." -msgstr "ساعدني! لا اذكر كلمة السر" +msgid "WS-Fed SP Demo Example" +msgstr "استعراض مثال ل WS-Fed" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "يمكنك إغلاق حالة التصحيح بملف ترتيب SimpleSAMLphpconfig/config.php" +msgid "WS-Federation Identity Provider (Remote)" +msgstr "مقدم خدمة WS-الفدرالية البعيد" -msgid "SimpleSAMLphp error" -msgstr "خطا ب SimpleSAMLphp" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "مقدم خدمة WS-الفدرالية المستضاف " -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "واحدة او اكثر من الخدمات التي قمت بتسجيل دخولك بها لا تدعم تسجيل الخروج. للتأكد من ان جميع صفحاتك قد تم إغلاقها قم بإغلاق متصفحك" +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "الاسم القانوني للمنظمة" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "لم نقبل إجابات مقدم الهوية" -msgid "Options missing from config file" -msgstr "خيارات مفقودة من ملف الترتيب" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr " حدث خطا عند محاولة اجراء التوثيق" -msgid "The following optional fields was not found" -msgstr "الحقول الاختيارية أدناه مفقودة" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "لسوء الحظ لا يمكننا التوثق من هويتك بدون اسم المستخدم و كلمة السر وبالتالي لا يمكنك استخدام الخدمة. للمساعدة اتصل بالموظف المسؤول بصفحة المساعدة بجامعتك" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "يمكنك الحصول علي بياناتك الوصفية بملف xml ب URL متخصص بإدخال" +msgid "World" +msgstr "" -msgid "Street" -msgstr "الشارع" +msgid "XML metadata" +msgstr "بيانات وصفية بصيغة XML" -msgid "Message" -msgstr "رسالة" +msgid "Yes, all services" +msgstr "نعم من جميع الخدمات" -msgid "Contact information:" -msgstr "بيانات الاتصال" +msgid "Yes, continue" +msgstr "نعم، واصل" -msgid "Legal name" -msgstr "الاسم الشرعي" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "حقل اختياري" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "لقد وصلت لنطاق تأكيد خدمة زبون لكنك لم توفر استجابة توثيق SAML" -msgid "You have previously chosen to authenticate at" -msgstr "قمت سابقا بالتصديق في" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "لقد قمت بإرسال معلومات لصفحة الدخول لكن كلمة السر غير مرفقة. رجاءاً اعد المحاولة" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "لقد وصلت لنقطة تسجيل الخروج الموحد لكنك لم توفر طلب تسجيل خروج SAML او استجابة لطلب الخروج" -msgid "Fax number" -msgstr "رقم الفاكس" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "انت علي وشك إرسال رسالة. اضغط علي الزر للمواصلة" -msgid "Shibboleth demo" -msgstr "استعراض Shibboleth" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "انت علي وشك إرسال رسالة. اضغط علي الرابط للمواصلة" -msgid "Error in this metadata entry" -msgstr "خطا بهذا البيان الوصفي/ الميتاداتا" +msgid "You are also logged in on these services:" +msgstr "لقد قمت بتسجيل الدخول للخدمات " -msgid "Session size: %SIZE%" -msgstr "حجم الجلسة ٪حجم٪" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "لقد دخلت نظاماً مبدئياً. إعدادات التصديق هذه للاختبار فقط. اذا دخلت هنا بناء علي حصولك علي هذا الرابط من شخص ما و انت لست احد مختبري هذا النظام قم رجاءاً بالخروج" -msgid "Parse" -msgstr "حلل" +msgid "You are now successfully logged out from %SP%." +msgstr "لقد خرجت بنجاح من %SP%" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "لسوء الحظ لا يمكننا التوثق من هويتك بدون اسم المستخدم و كلمة السر وبالتالي لا يمكنك استخدام الخدمة. للمساعدة اتصل بالموظف المسؤول بصفحة المساعدة بجامعتك" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "يمكنك الحصول علي بياناتك الوصفية بملف xml ب URL متخصص بإدخال" -msgid "Choose your home organization" -msgstr "اختار جهتك الام" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "يمكنك إغلاق حالة التصحيح بملف ترتيب SimpleSAMLphpconfig/config.php" -msgid "Send e-mail to help desk" -msgstr "ارسل إيميل لصفحة المساعدة" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "لم تقدم شهادة صحيحة" -msgid "Metadata overview" -msgstr "نظرة عامة للبيانات الوصفية/ الميتاداتا" +msgid "You have been logged out." +msgstr "لقدخروج لقد قمت بالخروج" -msgid "Title" -msgstr "اللقب" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "لقد قمت باختيار %HOMEORG% كجهتك الام. ان كان هذا الاختيار غير صحيح يمكنك تغييره" -msgid "Manager" -msgstr "المدير" +msgid "You have previously chosen to authenticate at" +msgstr "قمت سابقا بالتصديق في" -msgid "Affiliation at home organization" -msgstr "الوضع أو الوظيفة بالمنظمةالام\\الموقع الام" +msgid "You have successfully logged out from all services listed above." +msgstr "تسجيل خروج ناجح من جميع الخدمات أعلاه " -msgid "Help desk homepage" -msgstr "صفحة المساعدة" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "لقد قمت بإرسال معلومات لصفحة الدخول لكن كلمة السر غير مرفقة. رجاءاً اعد المحاولة" -msgid "Configuration check" -msgstr "مراجعة الترتيب" +msgid "Your attributes" +msgstr "السمات" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "مقدم هوية Shib 1.3 البعيد" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "هذه هي بياناتك الوصفية المجهزة بواسطة SAMLphp. للتجهيز لفدرالية موثوق بها قم بإرسال هذه الوثيقة لشركاء موثوق بهم" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "ستستمر جلستك ل٪عدد ثواني٪ ثانية تبدأ الان" -msgid "Organizational homepage" -msgstr " عنوان الصفحة الالكترونية للمنظمة" +msgid "[Preferred choice]" +msgstr "اختياري المفضل" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "لقد دخلت نظاماً مبدئياً. إعدادات التصديق هذه للاختبار فقط. اذا دخلت هنا بناء علي حصولك علي هذا الرابط من شخص ما و انت لست احد مختبري هذا النظام قم رجاءاً بالخروج" +msgid "not set" +msgstr "" diff --git a/locales/ca/LC_MESSAGES/messages.po b/locales/ca/LC_MESSAGES/messages.po index 5e295fee6d..db3bdb8324 100644 --- a/locales/ca/LC_MESSAGES/messages.po +++ b/locales/ca/LC_MESSAGES/messages.po @@ -1,139 +1,525 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -msgid "Person's principal name at home organization" -msgstr "Identificador únic de la persona a la seva organització d'origen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -msgid "Mobile" -msgstr "Telèfon mòbil" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" -msgid "Display name" -msgstr "Nom de visualització" +msgid "Affiliation" +msgstr "Afiliació" -msgid "Home telephone" -msgstr "Telèfon del domicili" +msgid "Affiliation at home organization" +msgstr "Afiliació a l'organització d'origen" -msgid "Locality" -msgstr "Localitat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "" -msgid "Organizational number" -msgstr "Número de l'organització" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "" -msgid "Post office box" -msgstr "Apartat de correus" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Nom distingit (DN) de la Unitat Organitzativa (OU) de l'organització d'origen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "" -msgid "Mail" -msgstr "Correu electrònic" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 +msgid "Authentication source error" +msgstr "" + +msgid "Authentication status" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 +msgid "Bad request received" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 +msgid "CAS Error" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Common name" +msgstr "Nom comú (CN)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 +msgid "Configuration error" +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 +msgid "Could not create authentication response" +msgstr "" + +msgid "Date of birth" +msgstr "Data de naixement" + +msgid "Debug information" +msgstr "" + +msgid "Debug information to be used by your support staff" +msgstr "" + +msgid "Display name" +msgstr "Nom de visualització" + +msgid "Distinguished name (DN) of person's home organization" +msgstr "Nom distingit (DN) de l'organització d'origen" msgid "Distinguished name (DN) of person's primary Organizational Unit" msgstr "Nom distingit (DN) de l'entrada del directori que representa l'identificador" -msgid "Home postal address" -msgstr "Adreça del domicili" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Nom distingit (DN) de la Unitat Organitzativa (OU) de l'organització d'origen" + +msgid "Domain component (DC)" +msgstr "Component de domini (DC)" + +msgid "E-mail address:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "" + +msgid "Entitlement regarding the service" +msgstr "Dret relatiu al servei" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Error processing request from Service Provider" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 +msgid "Error received from Identity Provider" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "" + +msgid "Explain what you did when this error occurred..." +msgstr "" + +msgid "Fax number" +msgstr "Número de fax" + +msgid "Format" +msgstr "" msgid "Given name" msgstr "Nom" -msgid "Identity assurance profile" -msgstr "Identificador del perfil de garantia" +msgid "Hello, Untranslated World!" +msgstr "" -msgid "Organization name" -msgstr "Nom de l'organització" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "" msgid "Home organization domain name" msgstr "Identificador únic de l'organització d'origen" -msgid "Common name" -msgstr "Nom comú (CN)" +msgid "Home postal address" +msgstr "Adreça del domicili" + +msgid "Home telephone" +msgstr "Telèfon del domicili" + +msgid "How to get help" +msgstr "" + +msgid "Identity assurance profile" +msgstr "Identificador del perfil de garantia" msgid "Identity number assigned by public authorities" msgstr "Número de la Seguretat Social" -msgid "Persistent pseudonymous ID" -msgstr "Identificador pseudònim persistent" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" -msgid "Domain component (DC)" -msgstr "Component de domini (DC)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "" + +msgid "Information about your current session" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" + +msgid "JPEG Photo" +msgstr "Fotografia en JPEG" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "" + +msgid "Labeled URI" +msgstr "URI etiquetat" + +msgid "Language" +msgstr "" + +msgid "Legal name" +msgstr "Nom legal" + +msgid "Local identity number" +msgstr "Número d'identificació local" + +msgid "Locality" +msgstr "Localitat" + +msgid "Logout" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "" + +msgid "Mail" +msgstr "Correu electrònic" + +msgid "Manager" +msgstr "Gestor" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" + +msgid "Mobile" +msgstr "Telèfon mòbil" msgid "Nickname" msgstr "Àlies" -msgid "Date of birth" -msgstr "Data de naixement" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "" -msgid "Private information elements" -msgstr "Elements d'informació privada" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "" -msgid "Affiliation" -msgstr "Afiliació" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Preferred language" -msgstr "Idioma preferit" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "" -msgid "Surname" -msgstr "Cognoms" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "" -msgid "User ID" -msgstr "Identificador d'usuari" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "" -msgid "JPEG Photo" -msgstr "Fotografia en JPEG" +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "" + +msgid "Organization name" +msgstr "Nom de l'organització" + +msgid "Organization's legal name" +msgstr "Nom legal de l'organització" + +msgid "Organizational homepage" +msgstr "Pàgina inicial de l'organització" + +msgid "Organizational number" +msgstr "Número de l'organització" + +msgid "Organizational unit" +msgstr "Unitat organitzativa" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "" + +msgid "Persistent pseudonymous ID" +msgstr "Identificador pseudònim persistent" + +msgid "Person's principal name at home organization" +msgstr "Identificador únic de la persona a la seva organització d'origen" + +msgid "Please select the identity provider where you want to authenticate:" +msgstr "" + +msgid "Post office box" +msgstr "Apartat de correus" msgid "Postal address" msgstr "Adreça postal" -msgid "Labeled URI" -msgstr "URI etiquetat" - msgid "Postal code" msgstr "Codi postal" +msgid "Preferred language" +msgstr "Idioma preferit" + msgid "Primary affiliation" msgstr "Afiliació primària" -msgid "Telephone number" -msgstr "Número de telèfon" +msgid "Private information elements" +msgstr "Elements d'informació privada" -msgid "Entitlement regarding the service" -msgstr "Dret relatiu al servei" +msgid "Remember my choice" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Nom distingit (DN) de l'organització d'origen" +msgid "Report errors" +msgstr "" -msgid "Organizational unit" -msgstr "Unitat organitzativa" +msgid "SAML Subject" +msgstr "" -msgid "Local identity number" -msgstr "Número d'identificació local" +msgid "Select" +msgstr "" -msgid "User's password hash" -msgstr "Clau o contrasenya i mètode d'encriptació usat" +msgid "Select your identity provider" +msgstr "" -msgid "Organization's legal name" -msgstr "Nom legal de l'organització" +msgid "Send error report" +msgstr "" + +msgid "Sending message" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "" + +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "" msgid "Street" msgstr "Carrer" -msgid "Legal name" -msgstr "Nom legal" +msgid "Surname" +msgstr "Cognoms" -msgid "Fax number" -msgstr "Número de fax" +msgid "Telephone number" +msgstr "Número de telèfon" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "" + +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "" + +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "" msgid "Title" msgstr "Tractament" -msgid "Manager" -msgstr "Gestor" +msgid "Tracking number" +msgstr "" -msgid "Affiliation at home organization" -msgstr "Afiliació a l'organització d'origen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "" -msgid "Organizational homepage" -msgstr "Pàgina inicial de l'organització" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "" + +msgid "User ID" +msgstr "Identificador d'usuari" + +msgid "User's password hash" +msgstr "Clau o contrasenya i mètode d'encriptació usat" + +msgid "Warning" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "" + +msgid "World" +msgstr "" + +msgid "Yes, continue" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "" + +msgid "Your attributes" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" + +msgid "not set" +msgstr "" diff --git a/locales/cs/LC_MESSAGES/messages.po b/locales/cs/LC_MESSAGES/messages.po index 5e5e2fb0d7..35add2cef7 100644 --- a/locales/cs/LC_MESSAGES/messages.po +++ b/locales/cs/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Nebyla zaslána SAML odpověď" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "SAML zpráva nebyla zaslána" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Služba požaduje vaši identifikaci. Prosím vložte své jméno a heslo." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Vztah k organizaci" + +msgid "Affiliation at home organization" +msgstr "Vztah k domovské organizaci" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Chyba vznikla při vytváření SAML požadavku." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Při procesu odhlášení vznikla chyba." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Vznikla neočekávaná výjimka." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Pokud jste v debug módu, můžete vidět obsah zprávy, kterou posíláte:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Přihlášení odmítnuto" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Autentizační chyba ve zdroji %AUTHSOURCE%. Důvodem bylo: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Přihlášení neproběhlo: certifikát, který odeslal Váš prohlížeč, nemohl být přečten" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Přihlášení neproběhlo: certifikát, který odeslal Váš prohlížeč, je neznámý" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Přihlášení neproběhlo: Váš prohlížeč neodeslal žádný certifikát" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Chyba autentizačního zdroje" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Zaslán špatný požadavek" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Špatný požadavek pro prohledávací službu" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS chyba" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Certifikáty" + +msgid "Change your home organization" +msgstr "Změňte svou organizaci" + +msgid "Choose home organization" +msgstr "Zvolte domovskou organizaci" + +msgid "Choose your home organization" +msgstr "Zvolte svou organizaci" + +msgid "Common name" +msgstr "Celé jméno" + +msgid "Completed" +msgstr "Dokončeno" + +msgid "Configuration check" +msgstr "Verifikace konfigurace" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Chyba konfigurace" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Chyba při vytváření požadavku" +msgid "Contact information:" +msgstr "Kontaktní informace" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Špatný požadavek pro prohledávací službu" +msgid "Converted metadata" +msgstr "Konvertovaná metadata" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Nelze vytvořit odpověď" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Nesprávný certifikát" +msgid "Date of birth" +msgstr "Datum narozeni" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP chyba" +msgid "Debug information" +msgstr "Ladicí informace" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Odhlašovací informace ztracena" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Chyba zpracování odhlašovacího požadavku" +msgid "Display name" +msgstr "Zobrazované jméno" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Chyba nahrávání metadat" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Uživatelské jméno přidělené organizací" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadata nenalezena" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Jméno hlavní organizační jednotky" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Nemáte přístup" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Uživatelské jméno přidělené organizační jednotkou" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Chybí certifikát" +msgid "Do you want to logout from all the services above?" +msgstr "Chcete se odhlásit ze všech těchto služeb?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Nenalezen RelayState." +msgid "Domain component (DC)" +msgstr "Doména (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Stavová informace ztracena" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Stáhněte certifikát X509 jako PEM-encoded soubor" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Stránka nenalezena." +msgid "E-mail address:" +msgstr "Email" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Heslo nebylo zadáno." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Uživatel buď nebyl nalezen, nebo jste zadal špatné heslo. Prosím zkontrolujte login a zkuste se přihlásit znovu." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Chyba zpracování odpovědi od poskytovatele identity" +msgid "Enter your username and password" +msgstr "Vložte své jméno a heslo" + +msgid "Entitlement regarding the service" +msgstr "Právo ke službě" + +msgid "Error" +msgstr "Chyba" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Chyba při vytváření požadavku" + +msgid "Error in this metadata entry" +msgstr "Chyba v této položce metadat" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Chyba nahrávání metadat" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Chyba provádění žádosti poskytovatele služby" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Chyba zpracování odpovědi od poskytovatele identity" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Chyba zpracování odhlašovacího požadavku" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Chyba přijatá od poskytovatele identity" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Neočekávaná výjimka" +msgid "Error report sent" +msgstr "Zpráva o chybě odeslána" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Neznámý certifikát" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Chyba při komunikaci s CAS serverem." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Přihlášení odmítnuto" +msgid "Explain what you did when this error occurred..." +msgstr "Vysvětlete, jak došlo k této chybě ..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Špatné jméno a heslo." +msgid "Fax number" +msgstr "Fax" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Přistupujete k Assertion Consumer Service rozhraní, ale neposíláte SAML Authentication Response." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Autentizační chyba ve zdroji %AUTHSOURCE%. Důvodem bylo: %REASON%" +msgid "Given name" +msgstr "Křestní jméno" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Chyba požadavku pro tuto stránku. Důvod je: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Zpátky na SimpleSAMLphp instalační stránku" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Chyba při komunikaci s CAS serverem." +msgid "Go back to the file list" +msgstr "Zpátky na seznam souborů" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp je špatně nakonfigurovaný" +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Chyba vznikla při vytváření SAML požadavku." +msgid "Help desk homepage" +msgstr "Help desk" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Parametr zaslaný vyhledávací službě neodpovídá specifikaci." +msgid "Help! I don't remember my password." +msgstr "Zapomněl jsem heslo." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Při vytváření přihlašovací odpovědi tímto poskytovatelem identity, vznikla chyba." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Zde jsou metadata, která pro vás SimpleSAMLphp generuje. Můžete zaslat tento dokument svým důvěryhodným partnerům a založit tak federaci." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Přihlášení neproběhlo: certifikát, který odeslal Váš prohlížeč, nemohl být přečten" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Vítejte na informační stránce. Zde uvidíte, pokud vypršelo vaše sezení, jak dlouho jste pryč a všechny atributy připojené k vašemu sezení." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP je databáze uživatelů, a když se chcete přihlásit, je potřeba se k ní připojit. Chyba nastala během připojování." +msgid "Home organization domain name" +msgstr "Doménové jméno organizace" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Informace o odhlašovací operaci byla ztracena. Můžete se vrátit do aplikace, ze které jste se odhlašovali, a zkusit to znova. Tato chyba byla způsobena vypršením odhlašovacích informací. Ty jsou uloženy po omezený čas (jednotky hodin). To by mělo stačit na normální odhlášení a tato chyba může ukazovat na chyby v konfiguraci. Pokud problém přetrvává, kontaktujte administrátora." +msgid "Home postal address" +msgstr "Adresa domů" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Při procesu odhlášení vznikla chyba." +msgid "Home telephone" +msgstr "Telefon domů" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Chyba v konfiguraci SimpleSAMLphp. Pokud jste administrátorem služby, zkontrolujte metadata." +msgid "How to get help" +msgstr "Jak získat pomoc" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Nebyla nalezena metadata pro %ENTITYID%" +msgid "Identity assurance profile" +msgstr "Poskytovatel identifikačního profilu" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Tento koncový bod není povolen. Zkontrolujte konfiguraci (zapněte volby)." +msgid "Identity number assigned by public authorities" +msgstr "Identifikační kód přidělený veřejnou autoritou" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Přihlášení neproběhlo: Váš prohlížeč neodeslal žádný certifikát" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Pokud budete reportovat tuto chybu, prosím zašlete také toto ID, toto umožní najít vaší session v logu, který je dostupný systmovým administrátorem: " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Původce této žádosti nezadal parametr RelayState, který určuje kam pokračovat." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Ve formátu SAML 2.0 XML metadata:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Stavová informace " +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "V SimpleSAMLphp souborovém formátu (flat-file) - použijte, pokud potřebujete používat SimpleSAMLphp na druhé straně:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Stránka nenalezena. URL je: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Špatné jméno a heslo." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Stránka nenalezena. Důvod je: %REASON% URL je: %URL%" +msgid "Incorrect username or password." +msgstr "Nesprávné jméno nebo heslo." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Heslo v konfiguraci (auth.adminpassword) není nastaveno. Prosím nastavte ho." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Nepředložil jste validní certifikát." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Nesprávný certifikát" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Neakceptujeme odpověď zaslanou poskytovatelem identity." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Tento poskytovatel identity přijal požadavek od poskytovatele služby, ale při jeho provádění vznikla chyba." +msgid "JPEG Photo" +msgstr "Fotografie (JPEG)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Poskytovatel identity odpověděl chybou. (Stavový kód v SAML nebyl úspěšný)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP chyba" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Přistupujete k SingleLogoutService rozhraní, ale nezadáváte SAML LogoutRequest ani LogoutResponse." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP je databáze uživatelů, a když se chcete přihlásit, je potřeba se k ní připojit. Chyba nastala během připojování." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Vznikla neočekávaná výjimka." +msgid "Labeled URI" +msgstr "URI" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Přihlášení neproběhlo: certifikát, který odeslal Váš prohlížeč, je neznámý" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Přihlášení bylo přerušeno uživatelem" +msgid "Legal name" +msgstr "Oficiální jméno" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Uživatel buď nebyl nalezen, nebo jste zadal špatné heslo. Prosím zkontrolujte login a zkuste se přihlásit znovu." +msgid "Local identity number" +msgstr "Lokální identifikační kód" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Vítejte na informační stránce. Zde uvidíte, pokud vypršelo vaše sezení, jak dlouho jste pryč a všechny atributy připojené k vašemu sezení." +msgid "Locality" +msgstr "Lokalita" -msgid "Logout" -msgstr "Odhlášení" +msgid "Logged out" +msgstr "Odhlášen" -msgid "Your attributes" -msgstr "Vaše atributy" +msgid "Logging out of the following services:" +msgstr "Odhlášení z následujících služeb:" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Vaše sezení je platné ještě %remaining% sekund." +msgid "Logging out..." +msgstr "Odhlašuji..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Prosím zvolte svého poskytovatele identity, který vám dovolí se přihlásit" +msgid "Login" +msgstr "Přihlásit" -msgid "Remember my choice" -msgstr "Zapamatuj moji volbu" +msgid "Login at" +msgstr "Přihlášení k" -msgid "Select" -msgstr "Zvolit" +msgid "Logout" +msgstr "Odhlášení" -msgid "Select your identity provider" -msgstr "Zvol svého poskytovatele identity (IdP)" +msgid "Logout failed" +msgstr "Odhlášení selhalo" -msgid "Sending message" -msgstr "Posílám zprávu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Odhlašovací informace ztracena" -msgid "Yes, continue" -msgstr "Ano, akceptuji" +msgid "Mail" +msgstr "Email" -msgid "Debug information" -msgstr "Ladicí informace" +msgid "Manager" +msgstr "Manažer" -msgid "E-mail address:" -msgstr "Email" +msgid "Message" +msgstr "Zpráva" -msgid "Explain what you did when this error occurred..." -msgstr "Vysvětlete, jak došlo k této chybě ..." +msgid "Metadata" +msgstr "Metadata" -msgid "How to get help" -msgstr "Jak získat pomoc" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadata nenalezena" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Pokud budete reportovat tuto chybu, prosím zašlete také toto ID, toto umožní najít vaší session v logu, který je dostupný systmovým administrátorem: " +msgid "Metadata overview" +msgstr "Přehled metadat" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Můžete uvést svou emailovou adresu, aby vás mohl administrátor kontaktovat:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "Oznámit chyby" +msgid "Mobile" +msgstr "Mobil" -msgid "Send error report" -msgstr "Zaslat chybový report" +msgid "Next" +msgstr "Další" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Následující ladicí informace může zajímat administrátora (helpdesk)" +msgid "Nickname" +msgstr "Přezdívka" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Tato chyba pravděpodobně vznikla neočekávanou událostí, nebo chybou v konfiguraci. Kontaktujte administrátora této přihlašovací služby a zašlete mu tuto zprávu." +msgid "No" +msgstr "Ne" -msgid "[Preferred choice]" -msgstr "[Preferovaná volba]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Nenalezen RelayState." -msgid "Person's principal name at home organization" -msgstr "Hlavní jméno osoby v organizaci" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "SAML zpráva nebyla zaslána" -msgid "Superfluous options in config file" -msgstr "Nadbytečné položky v konfiguračním souboru" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "Mobil" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Nebyla zaslána SAML odpověď" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Service Provider (Hosted - lokální)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Nemáte přístup" -msgid "Display name" -msgstr "Zobrazované jméno" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Chybí certifikát" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP Metadata" +msgid "No errors found." +msgstr "Nenalezeny žádné chyby" + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Ne" + +msgid "No, only %SP%" +msgstr "Ne, jen %SP%" msgid "Notices" msgstr "Poznámky" -msgid "Home telephone" -msgstr "Telefon domů" +msgid "On hold" +msgstr "Čekám" -msgid "Service Provider" -msgstr "Poskytovatel služby" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Jedna nebo více služeb, do kterých jste přihlášen(a), nepodporuje odhlášení. Pokud se chcete odhlásit, musíte ukončit váš webový prohlížeč." + +msgid "Optional fields" +msgstr "Volitelná pole" -msgid "Incorrect username or password." -msgstr "Nesprávné jméno nebo heslo." +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Můžete uvést svou emailovou adresu, aby vás mohl administrátor kontaktovat:" -msgid "Submit message" -msgstr "Poslat zprávu" +msgid "Options missing from config file" +msgstr "Chybějící položky v konfiguračním souboru" -msgid "Locality" -msgstr "Lokalita" +msgid "Organization" +msgstr "Organizace" -msgid "The following required fields was not found" -msgstr "Následující požadovaná pole nenalezena" +msgid "Organization name" +msgstr "Jméno organizace" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Stáhněte certifikát X509 jako PEM-encoded soubor" +msgid "Organization's legal name" +msgstr "Oficiální jméno organizace" + +msgid "Organizational homepage" +msgstr "URL organizace" msgid "Organizational number" msgstr "Číslo organizace" -msgid "Post office box" -msgstr "Postbox" +msgid "Organizational unit" +msgstr "Organizační jednotka" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Služba požaduje vaši identifikaci. Prosím vložte své jméno a heslo." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Stránka nenalezena." -msgid "Error" -msgstr "Chyba" +msgid "Parse" +msgstr "Analýza" -msgid "Next" -msgstr "Další" +msgid "Password" +msgstr "Heslo" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Uživatelské jméno přidělené organizační jednotkou" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Heslo nebylo zadáno." -msgid "Converted metadata" -msgstr "Konvertovaná metadata" +msgid "Persistent pseudonymous ID" +msgstr "Perzistentní pseudoanonymní ID" -msgid "Mail" -msgstr "Email" +msgid "Person's principal name at home organization" +msgstr "Hlavní jméno osoby v organizaci" -msgid "No, cancel" -msgstr "Ne" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Prosím zvolte svého poskytovatele identity, který vám dovolí se přihlásit" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Máte nastavenu %HOMEORG% jako domovskou organizaci. Pokud je to špatně, zvolte jinou." +msgid "Post office box" +msgstr "Postbox" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Jméno hlavní organizační jednotky" +msgid "Postal address" +msgstr "Poštovní adresa" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Pro zobrazení detailu SAML entity klikni na hlavičku entity" +msgid "Postal code" +msgstr "PSČ" -msgid "Enter your username and password" -msgstr "Vložte své jméno a heslo" +msgid "Preferred language" +msgstr "Preferovaný jazyk" -msgid "Login at" -msgstr "Přihlášení k" +msgid "Primary affiliation" +msgstr "Hlavní příslušnost" -msgid "No" -msgstr "Ne" +msgid "Private information elements" +msgstr "Privátní informační elementy" -msgid "Home postal address" -msgstr "Adresa domů" +msgid "Remember" +msgstr "Zapamatuj" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP Demo" +msgid "Remember my choice" +msgstr "Zapamatuj moji volbu" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 Identity Provider (Remote - vzdálený)" +msgid "Report errors" +msgstr "Oznámit chyby" -msgid "Do you want to logout from all the services above?" -msgstr "Chcete se odhlásit ze všech těchto služeb?" +msgid "Required fields" +msgstr "Požadovaná pole" -msgid "Given name" -msgstr "Křestní jméno" +msgid "Return to service" +msgstr "Zpátky na službu" -msgid "Identity assurance profile" -msgstr "Poskytovatel identifikačního profilu" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Identity Provider (Hosted - lokální)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 Identity Provider (Remote - vzdálený)" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP Demo" -msgid "Organization name" -msgstr "Jméno organizace" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Můžete poslat zprávu. Požijte tlačítko k pokračování." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP Metadata" -msgid "Home organization domain name" -msgstr "Doménové jméno organizace" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Service Provider (Hosted - lokální)" -msgid "Go back to the file list" -msgstr "Zpátky na seznam souborů" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Zpráva o chybě odeslána" +msgid "Select" +msgstr "Zvolit" -msgid "Common name" -msgstr "Celé jméno" +msgid "Select configuration file to check:" +msgstr "Vyber konfiguračního souboru k verifikaci:" -msgid "Logout failed" -msgstr "Odhlášení selhalo" +msgid "Select your identity provider" +msgstr "Zvol svého poskytovatele identity (IdP)" -msgid "Identity number assigned by public authorities" -msgstr "Identifikační kód přidělený veřejnou autoritou" +msgid "Send e-mail to help desk" +msgstr "Email helpdesku zaslán." -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation Identity Provider (Remote - vzdálený)" +msgid "Send error report" +msgstr "Zaslat chybový report" -msgid "Some error occurred" -msgstr "Nalezena chyba" +msgid "Sending message" +msgstr "Posílám zprávu" -msgid "Organization" -msgstr "Organizace" +msgid "Service Provider" +msgstr "Poskytovatel služby" -msgid "Choose home organization" -msgstr "Zvolte domovskou organizaci" +msgid "Session size: %SIZE%" +msgstr "Velikost sezeni: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Perzistentní pseudoanonymní ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metadata" -msgid "No errors found." -msgstr "Nenalezeny žádné chyby" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Identity Provider (Hosted - lokální)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Service Provider (Hosted - lokální)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Identity Provider (Remote - vzdálený)" -msgid "Required fields" -msgstr "Požadovaná pole" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metadata" -msgid "Domain component (DC)" -msgstr "Doména (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Service Provider (Hosted - lokální)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 Service Provider (Remote - vzdálený)" -msgid "Password" -msgstr "Heslo" - -msgid "Nickname" -msgstr "Přezdívka" - -msgid "The error report has been sent to the administrators." -msgstr "Zpráva o chybě byla zaslána administrátorům." - -msgid "Date of birth" -msgstr "Datum narozeni" - -msgid "Private information elements" -msgstr "Privátní informační elementy" - -msgid "You are also logged in on these services:" -msgstr "Jste ještě přihlášen k těmto službám:" +msgid "Shibboleth demo" +msgstr "Shibboleth demo" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp diagnostika" -msgid "No, only %SP%" -msgstr "Ne, jen %SP%" - -msgid "Username" -msgstr "Uživatel" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp je špatně nakonfigurovaný" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Zpátky na SimpleSAMLphp instalační stránku" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp chyba" -msgid "You have successfully logged out from all services listed above." -msgstr "Úspěšně jste se odhlásili z následujících služeb." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Zahájil jste globální odhlášení ze služby %REQUESTERNAME%. Globální odhlášení znamená, že budete odhlášen ze všech následující služeb." +msgid "Some error occurred" +msgstr "Nalezena chyba" -msgid "Affiliation" -msgstr "Vztah k organizaci" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Stavová informace ztracena" -msgid "You have been logged out." -msgstr "Jste odhlášen. Děkujeme za použití této služby." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Stavová informace " -msgid "Return to service" -msgstr "Zpátky na službu" +msgid "Street" +msgstr "Ulice" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation Service Provider (Hosted - lokální)" +msgid "Submit message" +msgstr "Poslat zprávu" -msgid "Preferred language" -msgstr "Preferovaný jazyk" +msgid "Superfluous options in config file" +msgstr "Nadbytečné položky v konfiguračním souboru" msgid "Surname" msgstr "Příjmení" -msgid "The following fields was not recognized" -msgstr "Následující pole nebyla rozpoznána" - -msgid "User ID" -msgstr "Identifikátor (UID)" +msgid "Telephone number" +msgstr "Telefon" -msgid "JPEG Photo" -msgstr "Fotografie (JPEG)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Poskytovatel identity odpověděl chybou. (Stavový kód v SAML nebyl úspěšný)" -msgid "Postal address" -msgstr "Poštovní adresa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Přihlášení bylo přerušeno uživatelem" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Ve formátu SAML 2.0 XML metadata:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Následující ladicí informace může zajímat administrátora (helpdesk)" -msgid "Logging out of the following services:" -msgstr "Odhlášení z následujících služeb:" +msgid "The error report has been sent to the administrators." +msgstr "Zpráva o chybě byla zaslána administrátorům." -msgid "Labeled URI" -msgstr "URI" +msgid "The following fields was not recognized" +msgstr "Následující pole nebyla rozpoznána" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Identity Provider (Hosted - lokální)" +msgid "The following optional fields was not found" +msgstr "Následující volitelná pole nenalezena" -msgid "Metadata" -msgstr "Metadata" +msgid "The following required fields was not found" +msgstr "Následující požadovaná pole nenalezena" -msgid "Login" -msgstr "Přihlásit" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Stránka nenalezena. URL je: %URL%" -msgid "Yes, all services" -msgstr "Ano, všechny služby" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Stránka nenalezena. Důvod je: %REASON% URL je: %URL%" -msgid "Logged out" -msgstr "Odhlášen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Informace o odhlašovací operaci byla ztracena. Můžete se vrátit do aplikace, ze které jste se odhlašovali, a zkusit to znova. Tato chyba byla způsobena vypršením odhlašovacích informací. Ty jsou uloženy po omezený čas (jednotky hodin). To by mělo stačit na normální odhlášení a tato chyba může ukazovat na chyby v konfiguraci. Pokud problém přetrvává, kontaktujte administrátora." -msgid "Postal code" -msgstr "PSČ" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Původce této žádosti nezadal parametr RelayState, který určuje kam pokračovat." -msgid "Logging out..." -msgstr "Odhlašuji..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Parametr zaslaný vyhledávací službě neodpovídá specifikaci." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Identity Provider (Hosted - lokální)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Hlavní příslušnost" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Heslo v konfiguraci (auth.adminpassword) není nastaveno. Prosím nastavte ho." -msgid "XML metadata" -msgstr "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Chyba požadavku pro tuto stránku. Důvod je: %REASON%" -msgid "Telephone number" -msgstr "Telefon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Chyba v konfiguraci SimpleSAMLphp. Pokud jste administrátorem služby, zkontrolujte metadata." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Odhlášení z jedné nebo z více služeb se nezdařilo. Aby bylo zajištěno, že všechny vaše relace budou uzavřeny, doporučujeme ukončit váš webový prohlížeč." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Tento poskytovatel identity přijal požadavek od poskytovatele služby, ale při jeho provádění vznikla chyba." -msgid "Entitlement regarding the service" -msgstr "Právo ke službě" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Tento koncový bod není povolen. Zkontrolujte konfiguraci (zapněte volby)." -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Metadata" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Tato chyba pravděpodobně vznikla neočekávanou událostí, nebo chybou v konfiguraci. Kontaktujte administrátora této přihlašovací služby a zašlete mu tuto zprávu." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Pokud jste v debug módu, můžete vidět obsah zprávy, kterou posíláte:" +msgid "Title" +msgstr "Nadpis" -msgid "Certificates" -msgstr "Certifikáty" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Pro zobrazení detailu SAML entity klikni na hlavičku entity" -msgid "Remember" -msgstr "Zapamatuj" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Uživatelské jméno přidělené organizací" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Nebyla nalezena metadata pro %ENTITYID%" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Můžete poslat zprávu. Klikněte na odkaz pro pokračování." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Odhlášení z jedné nebo z více služeb se nezdařilo. Aby bylo zajištěno, že všechny vaše relace budou uzavřeny, doporučujeme ukončit váš webový prohlížeč." -msgid "Organizational unit" -msgstr "Organizační jednotka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Lokální identifikační kód" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Neočekávaná výjimka" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Neznámý certifikát" -msgid "Change your home organization" -msgstr "Změňte svou organizaci" +msgid "User ID" +msgstr "Identifikátor (UID)" msgid "User's password hash" msgstr "Uživatelské heslo (hash)" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "V SimpleSAMLphp souborovém formátu (flat-file) - použijte, pokud potřebujete používat SimpleSAMLphp na druhé straně:" - -msgid "Completed" -msgstr "Dokončeno" - -msgid "Select configuration file to check:" -msgstr "Vyber konfiguračního souboru k verifikaci:" - -msgid "On hold" -msgstr "Čekám" +msgid "Username" +msgstr "Uživatel" -msgid "Help! I don't remember my password." -msgstr "Zapomněl jsem heslo." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP Demo" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Můžete vypnout debug mód v globální konfiguraci SimpleSAMLphp config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation Identity Provider (Remote - vzdálený)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp chyba" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation Service Provider (Hosted - lokální)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Jedna nebo více služeb, do kterých jste přihlášen(a), nepodporuje odhlášení. Pokud se chcete odhlásit, musíte ukončit váš webový prohlížeč." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Oficiální jméno organizace" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Neakceptujeme odpověď zaslanou poskytovatelem identity." -msgid "Options missing from config file" -msgstr "Chybějící položky v konfiguračním souboru" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Při vytváření přihlašovací odpovědi tímto poskytovatelem identity, vznikla chyba." -msgid "The following optional fields was not found" -msgstr "Následující volitelná pole nenalezena" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Bez jména a hesla se nemůžete identifikovat. Zkuste kontaktovat helpdesk své organizace." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Získejte metadata v XML formátu na dedikované adrese" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Ulice" +msgid "XML metadata" +msgstr "XML metadata" -msgid "Message" -msgstr "Zpráva" +msgid "Yes, all services" +msgstr "Ano, všechny služby" -msgid "Contact information:" -msgstr "Kontaktní informace" +msgid "Yes, continue" +msgstr "Ano, akceptuji" -msgid "Legal name" -msgstr "Oficiální jméno" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Volitelná pole" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Přistupujete k Assertion Consumer Service rozhraní, ale neposíláte SAML Authentication Response." -msgid "You have previously chosen to authenticate at" -msgstr "Dříve jste zvolil(a) ověření u" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Odeslal jste data do přihlašovací stránky, ale z nějakého důvodu nebylo odesláno heslo. Prosím zkuste to znovu." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Přistupujete k SingleLogoutService rozhraní, ale nezadáváte SAML LogoutRequest ani LogoutResponse." -msgid "Fax number" -msgstr "Fax" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Můžete poslat zprávu. Požijte tlačítko k pokračování." -msgid "Shibboleth demo" -msgstr "Shibboleth demo" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Můžete poslat zprávu. Klikněte na odkaz pro pokračování." -msgid "Error in this metadata entry" -msgstr "Chyba v této položce metadat" +msgid "You are also logged in on these services:" +msgstr "Jste ještě přihlášen k těmto službám:" -msgid "Session size: %SIZE%" -msgstr "Velikost sezeni: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Právě přistupujete k testovacímu systému. Pokud nejste administrátor, nebo tester, máte pravděpodobně špatný odkaz." -msgid "Parse" -msgstr "Analýza" +msgid "You are now successfully logged out from %SP%." +msgstr "Zahájil jste globální odhlášení ze služby %REQUESTERNAME%. Globální odhlášení znamená, že budete odhlášen ze všech následující služeb." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Bez jména a hesla se nemůžete identifikovat. Zkuste kontaktovat helpdesk své organizace." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Získejte metadata v XML formátu na dedikované adrese" -msgid "Choose your home organization" -msgstr "Zvolte svou organizaci" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Můžete vypnout debug mód v globální konfiguraci SimpleSAMLphp config/config.php." -msgid "Send e-mail to help desk" -msgstr "Email helpdesku zaslán." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Nepředložil jste validní certifikát." -msgid "Metadata overview" -msgstr "Přehled metadat" +msgid "You have been logged out." +msgstr "Jste odhlášen. Děkujeme za použití této služby." -msgid "Title" -msgstr "Nadpis" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Máte nastavenu %HOMEORG% jako domovskou organizaci. Pokud je to špatně, zvolte jinou." -msgid "Manager" -msgstr "Manažer" +msgid "You have previously chosen to authenticate at" +msgstr "Dříve jste zvolil(a) ověření u" -msgid "Affiliation at home organization" -msgstr "Vztah k domovské organizaci" +msgid "You have successfully logged out from all services listed above." +msgstr "Úspěšně jste se odhlásili z následujících služeb." -msgid "Help desk homepage" -msgstr "Help desk" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Odeslal jste data do přihlašovací stránky, ale z nějakého důvodu nebylo odesláno heslo. Prosím zkuste to znovu." -msgid "Configuration check" -msgstr "Verifikace konfigurace" +msgid "Your attributes" +msgstr "Vaše atributy" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Identity Provider (Remote - vzdálený)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Zde jsou metadata, která pro vás SimpleSAMLphp generuje. Můžete zaslat tento dokument svým důvěryhodným partnerům a založit tak federaci." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Vaše sezení je platné ještě %remaining% sekund." -msgid "Organizational homepage" -msgstr "URL organizace" +msgid "[Preferred choice]" +msgstr "[Preferovaná volba]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Právě přistupujete k testovacímu systému. Pokud nejste administrátor, nebo tester, máte pravděpodobně špatný odkaz." +msgid "not set" +msgstr "" diff --git a/locales/da/LC_MESSAGES/messages.po b/locales/da/LC_MESSAGES/messages.po index 40a7786f97..a1f6253fba 100644 --- a/locales/da/LC_MESSAGES/messages.po +++ b/locales/da/LC_MESSAGES/messages.po @@ -1,756 +1,837 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "SAML response mangler" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Ingen SAML besked" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "En web-tjeneste har bedt om at tilkendegive dig. Det betyder, at du skal indtaste dit brugernavn og kodeord herunder." + +msgid "ADFS IdP Metadata" +msgstr "ADFS identitetsudbyder metadata" + +msgid "ADFS Identity Provider (Hosted)" +msgstr "ADFS identitetsudbyder (hosted)" + +msgid "ADFS SP Metadata" +msgstr "ADFS tjenesteudbyder metadata" + +msgid "ADFS Service Provider (Remote)" +msgstr "ADFS tjenesteudbyder (remote)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Brugerens tilknytning til hjemmeorganisationen" + +msgid "Affiliation at home organization" +msgstr "Gruppemedlemskab" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Fejl ved generering af SAML-forespørgsel" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Der opstod en fejl under behandlingen af Logout forespørgelsen" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "An unhandled exception was thrown" + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Fordi du er i debug-mode kan du se indholdet af de beskeder du sender:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Autentificering aubrudt" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Autentificeringsfejl i %AUTHSOURCE%. Årsagen var: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Authentifikation fejlede: Certifikatet som din browser har sendt er ugyldigt og kan ikke læses" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Authentifikation fejlede: Certifikatet som din browser har send er ukendt" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Login fejlede - din browser sendte ikke noget certifikat" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Authentication source fejl" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Fejlagtig forespørgsel" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Fejlagtig forespørgsel til Discovery Service" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS fejl" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Certifikater" + +msgid "Change your home organization" +msgstr "Skift hjemmeinstitution" + +msgid "Choose home organization" +msgstr "Vælg hjemmeinstitution" + +msgid "Choose your home organization" +msgstr "Vælg din hjemmeinstitution" + +msgid "Common name" +msgstr "Kaldenavn" + +msgid "Completed" +msgstr "Færdig" + +msgid "Configuration check" +msgstr "Undersøgelse af konfiguration" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Konfigurationsfejl" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Fejl ved forespørgsel" +msgid "Contact information:" +msgstr "Kontaktoplysninger" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Fejlagtig forespørgsel til Discovery Service" +msgid "Converted metadata" +msgstr "Konverteret metadata" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Kunne ikke generere single sign-on svar" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Ugyldigt Certifikat" +msgid "Date of birth" +msgstr "Fødselsdato" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP fejl" +msgid "Debug information" +msgstr "Detaljer til fejlsøgning" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Manglende logout-oplysninger" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Fejl i Logout Request" +msgid "Display name" +msgstr "Visningsnavn" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Fejl i læsning af metadata" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Din hjemmeorganisations 'distinguished name' (DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadata ikke fundet" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Primær enhed/institution" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Ingen Adgang" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Din organisatoriske enheds 'distinguished name' (DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Intet certifikat" +msgid "Do you want to logout from all the services above?" +msgstr "Vil du logge ud fra alle ovenstående services?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "RelayState mangler" +msgid "Domain component (DC)" +msgstr "Domænekomponent" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "State information tabt" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Download X509 certifikaterne som PEM-indkodet filer." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Siden kunne ikke findes" +msgid "E-mail address:" +msgstr "E-mailadresse:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Password er ikke sat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Enten kunne brugeren ikke findes eller også var kodeordet forkert. Prøv igen." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Fejl i behandlingen af svar fra Identitetsudbyder" +msgid "Enter your username and password" +msgstr "Indtast brugernavn og kodeord" + +msgid "Entitlement regarding the service" +msgstr "Specifik rolle i forhold til tjenesten" + +msgid "Error" +msgstr "Fejl" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Fejl ved forespørgsel" + +msgid "Error in this metadata entry" +msgstr "Fejl i denne sektion af metadata" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Fejl i læsning af metadata" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Fejl i behandlingen forespørgsel fra Tjeneste Udbyder" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Fejl i behandlingen af svar fra Identitetsudbyder" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Fejl i Logout Request" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Fejl modtaget fra institution" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Unhandled exception" +msgid "Error report sent" +msgstr "Fejlrapportering sendt" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Ukendt certifikat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Der opstod en fejl ved kommunikationen med CAS serveren" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Autentificering aubrudt" +msgid "Explain what you did when this error occurred..." +msgstr "Forklar hvad du gjorde og hvordan fejlen opstod" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Forkert brugernavn eller kodeord" +msgid "Fax number" +msgstr "Faxnummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Du forsøger at tilgå Assertion Consumer Service grænsefladen uden at sende et SAML Authentication Response" +msgid "Format" +msgstr "Format" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Autentificeringsfejl i %AUTHSOURCE%. Årsagen var: %REASON%" +msgid "Given name" +msgstr "Fornavn(e)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Der er en fejl i forespørgslen til siden. Grunden er: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Tilbage til SimpleSAMLphp installationssiden" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Der opstod en fejl ved kommunikationen med CAS serveren" +msgid "Go back to the file list" +msgstr "Tilbage til listen over filer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp er tilsyneladende ikke Konfigureret korrekt" +msgid "Group membership" +msgstr "Gruppemedlemsskab" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Fejl ved generering af SAML-forespørgsel" +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "De afsendte værdier overholder ikke Discovery Servicens' krav" +msgid "Help desk homepage" +msgstr "Servicedesk" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "En fejl opstod da denne identitetsudbyder forsøgte at sende svar" +msgid "Help! I don't remember my password." +msgstr "Hjælp! Jeg har glemt mit kodeord." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Authentifikation fejlede: Certifikatet som din browser har sendt er ugyldigt og kan ikke læses" +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Her er det metadata, som SimpleSAMLphp har genereret. Du kan sende det til dem du stoler i forbindelse med oprettelsen af en føderation." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "Der opstod en fejl i kommunikationen med LDAP databasen under login." +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Dette er statussiden for SimpleSAMLphp. Du kan se om din session er udløbet, hvor lang tid der er til at den udløber, samt alle øvrige oplysninger om din session." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Oplysningerne om logout er tabt. Du bør gå tilbage til tjenesten du ønskede at logge ud af og prøve igen. Fejlen kan skyldes at oplysningerne blev forældet, da de kun gemmes i kort tid, typisk et par timer. Dette er dog længere end hvad det burde tage at logge ud, så denne fejl kan indikere en konfigurationsfejl. Hvis fejlen genopstår, bedes du kontakte tjenesteudbyderen." +msgid "Home organization domain name" +msgstr "Hjemmeorganisationens entydige ID (domænenavn)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Der opstod en fejl under behandlingen af Logout forespørgelsen" +msgid "Home postal address" +msgstr "Privatadresse" + +msgid "Home telephone" +msgstr "Telefonnummer (privat)" + +msgid "How to get help" +msgstr "Hvordan kan jeg få hjælp" + +msgid "Identity assurance profile" +msgstr "Tillidsniveau for autentificering" + +msgid "Identity number assigned by public authorities" +msgstr "CPR-nummer" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Hvis du vil rapportere denne fejl, så medsend venligst dette sporings-ID. Den gør det muligt for teknikerne at finde fejlen." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Der er en fejl i konfigurationen af din SimpleSAMLphp installation. Hvis du er administrator for denne server, check at din metadata konfiguration er korrekt." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "I SAML 2.0 metadata xml-format:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Kan ikke finde metadata for %ENTITYID%" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "I SimpleSAMLphp flat-file format - brug dette hvis du også bruger SimpleSAMLphp i den anden ende;" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Denne tjeneste er ikke tilsluttet. Check konfigurationen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Forkert brugernavn eller kodeord" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Login fejlede - din browser sendte ikke noget certifikat" +msgid "Incorrect username or password." +msgstr "Forkert brugernavn eller kodeord." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Afsenderen af denne forespørgelse har ikke angivet en RelayStay parameter, der hvilket hvor der skal fortsættes" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "State information er tabt og der er ikke muligt at gentage forspørgelsen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Ugyldigt Certifikat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Siden kunne ikke findes. Sidens URL var: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Siden kunne ikke findes på grund af %REASON%. Url'en var %URL%" +msgid "JPEG Photo" +msgstr "JPEG-foto" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Der er ikke konfigureret et password til administrationsgrænsefladen (auth.adminpassword). Opdater konfigurationen med et nyt password, der er forskelligt fra stadardpasswordet." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP fejl" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Du har ikke valgt et gyldigt certifikat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "Der opstod en fejl i kommunikationen med LDAP databasen under login." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Svaret fra Identitetsudbydere kunne ikke accepteres" +msgid "Labeled URI" +msgstr "Labeled URI" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Denne IdP har modtaget en anmodning om single sign-on fra en tjeneste udbyder, men der opstod en fejl under behandlingen af denne anmodning." +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Institutionen har sendt en fejl. (Status koden i SAML responset var ikke succes)" +msgid "Legal name" +msgstr "Officielt navn" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Du forsøger at tilgå Single Logout grænsefladen, uden at sendet et SAML LogoutRequest eller LogoutResponse" +msgid "Local identity number" +msgstr "Lokalt identifikationsnummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "An unhandled exception was thrown" +msgid "Locality" +msgstr "Sted" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Authentifikation fejlede: Certifikatet som din browser har send er ukendt" +msgid "Logged out" +msgstr "Du er logget ud" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Autentificering blev afbrudt af brugeren" +msgid "Logging out of the following services:" +msgstr "Du logger ud af følgende services:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Enten kunne brugeren ikke findes eller også var kodeordet forkert. Prøv igen." +msgid "Logging out..." +msgstr "Logger ud..." -msgid "Format" -msgstr "Format" +msgid "Login" +msgstr "Login" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Dette er statussiden for SimpleSAMLphp. Du kan se om din session er udløbet, hvor lang tid der er til at den udløber, samt alle øvrige oplysninger om din session." +msgid "Login at" +msgstr "Login hos" msgid "Logout" msgstr "Log ud" -msgid "SAML Subject" -msgstr "SAML emne" +msgid "Logout failed" +msgstr "Logout fejlede" -msgid "Your attributes" -msgstr "Dine oplysninger" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Manglende logout-oplysninger" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Du har %remaining% tilbage af din session" +msgid "Mail" +msgstr "Emailadresse" -msgid "not set" -msgstr "ikke angivet" +msgid "Manager" +msgstr "Manager" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Vælg institutionen (identitetsudbyderen) hvor du vil logge ind" +msgid "Message" +msgstr "Besked" -msgid "Remember my choice" -msgstr "Husk valget" +msgid "Metadata" +msgstr "Metadata" -msgid "Select" -msgstr "Vælg" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadata ikke fundet" -msgid "Select your identity provider" -msgstr "Vælg institution (identitetsudbyder)" +msgid "Metadata overview" +msgstr "Metadataoversigt" -msgid "Sending message" -msgstr "Sender besked" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Yes, continue" -msgstr "Ja, jeg accepterer" +msgid "Mobile" +msgstr "Telefonnummer (mobil)" -msgid "Debug information" -msgstr "Detaljer til fejlsøgning" +msgid "Next" +msgstr "Næste" -msgid "E-mail address:" -msgstr "E-mailadresse:" +msgid "Nickname" +msgstr "Kaldenavn" -msgid "Explain what you did when this error occurred..." -msgstr "Forklar hvad du gjorde og hvordan fejlen opstod" +msgid "No" +msgstr "Nej" -msgid "How to get help" -msgstr "Hvordan kan jeg få hjælp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "RelayState mangler" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Hvis du vil rapportere denne fejl, så medsend venligst dette sporings-ID. Den gør det muligt for teknikerne at finde fejlen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Ingen SAML besked" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Hvis du vil kunne kontaktes i forbindelse med fejlmeldingen, bedes du indtaste din emailadresse herunder" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Report errors" -msgstr "Rapportér fejl" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "SAML response mangler" -msgid "Send error report" -msgstr "Send fejlrapport" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Ingen Adgang" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Detaljerne herunder kan være af interesse for teknikerne / help-desken" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Intet certifikat" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Denne fejl skyldes formentlig en fejlkonfiguration af SimpleSAMLphp - alternativt en ukendt fejl. Kontakt administratoren af denne tjeneste og rapportér så mange detaljer som muligt om fejlen" +msgid "No errors found." +msgstr "Ingen fejl" -msgid "[Preferred choice]" -msgstr "Foretrukket valg" +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Nej" + +msgid "No, only %SP%" +msgstr "Nej, kun %SP%" + +msgid "Notices" +msgstr "Beskeder" msgid "ORCID researcher identifiers" msgstr "ADFS identitetsudbyder metadata" -msgid "Person's principal name at home organization" -msgstr "Bruger-ID hos hjemmeorganisationen" +msgid "On hold" +msgstr "I kø" -msgid "Superfluous options in config file" -msgstr "Overflødigt valg i konfigurationsfil" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "En eller flere services som du er logget ind hos understøtter ikke log ou. For at sikre at alle dine forbindelser er lukket, bedes du lukke din browser." -msgid "Mobile" -msgstr "Telefonnummer (mobil)" +msgid "Optional fields" +msgstr "Valgfrie felter" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shibboleth 1.3 tjenesteudbyder (hosted)" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Hvis du vil kunne kontaktes i forbindelse med fejlmeldingen, bedes du indtaste din emailadresse herunder" -msgid "Display name" -msgstr "Visningsnavn" +msgid "Options missing from config file" +msgstr "Valg kan ikke behandles - se konfigurationsfil" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 tjenesteudbyders metadata" +msgid "Organization" +msgstr "Organisationsnavn" -msgid "ADFS IdP Metadata" -msgstr "ADFS identitetsudbyder metadata" +msgid "Organization name" +msgstr "Hjemmeorganisationens kaldenavn" -msgid "Notices" -msgstr "Beskeder" +msgid "Organization's legal name" +msgstr "Organisationens officielle navn" -msgid "Home telephone" -msgstr "Telefonnummer (privat)" +msgid "Organizational homepage" +msgstr "Hjemmeside" -msgid "Service Provider" -msgstr "Tjenesteudbyder" +msgid "Organizational number" +msgstr "CVR-nummer" -msgid "Incorrect username or password." -msgstr "Forkert brugernavn eller kodeord." +msgid "Organizational unit" +msgstr "Organisatorisk enhed" -msgid "Submit message" -msgstr "Send besked" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Siden kunne ikke findes" + +msgid "Parse" +msgstr "Parse" + +msgid "Password" +msgstr "Kodeord" -msgid "Locality" -msgstr "Sted" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Password er ikke sat" -msgid "The following required fields was not found" -msgstr "Følgende obligatoriske felter kunne ikke findes " +msgid "Persistent pseudonymous ID" +msgstr "Pseudonymt bruger-ID" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Download X509 certifikaterne som PEM-indkodet filer." +msgid "Person's principal name at home organization" +msgstr "Bruger-ID hos hjemmeorganisationen" -msgid "Organizational number" -msgstr "CVR-nummer" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Vælg institutionen (identitetsudbyderen) hvor du vil logge ind" msgid "Post office box" msgstr "Postboks" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "En web-tjeneste har bedt om at tilkendegive dig. Det betyder, at du skal indtaste dit brugernavn og kodeord herunder." - -msgid "Error" -msgstr "Fejl" - -msgid "Next" -msgstr "Næste" +msgid "Postal address" +msgstr "Adresse" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Din organisatoriske enheds 'distinguished name' (DN)" +msgid "Postal code" +msgstr "Postnummer" -msgid "Converted metadata" -msgstr "Konverteret metadata" +msgid "Preferred language" +msgstr "Foretrukket sprog (evt. flere)" -msgid "Mail" -msgstr "Emailadresse" +msgid "Primary affiliation" +msgstr "Primær tilknytning" -msgid "No, cancel" -msgstr "Nej" +msgid "Private information elements" +msgstr "Private informationselementer" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Du har valgt %HOMEORG% som din hjemmeinstitution. Hvis dette ikke er korrekt, kan du vælge en anden." +msgid "Remember" +msgstr "Husk samtykke" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Primær enhed/institution" +msgid "Remember me" +msgstr "Husk mig" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "For at se detaljer vedrørende SAML-entiteten, klik på entitets-headeren" +msgid "Remember my choice" +msgstr "Husk valget" -msgid "Enter your username and password" -msgstr "Indtast brugernavn og kodeord" +msgid "Remember my username" +msgstr "Husk mit brugernavn" -msgid "Login at" -msgstr "Login hos" +msgid "Report errors" +msgstr "Rapportér fejl" -msgid "No" -msgstr "Nej" +msgid "Required fields" +msgstr "Obligatoriske felter" -msgid "Home postal address" -msgstr "Privatadresse" +msgid "Return to service" +msgstr "Tilbage til service" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Federation tjenesteudbyder-demo" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 identitetsudbyder (hosted)" msgid "SAML 2.0 Identity Provider (Remote)" msgstr "SAML 2.0 identitetsudbyder (remote)" -msgid "Do you want to logout from all the services above?" -msgstr "Vil du logge ud fra alle ovenstående services?" - -msgid "Given name" -msgstr "Fornavn(e)" - -msgid "Identity assurance profile" -msgstr "Tillidsniveau for autentificering" - msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 tjenesteudbyder-demo" -msgid "Organization name" -msgstr "Hjemmeorganisationens kaldenavn" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Tryk på 'send' for at fortsætte med at sende beskeden" +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 tjenesteudbyders metadata" -msgid "Home organization domain name" -msgstr "Hjemmeorganisationens entydige ID (domænenavn)" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 tjenesteudbyder (hosted)" -msgid "Go back to the file list" -msgstr "Tilbage til listen over filer" +msgid "SAML Subject" +msgstr "SAML emne" -msgid "Error report sent" -msgstr "Fejlrapportering sendt" +msgid "Select" +msgstr "Vælg" -msgid "Common name" -msgstr "Kaldenavn" +msgid "Select configuration file to check:" +msgstr "Vælg den konfiguration som skal undersøges" -msgid "Logout failed" -msgstr "Logout fejlede" +msgid "Select your identity provider" +msgstr "Vælg institution (identitetsudbyder)" -msgid "Identity number assigned by public authorities" -msgstr "CPR-nummer" +msgid "Send e-mail to help desk" +msgstr "Send en e-mail til servicedesk" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation identitetsudbyder (remote)" +msgid "Send error report" +msgstr "Send fejlrapport" -msgid "Some error occurred" -msgstr "En fejl opstod." +msgid "Sending message" +msgstr "Sender besked" -msgid "Organization" -msgstr "Organisationsnavn" +msgid "Service Provider" +msgstr "Tjenesteudbyder" -msgid "Choose home organization" -msgstr "Vælg hjemmeinstitution" +msgid "Session size: %SIZE%" +msgstr "Sessionsstørrelse: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Pseudonymt bruger-ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shibboleth 1.3 identitetsudbyders metadata" -msgid "No errors found." -msgstr "Ingen fejl" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shibboleth 1.3 identitetsudbyder (hosted)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 tjenesteudbyder (hosted)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shibboleth 1.3 identitetsudbyder (remote)" -msgid "Required fields" -msgstr "Obligatoriske felter" +msgid "Shib 1.3 SP Metadata" +msgstr "Shibboleth 1.3 tjenesteudbyders metadata" -msgid "Domain component (DC)" -msgstr "Domænekomponent" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shibboleth 1.3 tjenesteudbyder (hosted)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shibboleth 1.3 tjenesteudbyder (remote)" -msgid "Password" -msgstr "Kodeord" - -msgid "Nickname" -msgstr "Kaldenavn" - -msgid "The error report has been sent to the administrators." -msgstr "Fejlrapporten er nu sendt til system-administrator" - -msgid "Date of birth" -msgstr "Fødselsdato" - -msgid "Private information elements" -msgstr "Private informationselementer" - -msgid "You are also logged in on these services:" -msgstr "Du er også logget ud fra disse services:" +msgid "Shibboleth demo" +msgstr "Shibboleth-demo" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp diagnostik" -msgid "No, only %SP%" -msgstr "Nej, kun %SP%" - -msgid "Username" -msgstr "Brugernavn" - -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Tilbage til SimpleSAMLphp installationssiden" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp er tilsyneladende ikke Konfigureret korrekt" -msgid "You have successfully logged out from all services listed above." -msgstr "Du har logget ud fra alle overnævnte services. " +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp fejl" -msgid "You are now successfully logged out from %SP%." -msgstr "Du er nu logget ud fra %SP%." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "Affiliation" -msgstr "Brugerens tilknytning til hjemmeorganisationen" +msgid "Some error occurred" +msgstr "En fejl opstod." -msgid "You have been logged out." -msgstr "Du er blevet logget ud. Tak for fordi du brugte denne tjeneste." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "State information tabt" -msgid "Return to service" -msgstr "Tilbage til service" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "State information er tabt og der er ikke muligt at gentage forspørgelsen" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation tjenesteudbyder (hosted)" +msgid "Street" +msgstr "Gade" -msgid "Remember my username" -msgstr "Husk mit brugernavn" +msgid "Submit message" +msgstr "Send besked" -msgid "Preferred language" -msgstr "Foretrukket sprog (evt. flere)" +msgid "Superfluous options in config file" +msgstr "Overflødigt valg i konfigurationsfil" msgid "Surname" msgstr "Efternavn" -msgid "The following fields was not recognized" -msgstr "Følgende felter kunne ikke tolkes" - -msgid "User ID" -msgstr "Brugernavn" - -msgid "JPEG Photo" -msgstr "JPEG-foto" - -msgid "Postal address" -msgstr "Adresse" - -msgid "ADFS SP Metadata" -msgstr "ADFS tjenesteudbyder metadata" - -msgid "In SAML 2.0 Metadata XML format:" -msgstr "I SAML 2.0 metadata xml-format:" - -msgid "Logging out of the following services:" -msgstr "Du logger ud af følgende services:" - -msgid "Labeled URI" -msgstr "Labeled URI" - -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shibboleth 1.3 identitetsudbyder (hosted)" - -msgid "Metadata" -msgstr "Metadata" +msgid "Telephone number" +msgstr "Telefonnummer" -msgid "Login" -msgstr "Login" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Institutionen har sendt en fejl. (Status koden i SAML responset var ikke succes)" -msgid "Yes, all services" -msgstr "Ja, alle services" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Autentificering blev afbrudt af brugeren" -msgid "Logged out" -msgstr "Du er logget ud" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Detaljerne herunder kan være af interesse for teknikerne / help-desken" -msgid "Postal code" -msgstr "Postnummer" +msgid "The error report has been sent to the administrators." +msgstr "Fejlrapporten er nu sendt til system-administrator" -msgid "Logging out..." -msgstr "Logger ud..." +msgid "The following fields was not recognized" +msgstr "Følgende felter kunne ikke tolkes" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 identitetsudbyder (hosted)" +msgid "The following optional fields was not found" +msgstr "Følgende valgfrie felter kunne ikke findes" -msgid "Primary affiliation" -msgstr "Primær tilknytning" +msgid "The following required fields was not found" +msgstr "Følgende obligatoriske felter kunne ikke findes " -msgid "XML metadata" -msgstr "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Siden kunne ikke findes. Sidens URL var: %URL%" -msgid "Telephone number" -msgstr "Telefonnummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Siden kunne ikke findes på grund af %REASON%. Url'en var %URL%" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Kan ikke logge ud af en eller flere services. For at sikre at alle dine sessioner er lukket skal du lukke din browser." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Oplysningerne om logout er tabt. Du bør gå tilbage til tjenesten du ønskede at logge ud af og prøve igen. Fejlen kan skyldes at oplysningerne blev forældet, da de kun gemmes i kort tid, typisk et par timer. Dette er dog længere end hvad det burde tage at logge ud, så denne fejl kan indikere en konfigurationsfejl. Hvis fejlen genopstår, bedes du kontakte tjenesteudbyderen." -msgid "Group membership" -msgstr "Gruppemedlemsskab" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Afsenderen af denne forespørgelse har ikke angivet en RelayStay parameter, der hvilket hvor der skal fortsættes" -msgid "Entitlement regarding the service" -msgstr "Specifik rolle i forhold til tjenesten" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "De afsendte værdier overholder ikke Discovery Servicens' krav" -msgid "Shib 1.3 SP Metadata" -msgstr "Shibboleth 1.3 tjenesteudbyders metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Fordi du er i debug-mode kan du se indholdet af de beskeder du sender:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Der er ikke konfigureret et password til administrationsgrænsefladen (auth.adminpassword). Opdater konfigurationen med et nyt password, der er forskelligt fra stadardpasswordet." -msgid "Certificates" -msgstr "Certifikater" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Der er en fejl i forespørgslen til siden. Grunden er: %REASON%" -msgid "Remember" -msgstr "Husk samtykke" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Der er en fejl i konfigurationen af din SimpleSAMLphp installation. Hvis du er administrator for denne server, check at din metadata konfiguration er korrekt." -msgid "Distinguished name (DN) of person's home organization" -msgstr "Din hjemmeorganisations 'distinguished name' (DN)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Denne IdP har modtaget en anmodning om single sign-on fra en tjeneste udbyder, men der opstod en fejl under behandlingen af denne anmodning." -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Du er ved at sende en besked. Tryk på 'send' for fortsætte" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Denne tjeneste er ikke tilsluttet. Check konfigurationen." -msgid "Organizational unit" -msgstr "Organisatorisk enhed" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Denne fejl skyldes formentlig en fejlkonfiguration af SimpleSAMLphp - alternativt en ukendt fejl. Kontakt administratoren af denne tjeneste og rapportér så mange detaljer som muligt om fejlen" -msgid "Local identity number" -msgstr "Lokalt identifikationsnummer" +msgid "Title" +msgstr "Titel" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shibboleth 1.3 identitetsudbyders metadata" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "For at se detaljer vedrørende SAML-entiteten, klik på entitets-headeren" -msgid "Change your home organization" -msgstr "Skift hjemmeinstitution" +msgid "Tracking number" +msgstr "" -msgid "User's password hash" -msgstr "Hash-værdi af brugerens kodeord" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Kan ikke finde metadata for %ENTITYID%" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "I SimpleSAMLphp flat-file format - brug dette hvis du også bruger SimpleSAMLphp i den anden ende;" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Kan ikke logge ud af en eller flere services. For at sikre at alle dine sessioner er lukket skal du lukke din browser." -msgid "Completed" -msgstr "Færdig" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Select configuration file to check:" -msgstr "Vælg den konfiguration som skal undersøges" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Unhandled exception" -msgid "On hold" -msgstr "I kø" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Ukendt certifikat" -msgid "ADFS Identity Provider (Hosted)" -msgstr "ADFS identitetsudbyder (hosted)" +msgid "User ID" +msgstr "Brugernavn" -msgid "Help! I don't remember my password." -msgstr "Hjælp! Jeg har glemt mit kodeord." +msgid "User's password hash" +msgstr "Hash-værdi af brugerens kodeord" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Du kan slå debug-mode fra i den globale SimpleSAMLphp-konfigurationsfil config/config.php" +msgid "Username" +msgstr "Brugernavn" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp fejl" +msgid "WS-Fed SP Demo Example" +msgstr "WS-Federation tjenesteudbyder-demo" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "En eller flere services som du er logget ind hos understøtter ikke log ou. For at sikre at alle dine forbindelser er lukket, bedes du lukke din browser." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation identitetsudbyder (remote)" -msgid "Remember me" -msgstr "Husk mig" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation tjenesteudbyder (hosted)" -msgid "Organization's legal name" -msgstr "Organisationens officielle navn" +msgid "Warning" +msgstr "" -msgid "Options missing from config file" -msgstr "Valg kan ikke behandles - se konfigurationsfil" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Svaret fra Identitetsudbydere kunne ikke accepteres" -msgid "The following optional fields was not found" -msgstr "Følgende valgfrie felter kunne ikke findes" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "En fejl opstod da denne identitetsudbyder forsøgte at sende svar" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Du kan få metadata-xml her:" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Desværre, uden korrekt brugernavn og kodeord kan du ikke få adgang til tjenesten. Måske kan help-desk på din hjemmeinstitution hjælpe dig!" -msgid "Street" -msgstr "Gade" +msgid "World" +msgstr "" -msgid "Message" -msgstr "Besked" +msgid "XML metadata" +msgstr "XML metadata" -msgid "Contact information:" -msgstr "Kontaktoplysninger" +msgid "Yes, all services" +msgstr "Ja, alle services" -msgid "Legal name" -msgstr "Officielt navn" +msgid "Yes, continue" +msgstr "Ja, jeg accepterer" -msgid "Optional fields" -msgstr "Valgfrie felter" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You have previously chosen to authenticate at" -msgstr "Du har tidligere valgt at logge ind hos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Du forsøger at tilgå Assertion Consumer Service grænsefladen uden at sende et SAML Authentication Response" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Dit kodeord blev ikke sendt - prøv igen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Fax number" -msgstr "Faxnummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Du forsøger at tilgå Single Logout grænsefladen, uden at sendet et SAML LogoutRequest eller LogoutResponse" -msgid "Shibboleth demo" -msgstr "Shibboleth-demo" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Tryk på 'send' for at fortsætte med at sende beskeden" -msgid "Error in this metadata entry" -msgstr "Fejl i denne sektion af metadata" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Du er ved at sende en besked. Tryk på 'send' for fortsætte" -msgid "Session size: %SIZE%" -msgstr "Sessionsstørrelse: %SIZE%" +msgid "You are also logged in on these services:" +msgstr "Du er også logget ud fra disse services:" -msgid "Parse" -msgstr "Parse" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Du tilgår nu et pre-produktions-system. Dette autentificeringssetup er kun til test og pre-produktion verifikation. Hvis nogen har sendt et link, som peger her og du ikke er en tester, så har du sikekrt fået et forkert lin og burde ikke være her. " -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Desværre, uden korrekt brugernavn og kodeord kan du ikke få adgang til tjenesten. Måske kan help-desk på din hjemmeinstitution hjælpe dig!" +msgid "You are now successfully logged out from %SP%." +msgstr "Du er nu logget ud fra %SP%." -msgid "ADFS Service Provider (Remote)" -msgstr "ADFS tjenesteudbyder (remote)" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Du kan få metadata-xml her:" -msgid "Choose your home organization" -msgstr "Vælg din hjemmeinstitution" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Du kan slå debug-mode fra i den globale SimpleSAMLphp-konfigurationsfil config/config.php" -msgid "Send e-mail to help desk" -msgstr "Send en e-mail til servicedesk" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Du har ikke valgt et gyldigt certifikat" -msgid "Metadata overview" -msgstr "Metadataoversigt" +msgid "You have been logged out." +msgstr "Du er blevet logget ud. Tak for fordi du brugte denne tjeneste." -msgid "Title" -msgstr "Titel" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Du har valgt %HOMEORG% som din hjemmeinstitution. Hvis dette ikke er korrekt, kan du vælge en anden." -msgid "Manager" -msgstr "Manager" +msgid "You have previously chosen to authenticate at" +msgstr "Du har tidligere valgt at logge ind hos" -msgid "Affiliation at home organization" -msgstr "Gruppemedlemskab" +msgid "You have successfully logged out from all services listed above." +msgstr "Du har logget ud fra alle overnævnte services. " -msgid "Help desk homepage" -msgstr "Servicedesk" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Dit kodeord blev ikke sendt - prøv igen." -msgid "Configuration check" -msgstr "Undersøgelse af konfiguration" +msgid "Your attributes" +msgstr "Dine oplysninger" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shibboleth 1.3 identitetsudbyder (remote)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Her er det metadata, som SimpleSAMLphp har genereret. Du kan sende det til dem du stoler i forbindelse med oprettelsen af en føderation." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Du har %remaining% tilbage af din session" -msgid "Organizational homepage" -msgstr "Hjemmeside" +msgid "[Preferred choice]" +msgstr "Foretrukket valg" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Du tilgår nu et pre-produktions-system. Dette autentificeringssetup er kun til test og pre-produktion verifikation. Hvis nogen har sendt et link, som peger her og du ikke er en tester, så har du sikekrt fået et forkert lin og burde ikke være her. " +msgid "not set" +msgstr "ikke angivet" diff --git a/locales/de/LC_MESSAGES/messages.po b/locales/de/LC_MESSAGES/messages.po index c17cead4ef..fe918eb2b4 100644 --- a/locales/de/LC_MESSAGES/messages.po +++ b/locales/de/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Keine SAML-Antwort bereitgestellt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Keine SAML Nachricht bereitgestellt" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Um diesen Dienst zu nutzen, müssen Sie sich authentifizieren. Bitte geben Sie daher unten Benutzernamen und Passwort ein." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Organisationszugehörigkeit" + +msgid "Affiliation at home organization" +msgstr "Zugehörigkeit bei der Heimatorganisation" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Ein Fehler beim Erzeugen der SAML-Anfrage ist aufgetreten." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Beim Versuch die Abmeldeanfrage zu bearbeiten ist ein Fehler aufgetreten." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Eine nicht abgefangene Code-Exception ist aufgetreten." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Da Sie sich im Debug-Modus befinden, sehen Sie den Inhalt der Nachricht, die Sie senden:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Authentifizierung abgebrochen" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Fehler in der Authentifizierungsquelle %AUTHSOURCE%. Der Grund hierfür ist: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Authentifizierung fehlgeschlagen: das von Ihrem Browser gesendete Zertifikat ist ungültig oder kann nicht gelesen werden" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Authentifizierung fehlgeschlagen: das von Ihrem Browser gesendete Zertifikat ist unbekannt" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Authentifizierung fehlgeschlagen: Ihr Browser hat kein Zertifikat gesendet" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Authentifizierungsquellenfehler" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Ungültige Anfrage" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Ungültige Anfrage an den Discovery Service" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS-Fehler" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Zertifikate" + +msgid "Change your home organization" +msgstr "Eine andere Einrichtung, von der Sie Zugangsdaten erhalten, auswählen" + +msgid "Choose home organization" +msgstr "Einrichtung auswählen" + +msgid "Choose your home organization" +msgstr "Wählen Sie die Einrichtung, von der Sie Ihre Zugangsdaten beziehen" + +msgid "Common name" +msgstr "Voller Name" + +msgid "Completed" +msgstr "abgeschlossen" + +msgid "Configuration check" +msgstr "Konfigurationsprüfung" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Konfigurations-Fehler" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Fehler beim Erzeugen der Anfrage" +msgid "Contact information:" +msgstr "Kontakt" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Ungültige Anfrage an den Discovery Service" +msgid "Converted metadata" +msgstr "Konvertierte Metadaten" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Konnte keine Authentifikationsantwort erstellen" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Ungültiges Zertifikat" +msgid "Date of birth" +msgstr "Geburtsdatum" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP-Fehler" +msgid "Debug information" +msgstr "Debug-Information" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Abmeldeinformation verloren gegangen" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Fehler beim Bearbeiten der Abmeldeanfrage" +msgid "Display name" +msgstr "Anzeigename" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Fehler beim Laden der Metadaten" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Distinguished name (DN) der Organisation" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Keine Metadaten gefunden" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Distinguished name (DN) der primären Organisationseinheit" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Kein Zugriff" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Distinguished name (DN) der Organisationseinheit" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Kein Zertifikat" +msgid "Do you want to logout from all the services above?" +msgstr "Wollen Sie sich von allen obenstehenden Diensten abmelden?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Keine Weiterleitungsinformationen" +msgid "Domain component (DC)" +msgstr "Domain-Komponente" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Statusinformationen verloren" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Die X509-Zertifikate als PEM-kodierte Dateien herunterladen." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Seite nicht gefunden" +msgid "E-mail address:" +msgstr "E-Mail-Adresse:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Passwort ist nicht gesetzt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Entweder es konnte kein Benutzer mit dem angegebenen Benutzernamen gefunden werden oder das Passwort ist falsch. Überprüfen Sie die Zugangsdaten und probieren Sie es erneut." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Fehler beim Bearbeiten der Antwort des IdP" +msgid "Enter your username and password" +msgstr "Bitte geben Sie Ihren Benutzernamen und Ihr Passwort ein" + +msgid "Entitlement regarding the service" +msgstr "Berechtigung" + +msgid "Error" +msgstr "Fehler" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Fehler beim Erzeugen der Anfrage" + +msgid "Error in this metadata entry" +msgstr "Fehler in diesem Metadateneintrag" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Fehler beim Laden der Metadaten" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Fehler beim Bearbeiten der Anfrage des Service Providers" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Fehler beim Bearbeiten der Antwort des IdP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Fehler beim Bearbeiten der Abmeldeanfrage" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Fehlermeldung vom Identity Provider erhalten" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Nicht abgefangener Ausnahmefehler" +msgid "Error report sent" +msgstr "Fehlerbericht gesendet" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Unbekanntes Zertifikat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Fehler bei der Kommunikation mit dem CAS-Server." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Authentifizierung abgebrochen" +msgid "Explain what you did when this error occurred..." +msgstr "Erläutern Sie, wodurch der Fehler auftrat..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Benutzername oder Passwort falsch." +msgid "Fax number" +msgstr "Faxnummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Sie haben auf die Assertion-Consumer-Service-Schnittstelle zugegriffen, aber keine SAML Authentifizierungsantwort bereitgestellt." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Fehler in der Authentifizierungsquelle %AUTHSOURCE%. Der Grund hierfür ist: %REASON%" +msgid "Given name" +msgstr "Vorname" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "In der Anfrage dieser Seite trat ein Fehler auf, der Grund ist: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Zurück zur SimpleSAMLphp Installationsseite" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Fehler bei der Kommunikation mit dem CAS-Server." +msgid "Go back to the file list" +msgstr "Gehe zurück zur Dateiliste" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp scheint falsch konfiguriert zu sein." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Ein Fehler beim Erzeugen der SAML-Anfrage ist aufgetreten." +msgid "Help desk homepage" +msgstr "Seite des Helpdesks" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Die Parameter, die an den Discovery Service geschickt wurden, entsprachen nicht der Spezifikation." +msgid "Help! I don't remember my password." +msgstr "Hilfe, ich habe mein Passwort vergessen." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Beim Versuch des Identity Providers eine Authentifikationsantwort zu erstellen trat ein Fehler auf." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Hier finden Sie die Metadaten, die SimpleSAMLphp für Sie erzeugt hat. Sie können dieses Metadatendokument zu Partnern schicken, denen Sie vertrauen, um eine vertrauensbasierte Föderation aufzusetzen." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Authentifizierung fehlgeschlagen: das von Ihrem Browser gesendete Zertifikat ist ungültig oder kann nicht gelesen werden" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Hallo, das ist die Statusseite von SimpleSAMLphp. Hier können Sie sehen, ob Ihre Sitzung ausgelaufen ist, wie lange die Sitzung noch gültig ist und alle Attribute Ihrer Sitzung." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP ist die gewählte Benutzerdatenbank. Wenn Sie versuchen sich anzumelden, muss auf diese LDAP-Datenbank zugegriffen werden, dabei ist dieses mal ein Fehler aufgetreten." +msgid "Home organization domain name" +msgstr "Domain-Name der Heimatorganisation" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Die Information des aktuellen Abmeldevorgangs ist verloren gegangen. Bitte rufen Sie den Dienst auf, vom dem Sie sich abmelden wollten und versuchen Sie dort das Abmelden erneut. Dieser Fehler tritt auf, wenn die Abmeldeanfrage abläuft, da diese nur eine gewisse Zeit (üblicherweise ein paar Stunden) zwischengespeichert wird. Das sollte im normalen Betrieb ausreichend sein, da ein Abmeldevorgang nicht so lange dauert. Dieser Fehler kann also auch ein Anzeichen sein, dass ein Konfigurationsfehler vorliegt. Tritt dieser Fehler wiederholt auf, wenden Sie sich bitte an den Dienst (Service Provider), vom dem Sie sich abmelden wollen." +msgid "Home postal address" +msgstr "Privatanschrift" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Beim Versuch die Abmeldeanfrage zu bearbeiten ist ein Fehler aufgetreten." +msgid "Home telephone" +msgstr "Private Telefonnummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Diese Installation von SimpleSAMLphp ist falsch konfiguriert. Falls Sie der Administrator dieses Dienstes sind, sollten Sie sicherstellen, dass die Metadatenkonfiguration korrekt ist." +msgid "How to get help" +msgstr "Wie man Hilfe bekommt" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Keine Metadaten für %ENTITYID% gefunden" +msgid "Identity assurance profile" +msgstr "Identity Assurance Profil" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Dieser Endpunkt ist nicht aktiviert. Überprüfen Sie die Aktivierungsoptionen in der SimpleSAMLphp-Konfiguration." +msgid "Identity number assigned by public authorities" +msgstr "Norwegische Personenkennziffer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Authentifizierung fehlgeschlagen: Ihr Browser hat kein Zertifikat gesendet" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Falls Sie diesen Fehler melden, teilen Sie bitte ebenfalls diese Tracking-ID mit, wodurch es dem Administrator möglich ist, Ihre Sitzung in den Logs zu finden:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Der Initiator dieser Anfrage hat keinen Weiterleitungsparameter bereitgestellt, der Auskunft gibt, wohin Sie weitergeleitet werden sollen." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Im SAML 2.0 Metadaten-XML Format:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Die Statusinformationen gingen verloren und die Anfrage kann nicht neu gestartet werden" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "Im SimpleSAMLphp flat-file Format - verwenden Sie das, falls auf der Gegenseite eine SimpleSAMLphp-Entität zum Einsatz kommt:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Die gewünschte Seite konnte nicht gefunden werden, die aufgerufene URL war %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Benutzername oder Passwort falsch." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Die gewünschte Seite konnte nicht gefunden werden. Der Grund ist: %REASON% Die aufgerufene URL war %URL%" +msgid "Incorrect username or password." +msgstr "Falscher Benutzername oder Passwort." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Sie benutzen noch immer das Standardpasswort, bitte ändern Sie die Konfiguration (auth.adminpassword)." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Sie haben kein gültiges Zertifikat benutzt." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Ungültiges Zertifikat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Die Antwort des Identitiy Provider konnte nicht akzeptiert werden." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Dieser Identity Provider hat eine Authentifizierungsanfrage von einem Service Provider erhalten, aber es ist ein Fehler beim Bearbeiten dieser Anfrage aufgetreten." +msgid "JPEG Photo" +msgstr "JPEG-Foto" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Der Identity Provider gab einen Fehler zurück (Der Statuscode in der SAML-Antwort war nicht \"Erfolg\")" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP-Fehler" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Sie haben auf die SingleLogoutService-Schnittstelle zugegriffen, aber keine SAML Abmeldeanfrage oder Abmeldeantwort bereitgestellt." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP ist die gewählte Benutzerdatenbank. Wenn Sie versuchen sich anzumelden, muss auf diese LDAP-Datenbank zugegriffen werden, dabei ist dieses mal ein Fehler aufgetreten." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Eine nicht abgefangene Code-Exception ist aufgetreten." +msgid "Labeled URI" +msgstr "URI mit zusätzlicher Kennzeichnung" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Authentifizierung fehlgeschlagen: das von Ihrem Browser gesendete Zertifikat ist unbekannt" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Die Authentifizierung wurde durch den Benutzer abgebrochen" +msgid "Legal name" +msgstr "Offizieller Name" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Entweder es konnte kein Benutzer mit dem angegebenen Benutzernamen gefunden werden oder das Passwort ist falsch. Überprüfen Sie die Zugangsdaten und probieren Sie es erneut." +msgid "Local identity number" +msgstr "Lokale Identitätsnummer" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Hallo, das ist die Statusseite von SimpleSAMLphp. Hier können Sie sehen, ob Ihre Sitzung ausgelaufen ist, wie lange die Sitzung noch gültig ist und alle Attribute Ihrer Sitzung." +msgid "Locality" +msgstr "Ort" -msgid "Logout" -msgstr "Abmelden" +msgid "Logged out" +msgstr "Abgemeldet" -msgid "Your attributes" -msgstr "Ihre Attribute" +msgid "Logging out of the following services:" +msgstr "Melde Sie von den folgenden Diensten ab:" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Ihre Sitzung ist noch für %remaining% Sekunden gültig." +msgid "Logging out..." +msgstr "Abmeldung läuft..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Bitte wählen Sie den Identity Provider, bei dem Sie sich authentifizieren möchten:" +msgid "Login" +msgstr "Anmelden" -msgid "Remember my choice" -msgstr "Meine Auswahl merken" +msgid "Login at" +msgstr "Login bei" -msgid "Select" -msgstr "Auswahl" +msgid "Logout" +msgstr "Abmelden" -msgid "Select your identity provider" -msgstr "Wählen Sie Ihren Identity Provider" +msgid "Logout failed" +msgstr "Abmeldung fehlgeschlagen" -msgid "Sending message" -msgstr "Sende Nachricht" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Abmeldeinformation verloren gegangen" -msgid "Yes, continue" -msgstr "Ja, ich stimme zu" +msgid "Mail" +msgstr "E-Mail-Adresse" -msgid "Debug information" -msgstr "Debug-Information" +msgid "Manager" +msgstr "Manager/in" -msgid "E-mail address:" -msgstr "E-Mail-Adresse:" +msgid "Message" +msgstr "Nachricht" -msgid "Explain what you did when this error occurred..." -msgstr "Erläutern Sie, wodurch der Fehler auftrat..." +msgid "Metadata" +msgstr "Metadaten" -msgid "How to get help" -msgstr "Wie man Hilfe bekommt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Keine Metadaten gefunden" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Falls Sie diesen Fehler melden, teilen Sie bitte ebenfalls diese Tracking-ID mit, wodurch es dem Administrator möglich ist, Ihre Sitzung in den Logs zu finden:" +msgid "Metadata overview" +msgstr "Metadatenüberblick" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Geben Sie optional eine E-Mail-Adresse an, so dass der Administrator Sie bei etwaigen Rückfragen kontaktieren kann:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "Fehler melden" +msgid "Mobile" +msgstr "Mobiltelefon" -msgid "Send error report" -msgstr "Fehlerbericht absenden" +msgid "Next" +msgstr "Weiter" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Die unten angegebene Debug-Information kann für den Administrator oder den Helpdesk von Nutzen sein:" +msgid "Nickname" +msgstr "Spitzname" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Dieser Fehler ist wahrscheinlich auf Grund eines unvorhergesehenen Verhaltens oder einer Fehlkonfiguration von SimpleSAMLphp aufgetreten. Kontaktieren Sie bitte den Administrator dieses Dienstes und teilen die obige Fehlermeldung mit." +msgid "No" +msgstr "Nein" -msgid "[Preferred choice]" -msgstr "[Bevorzugte Auswahl]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Keine Weiterleitungsinformationen" -msgid "Person's principal name at home organization" -msgstr "Persönliche ID bei der Heimatorganisation" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Keine SAML Nachricht bereitgestellt" -msgid "Superfluous options in config file" -msgstr "Überflüssige Optionen in der Konfigurationsdatei" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "Mobiltelefon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Keine SAML-Antwort bereitgestellt" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Service Provider (gehosted)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Kein Zugriff" -msgid "Display name" -msgstr "Anzeigename" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Kein Zertifikat" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP Metadaten" +msgid "No errors found." +msgstr "Keine Fehler gefunden." + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Nein" + +msgid "No, only %SP%" +msgstr "Nein, nur %SP%" msgid "Notices" msgstr "Anmerkungen" -msgid "Home telephone" -msgstr "Private Telefonnummer" +msgid "On hold" +msgstr "In der Warteschleife" -msgid "Service Provider" -msgstr "Service Provider" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Einer oder mehrere Dienste an denen Sie angemeldet sind, unterstützen keine Abmeldung. Um sicherzustellen, dass Sie abgemeldet sind, schließen Sie bitte Ihren Webbrowser." + +msgid "Optional fields" +msgstr "Optionale Felder" -msgid "Incorrect username or password." -msgstr "Falscher Benutzername oder Passwort." +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Geben Sie optional eine E-Mail-Adresse an, so dass der Administrator Sie bei etwaigen Rückfragen kontaktieren kann:" -msgid "Submit message" -msgstr "Nachricht senden" +msgid "Options missing from config file" +msgstr "Optionen, die in der Konfigurationsdatei fehlen" -msgid "Locality" -msgstr "Ort" +msgid "Organization" +msgstr "Organisation" -msgid "The following required fields was not found" -msgstr "Die folgenden notwendigen Felder wurden nicht gefunden" +msgid "Organization name" +msgstr "Name der Organisation" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Die X509-Zertifikate als PEM-kodierte Dateien herunterladen." +msgid "Organization's legal name" +msgstr "Name der Körperschaft" + +msgid "Organizational homepage" +msgstr "Homepage der Organisation" msgid "Organizational number" msgstr "Firmennummer nach dem Norwegischen Firmenregister" -msgid "Post office box" -msgstr "Postfach" +msgid "Organizational unit" +msgstr "Organisationseinheit" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Um diesen Dienst zu nutzen, müssen Sie sich authentifizieren. Bitte geben Sie daher unten Benutzernamen und Passwort ein." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Seite nicht gefunden" -msgid "Error" -msgstr "Fehler" +msgid "Parse" +msgstr "Parse" -msgid "Next" -msgstr "Weiter" +msgid "Password" +msgstr "Passwort" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Distinguished name (DN) der Organisationseinheit" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Passwort ist nicht gesetzt" -msgid "Converted metadata" -msgstr "Konvertierte Metadaten" +msgid "Persistent pseudonymous ID" +msgstr "Persistente pseudonyme ID" -msgid "Mail" -msgstr "E-Mail-Adresse" +msgid "Person's principal name at home organization" +msgstr "Persönliche ID bei der Heimatorganisation" -msgid "No, cancel" -msgstr "Nein" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Bitte wählen Sie den Identity Provider, bei dem Sie sich authentifizieren möchten:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Sie haben %HOMEORG% als Ihre Einrichtung gewählt, können diese Auswahl aber noch ändern." +msgid "Post office box" +msgstr "Postfach" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Distinguished name (DN) der primären Organisationseinheit" +msgid "Postal address" +msgstr "Anschrift" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Um sich Details für eine SAML-Entität anzusehen, klicken Sie auf die Kopfzeile der SAML-Entität." +msgid "Postal code" +msgstr "Postleitzahl" -msgid "Enter your username and password" -msgstr "Bitte geben Sie Ihren Benutzernamen und Ihr Passwort ein" +msgid "Preferred language" +msgstr "Bevorzugte Sprache" -msgid "Login at" -msgstr "Login bei" +msgid "Primary affiliation" +msgstr "Primäre Organisationszugehörigkeit" -msgid "No" -msgstr "Nein" +msgid "Private information elements" +msgstr "Private Informationselemente" -msgid "Home postal address" -msgstr "Privatanschrift" +msgid "Remember" +msgstr "Zustimmung merken" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP Demo Beispiel" +msgid "Remember my choice" +msgstr "Meine Auswahl merken" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 Identity Provider (entfernt)" +msgid "Report errors" +msgstr "Fehler melden" -msgid "Do you want to logout from all the services above?" -msgstr "Wollen Sie sich von allen obenstehenden Diensten abmelden?" +msgid "Required fields" +msgstr "Notwendige Felder" -msgid "Given name" -msgstr "Vorname" +msgid "Return to service" +msgstr "Zum Dienst zurückkehren" -msgid "Identity assurance profile" -msgstr "Identity Assurance Profil" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Identity Provider (gehosted)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 Identity Provider (entfernt)" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP Demo Beispiel" -msgid "Organization name" -msgstr "Name der Organisation" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Sie sind dabei eine Nachricht zu senden. Klicken Sie auf den \"Nachricht senden\"-Knopf um fortzufahren." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP Metadaten" -msgid "Home organization domain name" -msgstr "Domain-Name der Heimatorganisation" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Service Provider (gehosted)" -msgid "Go back to the file list" -msgstr "Gehe zurück zur Dateiliste" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Fehlerbericht gesendet" +msgid "Select" +msgstr "Auswahl" -msgid "Common name" -msgstr "Voller Name" +msgid "Select configuration file to check:" +msgstr "Wählen Sie die Konfigurationsdatei, die geprüft werden soll:" -msgid "Logout failed" -msgstr "Abmeldung fehlgeschlagen" +msgid "Select your identity provider" +msgstr "Wählen Sie Ihren Identity Provider" -msgid "Identity number assigned by public authorities" -msgstr "Norwegische Personenkennziffer" +msgid "Send e-mail to help desk" +msgstr "E-Mail an den Helpdesk senden" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation Identity Provider (entfernt)" +msgid "Send error report" +msgstr "Fehlerbericht absenden" -msgid "Some error occurred" -msgstr "Es ist ein Fehler aufgetreten" +msgid "Sending message" +msgstr "Sende Nachricht" -msgid "Organization" -msgstr "Organisation" +msgid "Service Provider" +msgstr "Service Provider" -msgid "Choose home organization" -msgstr "Einrichtung auswählen" +msgid "Session size: %SIZE%" +msgstr "Größe der Sitzung: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Persistente pseudonyme ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metadaten" -msgid "No errors found." -msgstr "Keine Fehler gefunden." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Identity Provider (gehosted)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Service Provider (gehosted)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Identity Provider (entfernt)" -msgid "Required fields" -msgstr "Notwendige Felder" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metadaten" -msgid "Domain component (DC)" -msgstr "Domain-Komponente" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Service Provider (gehosted)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 Service Provider (entfernt)" -msgid "Password" -msgstr "Passwort" - -msgid "Nickname" -msgstr "Spitzname" - -msgid "The error report has been sent to the administrators." -msgstr "Der Fehlerbericht wurde an den Administrator gesandt." - -msgid "Date of birth" -msgstr "Geburtsdatum" - -msgid "Private information elements" -msgstr "Private Informationselemente" - -msgid "You are also logged in on these services:" -msgstr "Sie sind auch auf diesen Diensten angemeldet:" +msgid "Shibboleth demo" +msgstr "Shibboleth Demo" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp-Diagnose" -msgid "No, only %SP%" -msgstr "Nein, nur %SP%" - -msgid "Username" -msgstr "Benutzername" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp scheint falsch konfiguriert zu sein." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Zurück zur SimpleSAMLphp Installationsseite" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp-Fehler" -msgid "You have successfully logged out from all services listed above." -msgstr "Sie haben sich erfolgreich von allen obenstehenden Diensten abgemeldet." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Sie wurden erfolgreich von %SP% abgemeldet" +msgid "Some error occurred" +msgstr "Es ist ein Fehler aufgetreten" -msgid "Affiliation" -msgstr "Organisationszugehörigkeit" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Statusinformationen verloren" -msgid "You have been logged out." -msgstr "Sie wurden abgemeldet. Danke, dass Sie diesen Dienst verwendet haben." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Die Statusinformationen gingen verloren und die Anfrage kann nicht neu gestartet werden" -msgid "Return to service" -msgstr "Zum Dienst zurückkehren" +msgid "Street" +msgstr "Straße" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation Service Provider (gehosted)" +msgid "Submit message" +msgstr "Nachricht senden" -msgid "Preferred language" -msgstr "Bevorzugte Sprache" +msgid "Superfluous options in config file" +msgstr "Überflüssige Optionen in der Konfigurationsdatei" msgid "Surname" msgstr "Nachname" -msgid "The following fields was not recognized" -msgstr "Die folgenden Felder wurden nicht erkannt" - -msgid "User ID" -msgstr "Benutzer-ID" +msgid "Telephone number" +msgstr "Telefonnummer" -msgid "JPEG Photo" -msgstr "JPEG-Foto" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Der Identity Provider gab einen Fehler zurück (Der Statuscode in der SAML-Antwort war nicht \"Erfolg\")" -msgid "Postal address" -msgstr "Anschrift" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Die Authentifizierung wurde durch den Benutzer abgebrochen" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Im SAML 2.0 Metadaten-XML Format:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Die unten angegebene Debug-Information kann für den Administrator oder den Helpdesk von Nutzen sein:" -msgid "Logging out of the following services:" -msgstr "Melde Sie von den folgenden Diensten ab:" +msgid "The error report has been sent to the administrators." +msgstr "Der Fehlerbericht wurde an den Administrator gesandt." -msgid "Labeled URI" -msgstr "URI mit zusätzlicher Kennzeichnung" +msgid "The following fields was not recognized" +msgstr "Die folgenden Felder wurden nicht erkannt" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Identity Provider (gehosted)" +msgid "The following optional fields was not found" +msgstr "Die folgenden optionalen Felder wurden nicht gefunden" -msgid "Metadata" -msgstr "Metadaten" +msgid "The following required fields was not found" +msgstr "Die folgenden notwendigen Felder wurden nicht gefunden" -msgid "Login" -msgstr "Anmelden" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Die gewünschte Seite konnte nicht gefunden werden, die aufgerufene URL war %URL%" -msgid "Yes, all services" -msgstr "Ja, alle Dienste" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Die gewünschte Seite konnte nicht gefunden werden. Der Grund ist: %REASON% Die aufgerufene URL war %URL%" -msgid "Logged out" -msgstr "Abgemeldet" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Die Information des aktuellen Abmeldevorgangs ist verloren gegangen. Bitte rufen Sie den Dienst auf, vom dem Sie sich abmelden wollten und versuchen Sie dort das Abmelden erneut. Dieser Fehler tritt auf, wenn die Abmeldeanfrage abläuft, da diese nur eine gewisse Zeit (üblicherweise ein paar Stunden) zwischengespeichert wird. Das sollte im normalen Betrieb ausreichend sein, da ein Abmeldevorgang nicht so lange dauert. Dieser Fehler kann also auch ein Anzeichen sein, dass ein Konfigurationsfehler vorliegt. Tritt dieser Fehler wiederholt auf, wenden Sie sich bitte an den Dienst (Service Provider), vom dem Sie sich abmelden wollen." -msgid "Postal code" -msgstr "Postleitzahl" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Der Initiator dieser Anfrage hat keinen Weiterleitungsparameter bereitgestellt, der Auskunft gibt, wohin Sie weitergeleitet werden sollen." -msgid "Logging out..." -msgstr "Abmeldung läuft..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Die Parameter, die an den Discovery Service geschickt wurden, entsprachen nicht der Spezifikation." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Identity Provider (gehosted)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Primäre Organisationszugehörigkeit" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Sie benutzen noch immer das Standardpasswort, bitte ändern Sie die Konfiguration (auth.adminpassword)." -msgid "XML metadata" -msgstr "XML-Metadaten" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "In der Anfrage dieser Seite trat ein Fehler auf, der Grund ist: %REASON%" -msgid "Telephone number" -msgstr "Telefonnummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Diese Installation von SimpleSAMLphp ist falsch konfiguriert. Falls Sie der Administrator dieses Dienstes sind, sollten Sie sicherstellen, dass die Metadatenkonfiguration korrekt ist." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Das Abmelden von einem oder mehreren Diensten schlug fehl. Um sicherzustellen, dass alle Ihre Sitzungen geschlossen sind, wird Ihnen empfohlen, Ihren Webbrowser zu schließen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Dieser Identity Provider hat eine Authentifizierungsanfrage von einem Service Provider erhalten, aber es ist ein Fehler beim Bearbeiten dieser Anfrage aufgetreten." -msgid "Entitlement regarding the service" -msgstr "Berechtigung" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Dieser Endpunkt ist nicht aktiviert. Überprüfen Sie die Aktivierungsoptionen in der SimpleSAMLphp-Konfiguration." -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Metadaten" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Dieser Fehler ist wahrscheinlich auf Grund eines unvorhergesehenen Verhaltens oder einer Fehlkonfiguration von SimpleSAMLphp aufgetreten. Kontaktieren Sie bitte den Administrator dieses Dienstes und teilen die obige Fehlermeldung mit." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Da Sie sich im Debug-Modus befinden, sehen Sie den Inhalt der Nachricht, die Sie senden:" +msgid "Title" +msgstr "Titel" -msgid "Certificates" -msgstr "Zertifikate" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Um sich Details für eine SAML-Entität anzusehen, klicken Sie auf die Kopfzeile der SAML-Entität." -msgid "Remember" -msgstr "Zustimmung merken" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Distinguished name (DN) der Organisation" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Keine Metadaten für %ENTITYID% gefunden" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Sie sind dabei eine Nachricht zu senden. Klicken Sie auf den \"Nachricht senden\"-Link um fortzufahren." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Das Abmelden von einem oder mehreren Diensten schlug fehl. Um sicherzustellen, dass alle Ihre Sitzungen geschlossen sind, wird Ihnen empfohlen, Ihren Webbrowser zu schließen." -msgid "Organizational unit" -msgstr "Organisationseinheit" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Lokale Identitätsnummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Nicht abgefangener Ausnahmefehler" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Metadaten" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Unbekanntes Zertifikat" -msgid "Change your home organization" -msgstr "Eine andere Einrichtung, von der Sie Zugangsdaten erhalten, auswählen" +msgid "User ID" +msgstr "Benutzer-ID" msgid "User's password hash" msgstr "Passwort-Hash des Benutzers" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "Im SimpleSAMLphp flat-file Format - verwenden Sie das, falls auf der Gegenseite eine SimpleSAMLphp-Entität zum Einsatz kommt:" - -msgid "Completed" -msgstr "abgeschlossen" - -msgid "Select configuration file to check:" -msgstr "Wählen Sie die Konfigurationsdatei, die geprüft werden soll:" - -msgid "On hold" -msgstr "In der Warteschleife" +msgid "Username" +msgstr "Benutzername" -msgid "Help! I don't remember my password." -msgstr "Hilfe, ich habe mein Passwort vergessen." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP Demo Beispiel" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Sie können den Debug-Modus in der globalen SimpleSAMLphp-Konfigurationsdatei config/config.php ausschalten." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation Identity Provider (entfernt)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp-Fehler" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation Service Provider (gehosted)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Einer oder mehrere Dienste an denen Sie angemeldet sind, unterstützen keine Abmeldung. Um sicherzustellen, dass Sie abgemeldet sind, schließen Sie bitte Ihren Webbrowser." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Name der Körperschaft" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Die Antwort des Identitiy Provider konnte nicht akzeptiert werden." -msgid "Options missing from config file" -msgstr "Optionen, die in der Konfigurationsdatei fehlen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Beim Versuch des Identity Providers eine Authentifikationsantwort zu erstellen trat ein Fehler auf." -msgid "The following optional fields was not found" -msgstr "Die folgenden optionalen Felder wurden nicht gefunden" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Ohne Benutzername und Passwort können Sie sich nicht authentifizieren und somit den Dienst nicht nutzen. Möglicherweise kann Ihnen jemand in Ihrer Einrichtung helfen. Kontaktieren Sie dazu einen Ansprechpartner oder den Helpdesk Ihrer Einrichtung." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Sie können das Metadaten-XML auf dieser URL erhalten::" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Straße" +msgid "XML metadata" +msgstr "XML-Metadaten" -msgid "Message" -msgstr "Nachricht" +msgid "Yes, all services" +msgstr "Ja, alle Dienste" -msgid "Contact information:" -msgstr "Kontakt" +msgid "Yes, continue" +msgstr "Ja, ich stimme zu" -msgid "Legal name" -msgstr "Offizieller Name" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Optionale Felder" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Sie haben auf die Assertion-Consumer-Service-Schnittstelle zugegriffen, aber keine SAML Authentifizierungsantwort bereitgestellt." -msgid "You have previously chosen to authenticate at" -msgstr "Sie haben sich zu einem früheren Zeitpunkt entschieden, sich zu authentifizieren bei " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Sie haben etwas an die Anmeldeseite geschickt, aber aus irgendeinem Grund ist das Passwort nicht übermittelt worden. Bitte versuchen Sie es erneut." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Sie haben auf die SingleLogoutService-Schnittstelle zugegriffen, aber keine SAML Abmeldeanfrage oder Abmeldeantwort bereitgestellt." -msgid "Fax number" -msgstr "Faxnummer" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Sie sind dabei eine Nachricht zu senden. Klicken Sie auf den \"Nachricht senden\"-Knopf um fortzufahren." -msgid "Shibboleth demo" -msgstr "Shibboleth Demo" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Sie sind dabei eine Nachricht zu senden. Klicken Sie auf den \"Nachricht senden\"-Link um fortzufahren." -msgid "Error in this metadata entry" -msgstr "Fehler in diesem Metadateneintrag" +msgid "You are also logged in on these services:" +msgstr "Sie sind auch auf diesen Diensten angemeldet:" -msgid "Session size: %SIZE%" -msgstr "Größe der Sitzung: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Sie greifen jetzt auf ein System im Pilotbetrieb zu. Diese Authentifizierungskonfiguration dient nur zum Testen und zur Überprüfung des Pilotbetriebes. Falls Ihnen jemand einen Link gesendet hat, der Sie hierher geführt hat und Sie sind kein Tester, so war der Link vermutlich falsch und Sie sollten diese Seite verlassen. " -msgid "Parse" -msgstr "Parse" +msgid "You are now successfully logged out from %SP%." +msgstr "Sie wurden erfolgreich von %SP% abgemeldet" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Ohne Benutzername und Passwort können Sie sich nicht authentifizieren und somit den Dienst nicht nutzen. Möglicherweise kann Ihnen jemand in Ihrer Einrichtung helfen. Kontaktieren Sie dazu einen Ansprechpartner oder den Helpdesk Ihrer Einrichtung." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Sie können das Metadaten-XML auf dieser URL erhalten::" -msgid "Choose your home organization" -msgstr "Wählen Sie die Einrichtung, von der Sie Ihre Zugangsdaten beziehen" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Sie können den Debug-Modus in der globalen SimpleSAMLphp-Konfigurationsdatei config/config.php ausschalten." -msgid "Send e-mail to help desk" -msgstr "E-Mail an den Helpdesk senden" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Sie haben kein gültiges Zertifikat benutzt." -msgid "Metadata overview" -msgstr "Metadatenüberblick" +msgid "You have been logged out." +msgstr "Sie wurden abgemeldet. Danke, dass Sie diesen Dienst verwendet haben." -msgid "Title" -msgstr "Titel" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Sie haben %HOMEORG% als Ihre Einrichtung gewählt, können diese Auswahl aber noch ändern." -msgid "Manager" -msgstr "Manager/in" +msgid "You have previously chosen to authenticate at" +msgstr "Sie haben sich zu einem früheren Zeitpunkt entschieden, sich zu authentifizieren bei " -msgid "Affiliation at home organization" -msgstr "Zugehörigkeit bei der Heimatorganisation" +msgid "You have successfully logged out from all services listed above." +msgstr "Sie haben sich erfolgreich von allen obenstehenden Diensten abgemeldet." -msgid "Help desk homepage" -msgstr "Seite des Helpdesks" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Sie haben etwas an die Anmeldeseite geschickt, aber aus irgendeinem Grund ist das Passwort nicht übermittelt worden. Bitte versuchen Sie es erneut." -msgid "Configuration check" -msgstr "Konfigurationsprüfung" +msgid "Your attributes" +msgstr "Ihre Attribute" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Identity Provider (entfernt)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Hier finden Sie die Metadaten, die SimpleSAMLphp für Sie erzeugt hat. Sie können dieses Metadatendokument zu Partnern schicken, denen Sie vertrauen, um eine vertrauensbasierte Föderation aufzusetzen." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Ihre Sitzung ist noch für %remaining% Sekunden gültig." -msgid "Organizational homepage" -msgstr "Homepage der Organisation" +msgid "[Preferred choice]" +msgstr "[Bevorzugte Auswahl]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Sie greifen jetzt auf ein System im Pilotbetrieb zu. Diese Authentifizierungskonfiguration dient nur zum Testen und zur Überprüfung des Pilotbetriebes. Falls Ihnen jemand einen Link gesendet hat, der Sie hierher geführt hat und Sie sind kein Tester, so war der Link vermutlich falsch und Sie sollten diese Seite verlassen. " +msgid "not set" +msgstr "" diff --git a/locales/el/LC_MESSAGES/messages.po b/locales/el/LC_MESSAGES/messages.po index 830a94ab17..43c114f6a9 100644 --- a/locales/el/LC_MESSAGES/messages.po +++ b/locales/el/LC_MESSAGES/messages.po @@ -1,767 +1,840 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Σφάλμα κατά την πρόσβαση στη διεπαφή AssertionConsumerService" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Σφάλμα κατά την πρόσβαση στη διεπαφή SingleLogoutService" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Μια υπηρεσία έχει ζητήσει την ταυτοποίησή σας. Παρακαλώ εισάγετε το όνομα χρήστη και τον κωδικό πρόσβασής σας στην παρακάτω φόρμα." + +msgid "ADFS IdP Metadata" +msgstr "Μεταδεδομένα Παρόχου Ταυτότητας ADFS" + +msgid "ADFS Identity Provider (Hosted)" +msgstr "Πάροχος Ταυτότητας ADFS (Φιλοξενούμενος)" + +msgid "ADFS SP Metadata" +msgstr "Μεταδεδομένα Παρόχου Υπηρεσιών ADFS" + +msgid "ADFS Service Provider (Remote)" +msgstr "Πάροχος Υπηρεσιών ADFS (Απομακρυσμένος)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Ιδιότητα/ες" + +msgid "Affiliation at home organization" +msgstr "Ιδιότητα ανά διαχειριστική περιοχή (administrative domain)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Παρουσιάστηκε σφάλμα κατά τη δημιουργία του αιτήματος SAML." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Παρουσιαστήκε σφάλμα κατά την επεξεργασία του αιτήματος αποσύνδεσης." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Παρουσιάστηκε ανεπίλυτη εξαίρεση" + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Επειδή είστε σε κατάσταση εντοπισμού σφαλμάτων (debug), μπορείτε να δείτε το περιεχόμενο του μηνύματος που στέλνετε:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Η ταυτοποίηση ματαιώθηκε" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Παρουσιάστηκε σφάλμα κατά την επικοινωνία με την πηγή ταυτοποίησης %AUTHSOURCE%: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Η ταυτοποίηση απέτυχε: Το πιστοποιητικό που έστειλε το πρόγραμμα περιήγησης ιστού που χρησιμοποιείτε δεν είναι έγκυρο ή δεν ήταν δυνατή η ανάγνωσή του." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Η ταυτοποίηση απέτυχε: Το πιστοποιητικό που έστειλε το πρόγραμμα περιήγησης ιστού που χρησιμοποιείτε δεν ήταν δυνατό να αναγνωριστεί." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Η ταυτοποίηση απέτυχε: Το πρόγραμμα περιήγησης ιστού που χρησιμοποιείτε δεν έστειλε πιστοποιητικό." #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Σφάλμα με την πηγή ταυτοποίησης" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Εσφαλμένο αίτημα" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Εσφαλμένο αίτημα προς την υπηρεσία ανεύρεσης παρόχου ταυτότητας" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "Σφάλμα CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "Δεν είναι δυνατή η ανάκτηση δεδομένων συνεδρίας" + +msgid "Certificates" +msgstr "Πιστοποιητικά" + +msgid "Change your home organization" +msgstr "Αλλαγή οικείου φορέα" + +msgid "Choose home organization" +msgstr "Επιλογή οικείου φορέα" + +msgid "Choose your home organization" +msgstr "Επιλογή οικείου φορέα" + +msgid "Common name" +msgstr "Κοινό όνομα (CN)" + +msgid "Completed" +msgstr "Ολοκληρώθηκε" + +msgid "Configuration check" +msgstr "Έλεγχος ρυθμίσεων" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Σφάλμα ρυθμίσεων" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Σφάλμα κατά τη δημιουργία αιτήματος" +msgid "Contact information:" +msgstr "Στοιχεία επικοινωνίας:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Εσφαλμένο αίτημα προς την υπηρεσία ανεύρεσης παρόχου ταυτότητας" +msgid "Converted metadata" +msgstr "Μετατραπέντα μεταδεδομένα" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Δεν ήταν δυνατή η δημιουργία απόκρισης στο αίτημα ταυτοποίησης" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Μη έγκυρο πιστοποιητικό" +msgid "Date of birth" +msgstr "Ημερομηνία γέννησης" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Σφάλμα LDAP" +msgid "Debug information" +msgstr "Πληροφορίες εντοπισμού σφαλμάτων" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Σφάλμα αποσύνδεσης" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Σφάλμα κατά τη διαδικασία αποσύνδεσης" +msgid "Display name" +msgstr "Εμφανιζόμενο όνομα" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 -msgid "Cannot retrieve session data" -msgstr "Δεν είναι δυνατή η ανάκτηση δεδομένων συνεδρίας" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Διακεκριμένο όνομα (DN) οικείου οργανισμού" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Σφάλμα κατά τη φόρτωση μεταδεδομένων" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Διακεκριμένο όνομα (DN) κύριας οργανωτικής μονάδας" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Δεν βρέθηκαν μεταδεδομένα" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Διακεκριμένο όνομα (DN) οικείας οργανωτικής μονάδας" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Σφάλμα κατά την πρόσβαση" +msgid "Do you want to logout from all the services above?" +msgstr "Επιθυμείτε να αποσυνδεθείτε από όλες τις παραπάνω υπηρεσίες;" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Δεν υπάρχει πιστοποιητικό" +msgid "Domain component (DC)" +msgstr "Συστατικό Τομέα (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Σφάλμα παραμέτρου 'RelayState'" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Λήψη πιστοποιητικών X.509 σε κωδικοποίηση PEM." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Δεν βρέθηκαν πληροφορίες σχετικά με την κατάσταση του αιτήματος" +msgid "E-mail address:" +msgstr "Email:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Η σελίδα δεν βρέθηκε" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Ο συνδυασμός ονόματος χρήστη και κωδικού πρόσβασης δεν είναι σωστός. Παρακαλώ ελέγξτε την ορθότητα των στοιχείων σας και προσπαθήστε ξανά." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Σφάλμα κωδικού πρόσβασης" +msgid "Enter your username and password" +msgstr "Εισάγετε όνομα χρήστη και κωδικό πρόσβασης" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Εσφαλμένη απόκριση από τον πάροχο ταυτότητας" +msgid "Entitlement regarding the service" +msgstr "Δικαιώματα πρόσβασης στην υπηρεσία" + +msgid "Error" +msgstr "Σφάλμα" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Σφάλμα κατά τη δημιουργία αιτήματος" + +msgid "Error in this metadata entry" +msgstr "Σφάλμα σε αυτή την καταχώρηση μεταδεδομένων" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Σφάλμα κατά τη φόρτωση μεταδεδομένων" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Εσφαλμένο αίτημα από τον πάροχο υπηρεσιών" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Εσφαλμένη απόκριση από τον πάροχο ταυτότητας" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Σφάλμα κατά τη διαδικασία αποσύνδεσης" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Λήψη κωδικού σφάλματος από τον πάροχο ταυτότητας" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Ανεπίλυτη εξαίρεση" +msgid "Error report sent" +msgstr "Η αναφορά σφάλματος στάλθηκε" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Άγνωστο πιστοποιητικό" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Παρουσιάστηκε σφάλμα κατά την επικοινωνία με τον εξυπηρετητή CAS." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Η ταυτοποίηση ματαιώθηκε" +msgid "Explain what you did when this error occurred..." +msgstr "Περιγράψτε τις ενέργειές σας όταν συνέβη το σφάλμα..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Το όνομα χρήστη ή ο κωδικός πρόσβασης είναι λάθος" +msgid "Fax number" +msgstr "Fax" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Κατά την πρόσβασή σας στη διεπαφή AssertionConsumerService παραλείψατε να συμπεριλάβετε απάντηση σε αίτημα ταυτοποίησης του πρωτοκόλλου SAML. Σημειώστε ότι αυτό το τελικό σημείο (endpoint) δεν προορίζεται να είναι άμεσα προσβάσιμο." +msgid "Format" +msgstr "Μορφή (format)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Παρουσιάστηκε σφάλμα κατά την επικοινωνία με την πηγή ταυτοποίησης %AUTHSOURCE%: %REASON%" +msgid "Given name" +msgstr "Όνομα" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Παρουσιάστηκε σφάλμα κατά την επεξεργασία του αιτήματος: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Επιστροφή στην αρχική σελίδα" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Παρουσιάστηκε σφάλμα κατά την επικοινωνία με τον εξυπηρετητή CAS." +msgid "Go back to the file list" +msgstr "Επιστροφή στον κατάλογο αρχείων" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Παρουσιάστηκε σφάλμα ρυθμίσεων του SimpleSAMLphp. Επικοινωνήστε με τον διαχειριστή της υπηρεσίας." +msgid "Group membership" +msgstr "Συμμετοχή σε ομάδες" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Παρουσιάστηκε σφάλμα κατά τη δημιουργία του αιτήματος SAML." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Οι παράμετροι που στάλθηκαν στην υπηρεσία ανεύρεσης παρόχου ταυτότητας ήταν εσφαλμένες." +msgid "Help desk homepage" +msgstr "Σελίδα υπηρεσίας αρωγής χρηστών" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Παρουσιάστηκε σφάλμα κατά τη δημιουργία απόκρισης από τον πάροχο ταυτότητας." +msgid "Help! I don't remember my password." +msgstr "Βοήθεια! Δε θυμάμαι τον κωδικό μου." + +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Αυτά είναι τα μεταδεδομένα που έχουν παραχθεί από το SimpleSAMLphp για εσάς. Μπορείτε να τα στείλετε σε οντότητες που εμπιστεύεστε προκειμένου να δημιουργήσετε ομοσπονδία." + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Χαίρετε, αυτή είναι η σελίδα κατάστασης του SimpleSAMLphp. Εδώ μπορείτε να δείτε αν η συνεδρία σας (session) έχει λήξει, το χρονικό διάστημα που διαρκεί έως ότου λήξει, καθώς και όλες τις πληροφορίες που συνδέονται με τη συνεδρία σας." + +msgid "Home organization domain name" +msgstr "Όνομα περιοχής (domain) οικείου οργανισμού" + +msgid "Home postal address" +msgstr "Ταχυδρομική διεύθυνση οικίας" + +msgid "Home telephone" +msgstr "Τηλέφωνο οικίας" + +msgid "How to get help" +msgstr "Πώς να λάβετε βοήθεια" + +msgid "Identity assurance profile" +msgstr "Επίπεδο αξιοπιστίας ταυτοποίησης" + +msgid "Identity number assigned by public authorities" +msgstr "Αριθμός ταυτότητας από δημόσια αρχή" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Αν αναφέρετε αυτό το σφάλμα, παρακαλούμε να συμπεριλάβετε στην αναφορά σας αυτόν τον αριθμό προκειμένου να διευκολύνετε τη διαδικασία εντοπισμού και επίλυσης του προβλήματος:" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Μεταδεδομένα σε μορφή xml SAML 2.0:" + +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "Σε μορφή απλού αρχείου SimpleSAMLphp - μπορείτε να στείλετε τα μεταδεδομένα σε αυτή τη μορφή αν υπάρχει οντότητα SimpleSAMLphp στην άλλη πλευρά:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Το όνομα χρήστη ή ο κωδικός πρόσβασης είναι λάθος" + +msgid "Incorrect username or password." +msgstr "Το όνομα χρήστη ή ο κωδικός πρόσβασης είναι λάθος." + +msgid "Information about your current session" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Μη έγκυρο πιστοποιητικό" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Η ταυτοποίηση απέτυχε: Το πιστοποιητικό που έστειλε το πρόγραμμα περιήγησης ιστού που χρησιμοποιείτε δεν είναι έγκυρο ή δεν ήταν δυνατή η ανάγνωσή του." +msgid "JPEG Photo" +msgstr "Φωτογραφία σε μορφή JPEG" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Σφάλμα LDAP" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." msgstr "Παρουσιάστηκε σφάλμα κατά την επικοινωνία με την υπηρεσία καταλόγου χρηστών (LDAP)." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Οι πληροφορίες σχετικά με την αποσύνδεση έχουν χαθεί. Θα πρέπει να επιστρέψετε στην υπηρεσία από την οποία προσπαθείτε να αποσυνδεθείτε και να προσπαθήσετε εκ νέου. Αυτό το σφάλμα μπορεί να παρουσιαστεί αν η ισχύς των πληροφοριών σχετικά με την αποσύνδεση έχει λήξει. Οι πληροφορίες αυτές αποθηκεύεται για περιορισμένο χρονικό διάστημα - συνήθως μερικών ωρών. Αυτό συνήθως επαρκεί για μια κανονική λειτουργία αποσύνδεσης, συνεπώς στην προκειμένη περίπτωση το σφάλμα μπορεί να υποδεικνύει κάποιο άλλο θέμα με τις ρυθμίσεις. Εάν το πρόβλημα παραμένει, επικοινωνήστε με τον πάροχο υπηρεσιών." +msgid "Labeled URI" +msgstr "Επισημασμένα URI" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Παρουσιαστήκε σφάλμα κατά την επεξεργασία του αιτήματος αποσύνδεσης." +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 -msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." -msgstr "Δεν είναι δυνατή η ανάκτηση δεδομένων συνεδρίας λόγω τεχνικών δυσκολιών. Παρακαλούμε δοκιμάστε ξανά αργότερα" +msgid "Legal name" +msgstr "Επίσημο όνομα" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Υπάρχει κάποιο πρόβλημα στις ρυθμίσεις του SimpleSAMLphp. Εάν είστε ο διαχειριστής της υπηρεσίας αυτής, βεβαιωθείτε ότι τα μεταδεδομένα έχουν ρυθμιστεί σωστά." +msgid "Local identity number" +msgstr "Αριθμός ταυτότητας" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Δεν ήταν δυνατό να βρεθούν μεταδεδομένα για την οντότητα %ENTITYID%" +msgid "Locality" +msgstr "Τοποθεσία" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Αυτό το τελικό σημείο σύνδεσης (endpoint) δεν είναι ενεργοποιημένο. Εάν είστε ο διαχειριστής της υπηρεσίας, ελέγξτε τις ρυθμίσεις του SimpleSAMLphp." +msgid "Logged out" +msgstr "Αποσυνδεδεμένος/η" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Η ταυτοποίηση απέτυχε: Το πρόγραμμα περιήγησης ιστού που χρησιμοποιείτε δεν έστειλε πιστοποιητικό." +msgid "Logging out of the following services:" +msgstr "Γίνεται αποσύνδεση από τις ακόλουθες υπηρεσίες:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Η παράμετρος 'RelayState' του πρωτοκόλλου SAML δεν βρέθηκε ή δεν είναι έγκυρη με αποτέλεσμα να μην είναι δυνατή η μετάβαση σε κάποιον πόρο του παρόχου υπηρεσιών0." +msgid "Logging out..." +msgstr "Γίνεται αποσύνδεση..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Δεν ήταν δυνατό να εξυπηρετηθεί το αίτημά σας καθώς δεν βρέθηκαν πληροφορίες σχετικά με την κατάστασή του" +msgid "Login" +msgstr "Είσοδος" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Η σελίδα που ζητήσατε στη διεύθυνση %URL% δεν βρέθηκε." +msgid "Login at" +msgstr "Είσοδος @" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Η σελίδα που ζητήσατε στη διεύθυνση %URL% δεν βρέθηκε: %REASON%" +msgid "Logout" +msgstr "Αποσύνδεση" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Χρησιμοποιείται η προκαθορισμένη τιμή του κωδικού πρόσβασης. Παρακαλούμε επεξεργαστείτε το αρχείο ρυθμίσεων." +msgid "Logout failed" +msgstr "Η αποσύνδεση απέτυχε" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Παρουσιάστηκε σφάλμα λόγω μη έγκυρου πιστοποιητικού." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Σφάλμα αποσύνδεσης" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Παρουσιάστηκε σφάλμα κατά την επεξεργασία της απάντησης από τον πάροχο ταυτότητας." +msgid "Mail" +msgstr "Email" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Παρουσιάστηκε σφάλμα κατά την επεξεργασία του αιτήματος ταυτοποίησης που έλαβε ο πάροχος ταυτότητας από τον πάροχο υπηρεσιών." +msgid "Manager" +msgstr "Διακεκριμένο όνομα (DN) διαχειριστή" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Ο κωδικός κατάστασης που περιέχει η απάντηση του παρόχου ταυτότητας υποδεικνύει σφάλμα." +msgid "Message" +msgstr "Μήνυμα" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Κατά την πρόσβασή σας στη διεπαφή SingleLogoutService παραλείψατε να συμπεριλάβετε μήνυμα LogoutRequest ή LogoutResponse του πρωτοκόλλου SAML. Σημειώστε ότι αυτό το τελικό σημείο (endpoint) δεν προορίζεται να είναι άμεσα προσβάσιμο." +msgid "Metadata" +msgstr "Μεταδεδομένα" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Παρουσιάστηκε ανεπίλυτη εξαίρεση" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Δεν βρέθηκαν μεταδεδομένα" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Η ταυτοποίηση απέτυχε: Το πιστοποιητικό που έστειλε το πρόγραμμα περιήγησης ιστού που χρησιμοποιείτε δεν ήταν δυνατό να αναγνωριστεί." +msgid "Metadata overview" +msgstr "Επισκόπηση μεταδεδομένων (metadata)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Η ταυτοποίηση ματαιώθηκε από τον χρήστη." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Ο συνδυασμός ονόματος χρήστη και κωδικού πρόσβασης δεν είναι σωστός. Παρακαλώ ελέγξτε την ορθότητα των στοιχείων σας και προσπαθήστε ξανά." +msgid "Mobile" +msgstr "Κινητό τηλέφωνο" -msgid "Format" -msgstr "Μορφή (format)" +msgid "Next" +msgstr "Επόμενο" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Χαίρετε, αυτή είναι η σελίδα κατάστασης του SimpleSAMLphp. Εδώ μπορείτε να δείτε αν η συνεδρία σας (session) έχει λήξει, το χρονικό διάστημα που διαρκεί έως ότου λήξει, καθώς και όλες τις πληροφορίες που συνδέονται με τη συνεδρία σας." +msgid "Nickname" +msgstr "Ψευδώνυμο χρήστη" -msgid "Logout" -msgstr "Αποσύνδεση" +msgid "No" +msgstr "Όχι" -msgid "SAML Subject" -msgstr "Υποκείμενο (subject) SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Σφάλμα παραμέτρου 'RelayState'" -msgid "Your attributes" -msgstr "Πληροφορίες" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Σφάλμα κατά την πρόσβαση στη διεπαφή SingleLogoutService" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Απομένουν %remaining% δευτερόλεπτα μέχρι τη λήξη της συνεδρίας σας." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "not set" -msgstr "δεν έχει οριστεί" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Σφάλμα κατά την πρόσβαση στη διεπαφή AssertionConsumerService" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Επιλέξτε οικείο φορέα που μπορεί να πιστοποιήσει την ταυτότητά σας" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Σφάλμα κατά την πρόσβαση" -msgid "Remember my choice" -msgstr "Να θυμάσαι την επιλογή μού" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Δεν υπάρχει πιστοποιητικό" -msgid "Select" -msgstr "Επιλογή" +msgid "No errors found." +msgstr "Δεν εντοπίστηκαν λάθη." -msgid "Select your identity provider" -msgstr "Επιλογή οικείου φορέα" +msgid "No identity providers found. Cannot continue." +msgstr "" -msgid "Sending message" -msgstr "Αποστολή αρχείου" +msgid "No, cancel" +msgstr "Όχι" -msgid "Yes, continue" -msgstr "Αποδοχή" +msgid "No, only %SP%" +msgstr "Όχι, μόνο από την υπηρεσία %SP%" -msgid "Debug information" -msgstr "Πληροφορίες εντοπισμού σφαλμάτων" +msgid "Notices" +msgstr "Ειδοποιήσεις" -msgid "E-mail address:" -msgstr "Email:" +msgid "ORCID researcher identifiers" +msgstr "Αναγνωριστικά ερευνητή ORCID" -msgid "Explain what you did when this error occurred..." -msgstr "Περιγράψτε τις ενέργειές σας όταν συνέβη το σφάλμα..." +msgid "On hold" +msgstr "Σε αναμονή" -msgid "How to get help" -msgstr "Πώς να λάβετε βοήθεια" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Μία ή περισσότερες υπηρεσίες με τις οποίες είστε συνδεδεμένος/η δεν υποστηρίζουν αποσύνδεση. Για το κλείσιμο όλων των συνεδριών σας (sessions), σας συνιστούμε να κλείσετε το πρόγραμμα πλοήγησης (web browser)." -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Αν αναφέρετε αυτό το σφάλμα, παρακαλούμε να συμπεριλάβετε στην αναφορά σας αυτόν τον αριθμό προκειμένου να διευκολύνετε τη διαδικασία εντοπισμού και επίλυσης του προβλήματος:" +msgid "Optional fields" +msgstr "Προαιρετικά πεδία" msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" msgstr "Προαιρετικά, εισάγετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας ώστε να είμαστε σε θέση να έρθουμε σε επαφή μαζί σας για περαιτέρω ερωτήσεις σχετικά με το θέμα σας:" -msgid "Report errors" -msgstr "Αναφορά σφάλματος" - -msgid "Send error report" -msgstr "Αποστολή αναφοράς" - -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Οι παρακάτω πληροφορίες μπορεί να διευκολύνουν τη διαδικασία εντοπισμού και επίλυσης σφαλμάτων." - -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Αυτό το σφάλμα πιθανότατα οφείλεται σε κάποια απροσδόκητη συμπεριφορά ή εσφαλμένη ρύθμιση του SimpleSAMLphp. Επικοινωνήστε με τον διαχειριστή αυτής της υπηρεσίας συμπεριλαμβάνοντας το παραπάνω μήνυμα σφάλματος." - -msgid "[Preferred choice]" -msgstr "[Αποθηκευμένη προεπιλογή]" - -msgid "Person's principal name at home organization" -msgstr "Αναγνωριστικό χρήστη στον οικείο οργανισμό" - -msgid "Superfluous options in config file" -msgstr "Περιττές επιλογές στο αρχείο ρυθμίσεων" +msgid "Options missing from config file" +msgstr "Επιλογές που λείπουν από το αρχείο ρυθμίσεων" -msgid "Mobile" -msgstr "Κινητό τηλέφωνο" +msgid "Organization" +msgstr "Οργανισμός" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Πάροχος Υπηρεσιών Shib 1.3 (Φιλοξενούμενος)" +msgid "Organization name" +msgstr "Όνομα οργανισμού" -msgid "Display name" -msgstr "Εμφανιζόμενο όνομα" +msgid "Organization's legal name" +msgstr "Επίσημη επωνυμία οικείου οργανισμού" -msgid "SAML 2.0 SP Metadata" -msgstr "Μεταδεδομένα Παρόχου Υπηρεσιών SAML 2.0" +msgid "Organizational homepage" +msgstr "Διεύθυνση αρχικής σελίδας οικείου οργανισμού" -msgid "ADFS IdP Metadata" -msgstr "Μεταδεδομένα Παρόχου Ταυτότητας ADFS" +msgid "Organizational number" +msgstr "Αριθμός οικείου οργανισμού" -msgid "Notices" -msgstr "Ειδοποιήσεις" +msgid "Organizational unit" +msgstr "Οργανωτική μονάδα" -msgid "Home telephone" -msgstr "Τηλέφωνο οικίας" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Η σελίδα δεν βρέθηκε" -msgid "Service Provider" -msgstr "Πάροχος υπηρεσίας" +msgid "Parse" +msgstr "Ανάλυση" -msgid "Incorrect username or password." -msgstr "Το όνομα χρήστη ή ο κωδικός πρόσβασης είναι λάθος." +msgid "Password" +msgstr "Κωδικός" -msgid "Submit message" -msgstr "Υποβολή μηνύματος" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Σφάλμα κωδικού πρόσβασης" -msgid "Locality" -msgstr "Τοποθεσία" +msgid "Persistent pseudonymous ID" +msgstr "Αδιαφανές αναγνωριστικό χρήστη μακράς διάρκειας" -msgid "The following required fields was not found" -msgstr "Τα παρακάτω υποχρεωτικά πεδία δε βρέθηκαν" +msgid "Person's non-reassignable, persistent pseudonymous ID at home organization" +msgstr "Μόνιμο, αδιαφανές αναγνωριστικό χρήστη στον οικείο οργανισμό" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Λήψη πιστοποιητικών X.509 σε κωδικοποίηση PEM." +msgid "Person's principal name at home organization" +msgstr "Αναγνωριστικό χρήστη στον οικείο οργανισμό" -msgid "Organizational number" -msgstr "Αριθμός οικείου οργανισμού" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Επιλέξτε οικείο φορέα που μπορεί να πιστοποιήσει την ταυτότητά σας" msgid "Post office box" msgstr "Ταχυδρομική θυρίδα" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Μια υπηρεσία έχει ζητήσει την ταυτοποίησή σας. Παρακαλώ εισάγετε το όνομα χρήστη και τον κωδικό πρόσβασής σας στην παρακάτω φόρμα." - -msgid "Error" -msgstr "Σφάλμα" - -msgid "Next" -msgstr "Επόμενο" +msgid "Postal address" +msgstr "Ταχυδρομική διεύθυνση" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Διακεκριμένο όνομα (DN) οικείας οργανωτικής μονάδας" +msgid "Postal code" +msgstr "Ταχυδρομικός κωδικός" -msgid "Converted metadata" -msgstr "Μετατραπέντα μεταδεδομένα" +msgid "Preferred language" +msgstr "Προτιμώμενη γλώσσα" -msgid "Mail" -msgstr "Email" +msgid "Primary affiliation" +msgstr "Κύρια ιδιότητα" -msgid "No, cancel" -msgstr "Όχι" +msgid "Private information elements" +msgstr "Απόρρητα προσωπικά στοιχεία" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Επιλεγμένος οικείος φορέας: %HOMEORG%." +msgid "Remember" +msgstr "Να θυμάσαι την επιλογή μου" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Διακεκριμένο όνομα (DN) κύριας οργανωτικής μονάδας" +msgid "Remember me" +msgstr "Να με θυμάσαι" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Για να δείτε τις λεπτομέρειες για μια οντότητα SAML, κάντε κλικ στην επικεφαλίδα της οντότητας." +msgid "Remember my choice" +msgstr "Να θυμάσαι την επιλογή μού" -msgid "Enter your username and password" -msgstr "Εισάγετε όνομα χρήστη και κωδικό πρόσβασης" +msgid "Remember my username" +msgstr "Να θυμάσαι το όνομα χρήστη" -msgid "Login at" -msgstr "Είσοδος @" +msgid "Report errors" +msgstr "Αναφορά σφάλματος" -msgid "No" -msgstr "Όχι" +msgid "Required fields" +msgstr "Υποχρεωτικά πεδία" -msgid "Home postal address" -msgstr "Ταχυδρομική διεύθυνση οικίας" +msgid "Return to service" +msgstr "Επιστροφή στην υπηρεσία" -msgid "WS-Fed SP Demo Example" -msgstr "Δοκιμαστικός Παροχέας Υπηρεσιών WS-Fed" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "Πάροχος Ταυτότητας SAML 2.0 (Φιλοξενούμενος)" msgid "SAML 2.0 Identity Provider (Remote)" msgstr "Πάροχος Ταυτότητας SAML 2.0 (Απομακρυσμένος)" -msgid "Do you want to logout from all the services above?" -msgstr "Επιθυμείτε να αποσυνδεθείτε από όλες τις παραπάνω υπηρεσίες;" - -msgid "Given name" -msgstr "Όνομα" - -msgid "Identity assurance profile" -msgstr "Επίπεδο αξιοπιστίας ταυτοποίησης" - msgid "SAML 2.0 SP Demo Example" msgstr "Δοκιμαστικός Παροχέας Υπηρεσιών SAML 2.0" -msgid "Organization name" -msgstr "Όνομα οργανισμού" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Πρόκειται να στείλετε ένα μήνυμα. Επιλέξτε «Υποβολή μηνύματος» για να συνεχίσετε." - -msgid "Home organization domain name" -msgstr "Όνομα περιοχής (domain) οικείου οργανισμού" +msgid "SAML 2.0 SP Metadata" +msgstr "Μεταδεδομένα Παρόχου Υπηρεσιών SAML 2.0" -msgid "Go back to the file list" -msgstr "Επιστροφή στον κατάλογο αρχείων" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "Πάροχος Υπηρεσιών SAML 2.0 (Φιλοξενούμενος)" -msgid "Error report sent" -msgstr "Η αναφορά σφάλματος στάλθηκε" +msgid "SAML Subject" +msgstr "Υποκείμενο (subject) SAML" -msgid "Common name" -msgstr "Κοινό όνομα (CN)" +msgid "Select" +msgstr "Επιλογή" -msgid "Logout failed" -msgstr "Η αποσύνδεση απέτυχε" +msgid "Select configuration file to check:" +msgstr "Επιλογή αρχείου για έλεγχο: " -msgid "Identity number assigned by public authorities" -msgstr "Αριθμός ταυτότητας από δημόσια αρχή" +msgid "Select your identity provider" +msgstr "Επιλογή οικείου φορέα" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "Πάροχος Ταυτότητας WS-Federation (Απομακρυσμένος)" +msgid "Send e-mail to help desk" +msgstr "Αποστολή email στην υπηρεσία αρωγής χρηστών" -msgid "Some error occurred" -msgstr "Συνέβη σφάλμα" +msgid "Send error report" +msgstr "Αποστολή αναφοράς" -msgid "Organization" -msgstr "Οργανισμός" +msgid "Sending message" +msgstr "Αποστολή αρχείου" -msgid "Choose home organization" -msgstr "Επιλογή οικείου φορέα" +msgid "Service Provider" +msgstr "Πάροχος υπηρεσίας" -msgid "Persistent pseudonymous ID" -msgstr "Αδιαφανές αναγνωριστικό χρήστη μακράς διάρκειας" +msgid "Session size: %SIZE%" +msgstr "Μέγεθος συνεδρίας: %SIZE%" -msgid "No errors found." -msgstr "Δεν εντοπίστηκαν λάθη." +msgid "Shib 1.3 IdP Metadata" +msgstr "Μεταδεδομένα Παρόχου Ταυτότητας Shib 1.3" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "Πάροχος Υπηρεσιών SAML 2.0 (Φιλοξενούμενος)" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Πάροχος Ταυτότητας Shib 1.3 (Φιλοξενούμενος)" -msgid "Required fields" -msgstr "Υποχρεωτικά πεδία" +msgid "Shib 1.3 SP Metadata" +msgstr "Μεταδεδομένα Παρόχου Υπηρεσιών Shib 1.3" -msgid "Domain component (DC)" -msgstr "Συστατικό Τομέα (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Πάροχος Υπηρεσιών Shib 1.3 (Φιλοξενούμενος)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Πάροχος Υπηρεσιών Shib 1.3 (Απομακρυσμένος)" -msgid "Password" -msgstr "Κωδικός" - -msgid "ORCID researcher identifiers" -msgstr "Αναγνωριστικά ερευνητή ORCID" - -msgid "Nickname" -msgstr "Ψευδώνυμο χρήστη" - -msgid "The error report has been sent to the administrators." -msgstr "Η αποστολή της αναφοράς σφάλματος στους διαχειριστές ολοκληρώθηκε." - -msgid "Date of birth" -msgstr "Ημερομηνία γέννησης" +msgid "Shibboleth demo" +msgstr "Δοκιμαστικός Παροχέας Υπηρεσιών Shibboleth" -msgid "Private information elements" -msgstr "Απόρρητα προσωπικά στοιχεία" +msgid "SimpleSAMLphp Diagnostics" +msgstr "Διαγνωστικά SimpleSAMLphp" -msgid "Person's non-reassignable, persistent pseudonymous ID at home organization" -msgstr "Μόνιμο, αδιαφανές αναγνωριστικό χρήστη στον οικείο οργανισμό" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Παρουσιάστηκε σφάλμα ρυθμίσεων του SimpleSAMLphp. Επικοινωνήστε με τον διαχειριστή της υπηρεσίας." -msgid "You are also logged in on these services:" -msgstr "Είστε επίσης συνδεδεμένος σε αυτές τις υπηρεσίες:" +msgid "SimpleSAMLphp error" +msgstr "Σφάλμα του SimpleSAMLphp" -msgid "SimpleSAMLphp Diagnostics" -msgstr "Διαγνωστικά SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "No, only %SP%" -msgstr "Όχι, μόνο από την υπηρεσία %SP%" +msgid "Some error occurred" +msgstr "Συνέβη σφάλμα" -msgid "Username" -msgstr "Όνομα Χρήστη" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Δεν βρέθηκαν πληροφορίες σχετικά με την κατάσταση του αιτήματος" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Επιστροφή στην αρχική σελίδα" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Δεν ήταν δυνατό να εξυπηρετηθεί το αίτημά σας καθώς δεν βρέθηκαν πληροφορίες σχετικά με την κατάστασή του" -msgid "You have successfully logged out from all services listed above." -msgstr "Έχετε αποσυνδεθεί με επιτυχία από όλες τις υπηρεσίες που αναφέρονται παραπάνω." +msgid "Street" +msgstr "Οδός" -msgid "You are now successfully logged out from %SP%." -msgstr "Έχετε αποσυνδεθεί με επιτυχία από την υπηρεσία %SP%." +msgid "Submit message" +msgstr "Υποβολή μηνύματος" -msgid "Affiliation" -msgstr "Ιδιότητα/ες" +msgid "Superfluous options in config file" +msgstr "Περιττές επιλογές στο αρχείο ρυθμίσεων" -msgid "You have been logged out." -msgstr "Έχετε αποσυνδεθεί." +msgid "Surname" +msgstr "Επώνυμο" -msgid "Return to service" -msgstr "Επιστροφή στην υπηρεσία" +msgid "Telephone number" +msgstr "Τηλέφωνο" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "Πάροχος Υπηρεσιών WS-Federation (Φιλοξενούμενος)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Ο κωδικός κατάστασης που περιέχει η απάντηση του παρόχου ταυτότητας υποδεικνύει σφάλμα." -msgid "Remember my username" -msgstr "Να θυμάσαι το όνομα χρήστη" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Η ταυτοποίηση ματαιώθηκε από τον χρήστη." -msgid "Preferred language" -msgstr "Προτιμώμενη γλώσσα" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Οι παρακάτω πληροφορίες μπορεί να διευκολύνουν τη διαδικασία εντοπισμού και επίλυσης σφαλμάτων." -msgid "Surname" -msgstr "Επώνυμο" +msgid "The error report has been sent to the administrators." +msgstr "Η αποστολή της αναφοράς σφάλματος στους διαχειριστές ολοκληρώθηκε." msgid "The following fields was not recognized" msgstr "Τα παρακάτω πεδία δεν αναγνωρίστηκαν" -msgid "User ID" -msgstr "Αναγνωριστικό χρήστη" - -msgid "JPEG Photo" -msgstr "Φωτογραφία σε μορφή JPEG" +msgid "The following optional fields was not found" +msgstr "Τα παρακάτω προαιρετικά πεδία δεν βρέθηκαν" -msgid "Postal address" -msgstr "Ταχυδρομική διεύθυνση" +msgid "The following required fields was not found" +msgstr "Τα παρακάτω υποχρεωτικά πεδία δε βρέθηκαν" -msgid "ADFS SP Metadata" -msgstr "Μεταδεδομένα Παρόχου Υπηρεσιών ADFS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Η σελίδα που ζητήσατε στη διεύθυνση %URL% δεν βρέθηκε." -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Μεταδεδομένα σε μορφή xml SAML 2.0:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Η σελίδα που ζητήσατε στη διεύθυνση %URL% δεν βρέθηκε: %REASON%" -msgid "Logging out of the following services:" -msgstr "Γίνεται αποσύνδεση από τις ακόλουθες υπηρεσίες:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Οι πληροφορίες σχετικά με την αποσύνδεση έχουν χαθεί. Θα πρέπει να επιστρέψετε στην υπηρεσία από την οποία προσπαθείτε να αποσυνδεθείτε και να προσπαθήσετε εκ νέου. Αυτό το σφάλμα μπορεί να παρουσιαστεί αν η ισχύς των πληροφοριών σχετικά με την αποσύνδεση έχει λήξει. Οι πληροφορίες αυτές αποθηκεύεται για περιορισμένο χρονικό διάστημα - συνήθως μερικών ωρών. Αυτό συνήθως επαρκεί για μια κανονική λειτουργία αποσύνδεσης, συνεπώς στην προκειμένη περίπτωση το σφάλμα μπορεί να υποδεικνύει κάποιο άλλο θέμα με τις ρυθμίσεις. Εάν το πρόβλημα παραμένει, επικοινωνήστε με τον πάροχο υπηρεσιών." -msgid "Labeled URI" -msgstr "Επισημασμένα URI" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Η παράμετρος 'RelayState' του πρωτοκόλλου SAML δεν βρέθηκε ή δεν είναι έγκυρη με αποτέλεσμα να μην είναι δυνατή η μετάβαση σε κάποιον πόρο του παρόχου υπηρεσιών0." -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Πάροχος Ταυτότητας Shib 1.3 (Φιλοξενούμενος)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Οι παράμετροι που στάλθηκαν στην υπηρεσία ανεύρεσης παρόχου ταυτότητας ήταν εσφαλμένες." -msgid "Metadata" -msgstr "Μεταδεδομένα" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Login" -msgstr "Είσοδος" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Χρησιμοποιείται η προκαθορισμένη τιμή του κωδικού πρόσβασης. Παρακαλούμε επεξεργαστείτε το αρχείο ρυθμίσεων." -msgid "Yes, all services" -msgstr "Ναι, όλες τις υπηρεσίες" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Παρουσιάστηκε σφάλμα κατά την επεξεργασία του αιτήματος: %REASON%" -msgid "Logged out" -msgstr "Αποσυνδεδεμένος/η" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Υπάρχει κάποιο πρόβλημα στις ρυθμίσεις του SimpleSAMLphp. Εάν είστε ο διαχειριστής της υπηρεσίας αυτής, βεβαιωθείτε ότι τα μεταδεδομένα έχουν ρυθμιστεί σωστά." -msgid "Postal code" -msgstr "Ταχυδρομικός κωδικός" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Παρουσιάστηκε σφάλμα κατά την επεξεργασία του αιτήματος ταυτοποίησης που έλαβε ο πάροχος ταυτότητας από τον πάροχο υπηρεσιών." -msgid "Logging out..." -msgstr "Γίνεται αποσύνδεση..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Αυτό το τελικό σημείο σύνδεσης (endpoint) δεν είναι ενεργοποιημένο. Εάν είστε ο διαχειριστής της υπηρεσίας, ελέγξτε τις ρυθμίσεις του SimpleSAMLphp." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "Πάροχος Ταυτότητας SAML 2.0 (Φιλοξενούμενος)" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Αυτό το σφάλμα πιθανότατα οφείλεται σε κάποια απροσδόκητη συμπεριφορά ή εσφαλμένη ρύθμιση του SimpleSAMLphp. Επικοινωνήστε με τον διαχειριστή αυτής της υπηρεσίας συμπεριλαμβάνοντας το παραπάνω μήνυμα σφάλματος." -msgid "Primary affiliation" -msgstr "Κύρια ιδιότητα" +msgid "Title" +msgstr "Τίτλος" -msgid "XML metadata" -msgstr "Αναλυτής μεταδεδομένων XML" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Για να δείτε τις λεπτομέρειες για μια οντότητα SAML, κάντε κλικ στην επικεφαλίδα της οντότητας." -msgid "Telephone number" -msgstr "Τηλέφωνο" +msgid "Tracking number" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Δεν ήταν δυνατό να βρεθούν μεταδεδομένα για την οντότητα %ENTITYID%" msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." msgstr "Δεν ήταν δυνατή η αποσύνδεση από μία ή περισσότερες υπηρεσίες. Για το κλείσιμο όλων των συνεδριών σας (sessions), σας συνιστούμε να κλείσετε το πρόγραμμα πλοήγησης (web browser)." -msgid "Group membership" -msgstr "Συμμετοχή σε ομάδες" - -msgid "Entitlement regarding the service" -msgstr "Δικαιώματα πρόσβασης στην υπηρεσία" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Shib 1.3 SP Metadata" -msgstr "Μεταδεδομένα Παρόχου Υπηρεσιών Shib 1.3" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Ανεπίλυτη εξαίρεση" -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Επειδή είστε σε κατάσταση εντοπισμού σφαλμάτων (debug), μπορείτε να δείτε το περιεχόμενο του μηνύματος που στέλνετε:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Άγνωστο πιστοποιητικό" -msgid "Certificates" -msgstr "Πιστοποιητικά" +msgid "User ID" +msgstr "Αναγνωριστικό χρήστη" -msgid "Remember" -msgstr "Να θυμάσαι την επιλογή μου" +msgid "User's password hash" +msgstr "Κρυπτογραφημένος κωδικός" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Διακεκριμένο όνομα (DN) οικείου οργανισμού" +msgid "Username" +msgstr "Όνομα Χρήστη" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Πρόκειται να στείλετε ένα μήνυμα. Επιλέξτε «Υποβολή μηνύματος» για να συνεχίσετε." +msgid "WS-Fed SP Demo Example" +msgstr "Δοκιμαστικός Παροχέας Υπηρεσιών WS-Fed" -msgid "Organizational unit" -msgstr "Οργανωτική μονάδα" +msgid "WS-Federation Identity Provider (Remote)" +msgstr "Πάροχος Ταυτότητας WS-Federation (Απομακρυσμένος)" -msgid "Local identity number" -msgstr "Αριθμός ταυτότητας" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "Πάροχος Υπηρεσιών WS-Federation (Φιλοξενούμενος)" -msgid "Shib 1.3 IdP Metadata" -msgstr "Μεταδεδομένα Παρόχου Ταυτότητας Shib 1.3" +msgid "Warning" +msgstr "" -msgid "Change your home organization" -msgstr "Αλλαγή οικείου φορέα" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Παρουσιάστηκε σφάλμα κατά την επεξεργασία της απάντησης από τον πάροχο ταυτότητας." -msgid "User's password hash" -msgstr "Κρυπτογραφημένος κωδικός" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Παρουσιάστηκε σφάλμα κατά τη δημιουργία απόκρισης από τον πάροχο ταυτότητας." -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "Σε μορφή απλού αρχείου SimpleSAMLphp - μπορείτε να στείλετε τα μεταδεδομένα σε αυτή τη μορφή αν υπάρχει οντότητα SimpleSAMLphp στην άλλη πλευρά:" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Λυπούμαστε. Χωρίς το όνομα χρήστη και τον κωδικό σας, δεν μπορείτε να ταυτοποιηθείτε ώστε να αποκτήσετε πρόσβαση στην υπηρεσία. Συμβουλευτείτε την υπηρεσία αρωγής χρηστών (help desk) του οργανισμού σας." -msgid "Completed" -msgstr "Ολοκληρώθηκε" +msgid "World" +msgstr "" -msgid "Select configuration file to check:" -msgstr "Επιλογή αρχείου για έλεγχο: " +msgid "XML metadata" +msgstr "Αναλυτής μεταδεδομένων XML" -msgid "On hold" -msgstr "Σε αναμονή" +msgid "Yes, all services" +msgstr "Ναι, όλες τις υπηρεσίες" -msgid "ADFS Identity Provider (Hosted)" -msgstr "Πάροχος Ταυτότητας ADFS (Φιλοξενούμενος)" +msgid "Yes, continue" +msgstr "Αποδοχή" -msgid "Help! I don't remember my password." -msgstr "Βοήθεια! Δε θυμάμαι τον κωδικό μου." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Μπορείτε να απενεργοποιήσετε τη λειτουργία εντοπισμού σφαλμάτων (debug) στο αρχείο ρυθμίσεων του SimpleSAMLphp config/config.php." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Κατά την πρόσβασή σας στη διεπαφή AssertionConsumerService παραλείψατε να συμπεριλάβετε απάντηση σε αίτημα ταυτοποίησης του πρωτοκόλλου SAML. Σημειώστε ότι αυτό το τελικό σημείο (endpoint) δεν προορίζεται να είναι άμεσα προσβάσιμο." -msgid "SimpleSAMLphp error" -msgstr "Σφάλμα του SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Μία ή περισσότερες υπηρεσίες με τις οποίες είστε συνδεδεμένος/η δεν υποστηρίζουν αποσύνδεση. Για το κλείσιμο όλων των συνεδριών σας (sessions), σας συνιστούμε να κλείσετε το πρόγραμμα πλοήγησης (web browser)." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Κατά την πρόσβασή σας στη διεπαφή SingleLogoutService παραλείψατε να συμπεριλάβετε μήνυμα LogoutRequest ή LogoutResponse του πρωτοκόλλου SAML. Σημειώστε ότι αυτό το τελικό σημείο (endpoint) δεν προορίζεται να είναι άμεσα προσβάσιμο." -msgid "or select a file:" -msgstr "ή επιλέξτε αρχείο" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Πρόκειται να στείλετε ένα μήνυμα. Επιλέξτε «Υποβολή μηνύματος» για να συνεχίσετε." -msgid "Remember me" -msgstr "Να με θυμάσαι" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Πρόκειται να στείλετε ένα μήνυμα. Επιλέξτε «Υποβολή μηνύματος» για να συνεχίσετε." -msgid "Organization's legal name" -msgstr "Επίσημη επωνυμία οικείου οργανισμού" +msgid "You are also logged in on these services:" +msgstr "Είστε επίσης συνδεδεμένος σε αυτές τις υπηρεσίες:" -msgid "Options missing from config file" -msgstr "Επιλογές που λείπουν από το αρχείο ρυθμίσεων" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Εισέρχεστε σε περιβάλλον ταυτοποίησης χρηστών που εξυπηρετεί αποκλειστικά δοκιμαστικούς σκοπούς. Αν οδηγηθήκατε εδώ μέσω κάποιου συνδέσμου ενώ δεν είστε δοκιμαστής (tester), τότε πρόκειται περί λάθους και δεν πρέπει να βρίσκεστε εδώ." -msgid "The following optional fields was not found" -msgstr "Τα παρακάτω προαιρετικά πεδία δεν βρέθηκαν" +msgid "You are now successfully logged out from %SP%." +msgstr "Έχετε αποσυνδεθεί με επιτυχία από την υπηρεσία %SP%." msgid "You can get the metadata xml on a dedicated URL:" msgstr "Διεύθυνση λήψης μεταδεδομένων:" -msgid "Street" -msgstr "Οδός" - -msgid "Message" -msgstr "Μήνυμα" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Μπορείτε να απενεργοποιήσετε τη λειτουργία εντοπισμού σφαλμάτων (debug) στο αρχείο ρυθμίσεων του SimpleSAMLphp config/config.php." -msgid "Contact information:" -msgstr "Στοιχεία επικοινωνίας:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Παρουσιάστηκε σφάλμα λόγω μη έγκυρου πιστοποιητικού." -msgid "Legal name" -msgstr "Επίσημο όνομα" +msgid "You have been logged out." +msgstr "Έχετε αποσυνδεθεί." -msgid "Optional fields" -msgstr "Προαιρετικά πεδία" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Επιλεγμένος οικείος φορέας: %HOMEORG%." msgid "You have previously chosen to authenticate at" msgstr "Αποθηκευμένη προεπιλογή οικείου φορέα:" +msgid "You have successfully logged out from all services listed above." +msgstr "Έχετε αποσυνδεθεί με επιτυχία από όλες τις υπηρεσίες που αναφέρονται παραπάνω." + msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." msgstr "Ο κωδικός πρόσβασης δεν εστάλη. Παρακαλώ, προσπαθήστε ξανά." -msgid "Fax number" -msgstr "Fax" - -msgid "Shibboleth demo" -msgstr "Δοκιμαστικός Παροχέας Υπηρεσιών Shibboleth" - -msgid "Error in this metadata entry" -msgstr "Σφάλμα σε αυτή την καταχώρηση μεταδεδομένων" - -msgid "Session size: %SIZE%" -msgstr "Μέγεθος συνεδρίας: %SIZE%" - -msgid "Parse" -msgstr "Ανάλυση" - -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Λυπούμαστε. Χωρίς το όνομα χρήστη και τον κωδικό σας, δεν μπορείτε να ταυτοποιηθείτε ώστε να αποκτήσετε πρόσβαση στην υπηρεσία. Συμβουλευτείτε την υπηρεσία αρωγής χρηστών (help desk) του οργανισμού σας." - -msgid "ADFS Service Provider (Remote)" -msgstr "Πάροχος Υπηρεσιών ADFS (Απομακρυσμένος)" - -msgid "Choose your home organization" -msgstr "Επιλογή οικείου φορέα" - -msgid "Send e-mail to help desk" -msgstr "Αποστολή email στην υπηρεσία αρωγής χρηστών" - -msgid "Metadata overview" -msgstr "Επισκόπηση μεταδεδομένων (metadata)" - -msgid "Title" -msgstr "Τίτλος" - -msgid "Manager" -msgstr "Διακεκριμένο όνομα (DN) διαχειριστή" - -msgid "Affiliation at home organization" -msgstr "Ιδιότητα ανά διαχειριστική περιοχή (administrative domain)" +msgid "Your attributes" +msgstr "Πληροφορίες" -msgid "Help desk homepage" -msgstr "Σελίδα υπηρεσίας αρωγής χρηστών" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "Δεν είναι δυνατή η ανάκτηση δεδομένων συνεδρίας λόγω τεχνικών δυσκολιών. Παρακαλούμε δοκιμάστε ξανά αργότερα" -msgid "Configuration check" -msgstr "Έλεγχος ρυθμίσεων" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Απομένουν %remaining% δευτερόλεπτα μέχρι τη λήξη της συνεδρίας σας." -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Αυτά είναι τα μεταδεδομένα που έχουν παραχθεί από το SimpleSAMLphp για εσάς. Μπορείτε να τα στείλετε σε οντότητες που εμπιστεύεστε προκειμένου να δημιουργήσετε ομοσπονδία." +msgid "[Preferred choice]" +msgstr "[Αποθηκευμένη προεπιλογή]" -msgid "Organizational homepage" -msgstr "Διεύθυνση αρχικής σελίδας οικείου οργανισμού" +msgid "not set" +msgstr "δεν έχει οριστεί" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Εισέρχεστε σε περιβάλλον ταυτοποίησης χρηστών που εξυπηρετεί αποκλειστικά δοκιμαστικούς σκοπούς. Αν οδηγηθήκατε εδώ μέσω κάποιου συνδέσμου ενώ δεν είστε δοκιμαστής (tester), τότε πρόκειται περί λάθους και δεν πρέπει να βρίσκεστε εδώ." +msgid "or select a file:" +msgstr "ή επιλέξτε αρχείο" diff --git a/locales/en/LC_MESSAGES/messages.po b/locales/en/LC_MESSAGES/messages.po index 5e7b28d28a..39a40430d8 100644 --- a/locales/en/LC_MESSAGES/messages.po +++ b/locales/en/LC_MESSAGES/messages.po @@ -1,827 +1,855 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "No SAML response provided" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "No SAML message provided" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 -msgid "Authentication source error" -msgstr "Authentication source error" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 -msgid "Bad request received" -msgstr "Bad request received" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 -msgid "CAS Error" -msgstr "CAS Error" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 -msgid "Configuration error" -msgstr "Configuration error" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Error creating request" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Bad request to discovery service" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 -msgid "Could not create authentication response" -msgstr "Could not create authentication response" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Invalid certificate" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP Error" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Logout information lost" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Error processing the Logout Request" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 -msgid "Cannot retrieve session data" -msgstr "Cannot retrieve session data" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Error loading metadata" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadata not found" +msgid "ADFS IdP Metadata" +msgstr "ADFS IdP Metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "No access" +msgid "ADFS Identity Provider (Hosted)" +msgstr "ADFS Identity Provider (Hosted)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "No certificate" +msgid "ADFS SP Metadata" +msgstr "ADFS SP Metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "No RelayState" +msgid "ADFS Service Provider (Remote)" +msgstr "ADFS Service Provider (Remote)" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "State information lost" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Page not found" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Password not set" +msgid "Admin password not set to a hashed value" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Error processing response from Identity Provider" +msgid "Affiliation" +msgstr "Affiliation" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 -msgid "Error processing request from Service Provider" -msgstr "Error processing request from Service Provider" +msgid "Affiliation at home organization" +msgstr "Affiliation at home organization" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 -msgid "Error received from Identity Provider" -msgstr "Error received from Identity Provider" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "An error occurred when trying to create the SAML request." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 -msgid "No SAML request provided" -msgstr "No SAML request provided" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "An error occurred when trying to process the Logout Request." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Unhandled exception" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "An unhandled exception was thrown." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Unknown certificate" +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "As you are in debug mode, you get to see the content of the message you are sending:" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 msgid "Authentication aborted" msgstr "Authentication aborted" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Incorrect username or password" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 -msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." -msgstr "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." - #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" msgstr "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "There is an error in the request to this page. The reason was: %REASON%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Authentication failed: the certificate your browser sent is invalid or cannot be read" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Error when communicating with the CAS server." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Authentication failed: the certificate your browser sent is unknown" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp appears to be misconfigured." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Authentication failed: your browser did not send any certificate" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "An error occurred when trying to create the SAML request." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 +msgid "Authentication source error" +msgstr "Authentication source error" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "The parameters sent to the discovery service were not according to specifications." +msgid "Authentication status" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "When this identity provider tried to create an authentication response, an error occurred." +msgid "Back" +msgstr "Back" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Authentication failed: the certificate your browser sent is invalid or cannot be read" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 +msgid "Bad request received" +msgstr "Bad request received" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Bad request to discovery service" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 +msgid "CAS Error" +msgstr "CAS Error" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "An error occurred when trying to process the Logout Request." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "Cannot retrieve session data" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 -msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." -msgstr "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgid "Certificates" +msgstr "Certificates" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgid "Change your home organization" +msgstr "Change your home organization" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Unable to locate metadata for %ENTITYID%" +msgid "Choose home organization" +msgstr "Choose home organization" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgid "Choose your home organization" +msgstr "Choose your home organization" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Authentication failed: your browser did not send any certificate" +msgid "Common name" +msgstr "Common name" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgid "Completed" +msgstr "Completed" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "State information lost, and no way to restart the request" +msgid "Configuration check" +msgstr "Configuration check" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "The given page was not found. The URL was: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 +msgid "Configuration error" +msgstr "Configuration error" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgid "Contact information:" +msgstr "Contact information:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgid "Converted metadata" +msgstr "Converted metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "You did not present a valid certificate." +msgid "Copy to clipboard" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "We did not accept the response sent from the Identity Provider." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 +msgid "Could not create authentication response" +msgstr "Could not create authentication response" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgid "Date of birth" +msgstr "Date of birth" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgid "Debug information" +msgstr "Debug information" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 -msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." -msgstr "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgid "Display name" +msgstr "Display name" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "An unhandled exception was thrown." +msgid "Distinguished name (DN) of person's home organization" +msgstr "Distinguished name (DN) of person's home organization" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Authentication failed: the certificate your browser sent is unknown" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Distinguished name (DN) of person's primary Organizational Unit" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "The authentication was aborted by the user" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Distinguished name (DN) of the person's home organizational unit" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgid "Do you want to logout from all the services above?" +msgstr "Do you want to logout from all the services above?" -msgid "Authentication status" -msgstr "" +msgid "Domain component (DC)" +msgstr "Domain component (DC)" -msgid "Copy to clipboard" -msgstr "" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Download the X509 certificates as PEM-encoded files." -msgid "Debug information to be used by your support staff" -msgstr "" +msgid "E-mail address:" +msgstr "E-mail address:" -msgid "Format" -msgstr "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgid "Enter your username and password" +msgstr "Enter your username and password" -msgid "Information about your current session" -msgstr "" +msgid "Entitlement regarding the service" +msgstr "Entitlement regarding the service" -msgid "Logout" -msgstr "Logout" +msgid "Error" +msgstr "Error" -msgid "SAML Subject" -msgstr "SAML Subject" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Error creating request" -msgid "Tracking number" -msgstr "" +msgid "Error in this metadata entry" +msgstr "Error in this metadata entry" -msgid "Your attributes" -msgstr "Your attributes" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Error loading metadata" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Your session is valid for %remaining% seconds from now." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Error processing request from Service Provider" +msgstr "Error processing request from Service Provider" -msgid "not set" -msgstr "not set" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Error processing response from Identity Provider" -msgid "Hello, Untranslated World!" -msgstr "Hello, Translated World!" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Error processing the Logout Request" -msgid "World" -msgstr "World" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 +msgid "Error received from Identity Provider" +msgstr "Error received from Identity Provider" -msgid "Language" -msgstr "" +msgid "Error report sent" +msgstr "Error report sent" -msgid "No identity providers found. Cannot continue." -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Error when communicating with the CAS server." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Please select the identity provider where you want to authenticate:" +msgid "Explain what you did when this error occurred..." +msgstr "Explain what you did when this error occurred..." + +msgid "Fax number" +msgstr "Fax number" -msgid "Remember my choice" -msgstr "Remember my choice" +msgid "Format" +msgstr "Format" -msgid "Select" -msgstr "Select" +msgid "Given name" +msgstr "Given name" -msgid "Select your identity provider" -msgstr "Select your identity provider" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Go back to SimpleSAMLphp installation page" -msgid "Sending message" -msgstr "Sending message" +msgid "Go back to the file list" +msgstr "Go back to the file list" -msgid "Since your browser does not support Javascript, you must press the button below to proceed." -msgstr "" +msgid "Group membership" +msgstr "Group membership" -msgid "Warning" -msgstr "" +msgid "Hello, %who%!" +msgstr "Hello, %who%!" -msgid "Yes, continue" -msgstr "Yes, continue" +msgid "Hello, Untranslated World!" +msgstr "Hello, Translated World!" -msgid "Debug information" -msgstr "Debug information" +msgid "Help desk homepage" +msgstr "Help desk homepage" -msgid "E-mail address:" -msgstr "E-mail address:" +msgid "Help! I don't remember my password." +msgstr "Help! I don't remember my password." -msgid "Explain what you did when this error occurred..." -msgstr "Explain what you did when this error occurred..." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgid "How to get help" -msgstr "How to get help" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgid "Home organization domain name" +msgstr "Home organization domain name" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgid "Home postal address" +msgstr "Home postal address" -msgid "Report errors" -msgstr "Report errors" +msgid "Home telephone" +msgstr "Home telephone" -msgid "Send error report" -msgstr "Send error report" +msgid "How to get help" +msgstr "How to get help" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "The debug information below may be of interest to the administrator / help desk:" +msgid "Identity assurance profile" +msgstr "Identity assurance profile" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgid "Identity number assigned by public authorities" +msgstr "Identity number assigned by public authorities" -msgid "Back" -msgstr "Back" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgid "[Preferred choice]" -msgstr "[Preferred choice]" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "In SAML 2.0 Metadata XML format:" -msgid "Hello, %who%!" -msgstr "Hello, %who%!" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgid "Person's principal name at home organization" -msgstr "Person's principal name at home organization" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Incorrect username or password" -msgid "Superfluous options in config file" -msgstr "Superfluous options in config file" +msgid "Incorrect username or password." +msgstr "Incorrect username or password." -msgid "Mobile" -msgstr "Mobile" +msgid "Information about your current session" +msgstr "" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Service Provider (Hosted)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Invalid certificate" -msgid "Display name" -msgstr "Display name" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP Metadata" +msgid "JPEG Photo" +msgstr "JPEG Photo" -msgid "ADFS IdP Metadata" -msgstr "ADFS IdP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP Error" -msgid "Notices" -msgstr "Notices" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgid "Home telephone" -msgstr "Home telephone" +msgid "Labeled URI" +msgstr "Labeled URI" -msgid "Service Provider" -msgstr "Service Provider" +msgid "Language" +msgstr "" -msgid "Incorrect username or password." -msgstr "Incorrect username or password." +msgid "Legal name" +msgstr "Legal name" -msgid "Submit message" -msgstr "Submit message" +msgid "Local identity number" +msgstr "Local identity number" msgid "Locality" msgstr "Locality" -msgid "The following required fields was not found" -msgstr "The following required fields was not found" +msgid "Logged out" +msgstr "Logged out" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Download the X509 certificates as PEM-encoded files." +msgid "Logging out of the following services:" +msgstr "Logging out of the following services:" -msgid "Organizational number" -msgstr "Organizational number" +msgid "Logging out..." +msgstr "Logging out..." -msgid "Post office box" -msgstr "Post office box" +msgid "Login" +msgstr "Login" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgid "Login at" +msgstr "Login at" -msgid "Error" -msgstr "Error" +msgid "Logo" +msgstr "" -msgid "Next" -msgstr "Next" +msgid "Logout" +msgstr "Logout" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Distinguished name (DN) of the person's home organizational unit" +msgid "Logout failed" +msgstr "Logout failed" -msgid "Converted metadata" -msgstr "Converted metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Logout information lost" msgid "Mail" msgstr "Mail" -msgid "No, cancel" -msgstr "No, cancel" +msgid "Manager" +msgstr "Manager" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgid "Message" +msgstr "Message" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Distinguished name (DN) of person's primary Organizational Unit" +msgid "Metadata" +msgstr "Metadata" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "To look at the details for an SAML entity, click on the SAML entity header." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadata not found" -msgid "Enter your username and password" -msgstr "Enter your username and password" +msgid "Metadata overview" +msgstr "Metadata overview" -msgid "Login at" -msgstr "Login at" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" + +msgid "Mobile" +msgstr "Mobile" + +msgid "Next" +msgstr "Next" + +msgid "Nickname" +msgstr "Nickname" msgid "No" msgstr "No" -msgid "Home postal address" -msgstr "Home postal address" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "No RelayState" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP Demo Example" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "No SAML message provided" -msgid "Do you want to logout from all the services above?" -msgstr "Do you want to logout from all the services above?" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "No SAML request provided" -msgid "Given name" -msgstr "Given name" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "No SAML response provided" -msgid "Identity assurance profile" -msgstr "Identity assurance profile" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "No access" -msgid "SAML 2.0 SP Demo Example" -msgstr "SAML 2.0 SP Demo Example" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "No certificate" -msgid "Organization name" -msgstr "Organization name" +msgid "No errors found." +msgstr "No errors found." -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "You are about to send a message. Hit the submit message button to continue." +msgid "No identity providers found. Cannot continue." +msgstr "" -msgid "Home organization domain name" -msgstr "Home organization domain name" +msgid "No, cancel" +msgstr "No, cancel" -msgid "Go back to the file list" -msgstr "Go back to the file list" +msgid "No, only %SP%" +msgstr "No, only %SP%" -msgid "Error report sent" -msgstr "Error report sent" +msgid "Notices" +msgstr "Notices" + +msgid "ORCID researcher identifiers" +msgstr "ORCID researcher identifiers" -msgid "Common name" -msgstr "Common name" +msgid "On hold" +msgstr "On hold" -msgid "Logout failed" -msgstr "Logout failed" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgid "Identity number assigned by public authorities" -msgstr "Identity number assigned by public authorities" +msgid "Optional fields" +msgstr "Optional fields" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation Identity Provider (Remote)" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgid "Some error occurred" -msgstr "Some error occurred" +msgid "Options missing from config file" +msgstr "Options missing from config file" msgid "Organization" msgstr "Organization" -msgid "Choose home organization" -msgstr "Choose home organization" +msgid "Organization name" +msgstr "Organization name" -msgid "Persistent pseudonymous ID" -msgstr "Persistent pseudonymous ID" +msgid "Organization's legal name" +msgstr "Organization's legal name" -msgid "No errors found." -msgstr "No errors found." +msgid "Organizational homepage" +msgstr "Organizational homepage" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Service Provider (Hosted)" +msgid "Organizational number" +msgstr "Organizational number" -msgid "Required fields" -msgstr "Required fields" +msgid "Organizational unit" +msgstr "Organizational unit" -msgid "Domain component (DC)" -msgstr "Domain component (DC)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Page not found" -msgid "Shib 1.3 Service Provider (Remote)" -msgstr "Shib 1.3 Service Provider (Remote)" +msgid "Parse" +msgstr "Parse" msgid "Password" msgstr "Password" -msgid "ORCID researcher identifiers" -msgstr "ORCID researcher identifiers" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Password not set" -msgid "Nickname" -msgstr "Nickname" +msgid "Persistent pseudonymous ID" +msgstr "Persistent pseudonymous ID" -msgid "The error report has been sent to the administrators." -msgstr "The error report has been sent to the administrators." +msgid "Person's non-reassignable, persistent pseudonymous ID at home organization" +msgstr "Person's non-reassignable, persistent pseudonymous ID at home organization" -msgid "Date of birth" -msgstr "Date of birth" +msgid "Person's principal name at home organization" +msgstr "Person's principal name at home organization" -msgid "Private information elements" -msgstr "Private information elements" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Please select the identity provider where you want to authenticate:" -msgid "Person's non-reassignable, persistent pseudonymous ID at home organization" -msgstr "Person's non-reassignable, persistent pseudonymous ID at home organization" +msgid "Post office box" +msgstr "Post office box" -msgid "You are also logged in on these services:" -msgstr "You are also logged in on these services:" +msgid "Postal address" +msgstr "Postal address" -msgid "SimpleSAMLphp Diagnostics" -msgstr "SimpleSAMLphp Diagnostics" +msgid "Postal code" +msgstr "Postal code" -msgid "No, only %SP%" -msgstr "No, only %SP%" +msgid "Preferred language" +msgstr "Preferred language" -msgid "Username" -msgstr "Username" +msgid "Primary affiliation" +msgstr "Primary affiliation" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Go back to SimpleSAMLphp installation page" +msgid "Private information elements" +msgstr "Private information elements" -msgid "You have successfully logged out from all services listed above." -msgstr "You have successfully logged out from all services listed above." +msgid "Processing..." +msgstr "Processing..." -msgid "You are now successfully logged out from %SP%." -msgstr "You are now successfully logged out from %SP%." +msgid "Remember" +msgstr "Remember" -msgid "Affiliation" -msgstr "Affiliation" +msgid "Remember me" +msgstr "Remember me" -msgid "You have been logged out." -msgstr "You have been logged out." +msgid "Remember my choice" +msgstr "Remember my choice" + +msgid "Remember my username" +msgstr "Remember my username" + +msgid "Report errors" +msgstr "Report errors" + +msgid "Required fields" +msgstr "Required fields" msgid "Return to service" msgstr "Return to service" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation Service Provider (Hosted)" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Identity Provider (Hosted)" -msgid "Remember my username" -msgstr "Remember my username" +msgid "SAML 2.0 SP Demo Example" +msgstr "SAML 2.0 SP Demo Example" -msgid "Preferred language" -msgstr "Preferred language" +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP Metadata" + +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Service Provider (Hosted)" msgid "SAML 2.0 Service Provider (Remote)" msgstr "SAML 2.0 Service Provider (Remote)" -msgid "Surname" -msgstr "Surname" +msgid "SAML Subject" +msgstr "SAML Subject" -msgid "The following fields was not recognized" -msgstr "The following fields was not recognized" +msgid "Select" +msgstr "Select" -msgid "User ID" -msgstr "User ID" +msgid "Select configuration file to check:" +msgstr "Select configuration file to check:" -msgid "JPEG Photo" -msgstr "JPEG Photo" +msgid "Select your identity provider" +msgstr "Select your identity provider" -msgid "Postal address" -msgstr "Postal address" +msgid "Send e-mail to help desk" +msgstr "Send e-mail to help desk" -msgid "ADFS SP Metadata" -msgstr "ADFS SP Metadata" +msgid "Send error report" +msgstr "Send error report" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "In SAML 2.0 Metadata XML format:" +msgid "Sending message" +msgstr "Sending message" -msgid "Logging out of the following services:" -msgstr "Logging out of the following services:" +msgid "Service Provider" +msgstr "Service Provider" -msgid "Labeled URI" -msgstr "Labeled URI" +msgid "Session size: %SIZE%" +msgstr "Session size: %SIZE%" + +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metadata" msgid "Shib 1.3 Identity Provider (Hosted)" msgstr "Shib 1.3 Identity Provider (Hosted)" -msgid "Metadata" -msgstr "Metadata" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Identity Provider (Remote)" -msgid "Login" -msgstr "Login" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metadata" -msgid "Yes, all services" -msgstr "Yes, all services" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Service Provider (Hosted)" -msgid "Logged out" -msgstr "Logged out" +msgid "Shib 1.3 Service Provider (Remote)" +msgstr "Shib 1.3 Service Provider (Remote)" -msgid "Postal code" -msgstr "Postal code" +msgid "Shibboleth demo" +msgstr "Shibboleth demo" -msgid "Logging out..." -msgstr "Logging out..." +msgid "SimpleSAMLphp Diagnostics" +msgstr "SimpleSAMLphp Diagnostics" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Identity Provider (Hosted)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp appears to be misconfigured." -msgid "Primary affiliation" -msgstr "Primary affiliation" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp error" -msgid "XML metadata" -msgstr "XML metadata" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + +msgid "Some error occurred" +msgstr "Some error occurred" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "State information lost" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "State information lost, and no way to restart the request" + +msgid "Street" +msgstr "Street" + +msgid "Submit message" +msgstr "Submit message" + +msgid "Superfluous options in config file" +msgstr "Superfluous options in config file" + +msgid "Surname" +msgstr "Surname" + +msgid "Telephone number" +msgstr "Telephone number" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "The authentication was aborted by the user" + +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "The debug information below may be of interest to the administrator / help desk:" + +msgid "The error report has been sent to the administrators." +msgstr "The error report has been sent to the administrators." + +msgid "The following fields was not recognized" +msgstr "The following fields was not recognized" -msgid "Telephone number" -msgstr "Telephone number" +msgid "The following optional fields was not found" +msgstr "The following optional fields was not found" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgid "The following required fields was not found" +msgstr "The following required fields was not found" -msgid "Group membership" -msgstr "Group membership" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "The given page was not found. The URL was: %URL%" -msgid "Entitlement regarding the service" -msgstr "Entitlement regarding the service" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "As you are in debug mode, you get to see the content of the message you are sending:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgid "Certificates" -msgstr "Certificates" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "The parameters sent to the discovery service were not according to specifications." -msgid "Remember" -msgstr "Remember" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Distinguished name (DN) of person's home organization" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "You are about to send a message. Hit the submit message link to continue." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "There is an error in the request to this page. The reason was: %REASON%" -msgid "Organizational unit" -msgstr "Organizational unit" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgid "Local identity number" -msgstr "Local identity number" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgid "Change your home organization" -msgstr "Change your home organization" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgid "User's password hash" -msgstr "User's password hash" +msgid "Title" +msgstr "Title" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "To look at the details for an SAML entity, click on the SAML entity header." -msgid "Completed" -msgstr "Completed" +msgid "Tracking number" +msgstr "" -msgid "Select configuration file to check:" -msgstr "Select configuration file to check:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Unable to locate metadata for %ENTITYID%" -msgid "On hold" -msgstr "On hold" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgid "ADFS Identity Provider (Hosted)" -msgstr "ADFS Identity Provider (Hosted)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Help! I don't remember my password." -msgstr "Help! I don't remember my password." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Unhandled exception" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Unknown certificate" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp error" +msgid "User ID" +msgstr "User ID" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgid "User's password hash" +msgstr "User's password hash" -msgid "or select a file:" -msgstr "or select a file:" +msgid "Username" +msgstr "Username" -msgid "Remember me" -msgstr "Remember me" +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP Demo Example" -msgid "Organization's legal name" -msgstr "Organization's legal name" +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation Identity Provider (Remote)" -msgid "Options missing from config file" -msgstr "Options missing from config file" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation Service Provider (Hosted)" -msgid "The following optional fields was not found" -msgstr "The following optional fields was not found" +msgid "Warning" +msgstr "" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "You can get the metadata xml on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "We did not accept the response sent from the Identity Provider." -msgid "Street" -msgstr "Street" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "When this identity provider tried to create an authentication response, an error occurred." -msgid "Message" -msgstr "Message" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgid "Contact information:" -msgstr "Contact information:" +msgid "World" +msgstr "World" -msgid "Legal name" -msgstr "Legal name" +msgid "XML metadata" +msgstr "XML metadata" -msgid "Optional fields" -msgstr "Optional fields" +msgid "Yes, all services" +msgstr "Yes, all services" -msgid "You have previously chosen to authenticate at" -msgstr "You have previously chosen to authenticate at" +msgid "Yes, continue" +msgstr "Yes, continue" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "You sent something to the login page, but for some reason the password was not sent. Try again please." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." -msgid "Fax number" -msgstr "Fax number" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgid "Shibboleth demo" -msgstr "Shibboleth demo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." -msgid "Error in this metadata entry" -msgstr "Error in this metadata entry" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgid "Session size: %SIZE%" -msgstr "Session size: %SIZE%" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "You are about to send a message. Hit the submit message button to continue." -msgid "Parse" -msgstr "Parse" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "You are about to send a message. Hit the submit message link to continue." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgid "You are also logged in on these services:" +msgstr "You are also logged in on these services:" -msgid "ADFS Service Provider (Remote)" -msgstr "ADFS Service Provider (Remote)" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgid "Choose your home organization" -msgstr "Choose your home organization" +msgid "You are now successfully logged out from %SP%." +msgstr "You are now successfully logged out from %SP%." -msgid "Send e-mail to help desk" -msgstr "Send e-mail to help desk" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "You can get the metadata xml on a dedicated URL:" -msgid "Metadata overview" -msgstr "Metadata overview" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgid "Title" -msgstr "Title" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "You did not present a valid certificate." -msgid "Manager" -msgstr "Manager" +msgid "You have been logged out." +msgstr "You have been logged out." -msgid "Affiliation at home organization" -msgstr "Affiliation at home organization" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgid "Help desk homepage" -msgstr "Help desk homepage" +msgid "You have previously chosen to authenticate at" +msgstr "You have previously chosen to authenticate at" -msgid "Configuration check" -msgstr "Configuration check" +msgid "You have successfully logged out from all services listed above." +msgstr "You have successfully logged out from all services listed above." -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Identity Provider (Remote)" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgid "Your attributes" +msgstr "Your attributes" -msgid "Organizational homepage" -msgstr "Organizational homepage" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." -msgid "Processing..." -msgstr "Processing..." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Your session is valid for %remaining% seconds from now." -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgid "[Preferred choice]" +msgstr "[Preferred choice]" -msgid "Logo" -msgstr "" +msgid "not set" +msgstr "not set" + +msgid "or select a file:" +msgstr "or select a file:" diff --git a/locales/es/LC_MESSAGES/messages.po b/locales/es/LC_MESSAGES/messages.po index 2b8f5545f5..f7d706cf1c 100644 --- a/locales/es/LC_MESSAGES/messages.po +++ b/locales/es/LC_MESSAGES/messages.po @@ -1,765 +1,840 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Falta la respuesta SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Falta el mensaje SAML" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Un servicio solicita que se autentique. Esto significa que debe indicar su nombre de usuario y su clave de acceso en el siguiente formulario." + +msgid "ADFS IdP Metadata" +msgstr "Metadatos IdP ADFS" + +msgid "ADFS Identity Provider (Hosted)" +msgstr "Proveedor de Identidad ADFS (local)" + +msgid "ADFS SP Metadata" +msgstr "Metadatos SP ADFS" + +msgid "ADFS Service Provider (Remote)" +msgstr "Proveedor de Servicio ADFS (remoto)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Afiliación" + +msgid "Affiliation at home organization" +msgstr "Grupo" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Se ha producido un error al tratar de crear la petición SAML." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Se ha producido un error al tratar de procesar la solicitud de cierre de sesión." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Se lanzó una excepción no controlada." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Si está en modo de depuración, verá el contenido del mensaje que va a enviar:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Autenticacion abortada" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Error en la Autenticacion en el origen %AUTHSOURCE%. La razon fue: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Fallo de autenticación: El certificado enviado por su navegador es inválido o no puede ser leído" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Fallo de autenticación:el certificado enviado por su navegador es desconocido" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Fallo de autenticación: su navegador no envió ningún certificado" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Error en la Autenticacion de origen" +msgid "Authentication status" +msgstr "Estado de la autenticación" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Recibida una solicitud incorrecta" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Solicitud errónea al servicio de descubrimiento" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "Error del CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "No se puedo recuperar información de la sesión" + +msgid "Certificates" +msgstr "Certificados" + +msgid "Change your home organization" +msgstr "Cambiar su organización origen" + +msgid "Choose home organization" +msgstr "Seleccionar la organización origen" + +msgid "Choose your home organization" +msgstr "Seleccione su organización origen" + +msgid "Common name" +msgstr "Nombre común (CN)" + +msgid "Completed" +msgstr "Terminado" + +msgid "Configuration check" +msgstr "Comprobar configuración" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Error de configuración" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Error en la creación de la solictud" +msgid "Contact information:" +msgstr "Información de contacto:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Solicitud errónea al servicio de descubrimiento" +msgid "Converted metadata" +msgstr "Metadatos convertidos" + +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "No se pudo crear la respuesta de autenticación" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Certificado no válido" +msgid "Date of birth" +msgstr "Fecha de nacimiento" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Error de LDAP" +msgid "Debug information" +msgstr "Información de depuración" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Se perdió la información para cerrar la sesión" +msgid "Debug information to be used by your support staff" +msgstr "Información de depuración útil para sus técnicos de soporte" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Error al procesar la solicitud de cierre de sesión" +msgid "Display name" +msgstr "Nombre para mostrar" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Error al cargar los metadatos" +msgid "Distinguished name (DN) of person's home organization" +msgstr "DN de su organización origen" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadatos no econtrados" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Distinguished name (DN) de la entrada del directorio que representa el identificador primario de la Unidad Organizativa." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Acceso no definido" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "DN de la Unidad Organizativa (OU) de su organización origen" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "No certificado" +msgid "Do you want to logout from all the services above?" +msgstr "¿Desea desconectarse de todos los servicios que se muestran más arriba?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "RelayState no definido" +msgid "Domain component (DC)" +msgstr "Componente de dominio (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Información de estado perdida" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Descargar los certificados X509 en formato PEM." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Página no encontrada" +msgid "E-mail address:" +msgstr "Correo-e:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "No ha establecido una clave de acceso" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "No existe un usuario con el identificador indicado, o la contraseña indicada es incorrecta. Por favor revise el identificador de usuario e inténtelo de nuevo." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Error al procesar la respuesta procedente del IdP" +msgid "Enter your username and password" +msgstr "Indique su nombre de usuario y clave de acceso" + +msgid "Entitlement regarding the service" +msgstr "Derecho relativo al servicio" + +msgid "Error" +msgstr "Los datos que ha suministrado no son válidos" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Error en la creación de la solictud" + +msgid "Error in this metadata entry" +msgstr "Error en los metadatos de la entrada" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Error al cargar los metadatos" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Error al procesar la solicitud del proveedor de servicio" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Error al procesar la respuesta procedente del IdP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Error al procesar la solicitud de cierre de sesión" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Hubo un error por parte del IdP" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Excepción no controlada" +msgid "Error report sent" +msgstr "Informe de error enviado" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Certificado desconocido" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Error al tratar de comunicar con el servidor CAS" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Autenticacion abortada" +msgid "Explain what you did when this error occurred..." +msgstr "Explique lo que ha hecho para llegar a este error..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Nombre de usuario o contraseña incorrectos" +msgid "Fax number" +msgstr "Número de fax" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Usted accedió a la interfaz consumidora de aserciones pero no incluyó una respuesta de autenticación SAML." +msgid "Format" +msgstr "Formato" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Error en la Autenticacion en el origen %AUTHSOURCE%. La razon fue: %REASON%" +msgid "Given name" +msgstr "Nombre" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Existe un error en la solicitud de esta página. La razón es: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Volver a la página de instalación de SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Error al tratar de comunicar con el servidor CAS" +msgid "Go back to the file list" +msgstr "Volver al listado de archivos" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Parece que hay un error en la configuración de SimpleSAMLphp" +msgid "Group membership" +msgstr "Membresía a grupos" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Se ha producido un error al tratar de crear la petición SAML." +msgid "Hello, %who%!" +msgstr "Hola, %who%!" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Los parametros enviados al servicio de descubrimiento no se ajustan a la especificación." +msgid "Hello, Untranslated World!" +msgstr "Hola, mundo traducido!" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "El proveedor de identidad ha detectado un error al crear respuesta de autenticación." +msgid "Help desk homepage" +msgstr "Página de soporte técnico" + +msgid "Help! I don't remember my password." +msgstr "¡Socorro! Se me ha olvidado mi clave de acceso." + +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Aquí están los metadatos que SimpleSAMLphp ha generado. Puede enviar este documento de metadatos a sus socios de confianza para configurar una federación." + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Hola, esta es la página de estado de SimpleSAMLphp. Desde aquí puede ver si su sesión ha caducado, cuanto queda hasta que lo haga y todos los atributos existentes en su sesión." + +msgid "Home organization domain name" +msgstr "Identificador único de la organización de origen" + +msgid "Home postal address" +msgstr "Dirección de su domicilio" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Fallo de autenticación: El certificado enviado por su navegador es inválido o no puede ser leído" +msgid "Home telephone" +msgstr "Teléfono de su domicilio" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP es la base de datos de usuarios, es necesario contactar con ella cuando usted decide entrar. Se ha producido un error en dicho acceso" +msgid "How to get help" +msgstr "Cómo obtener asistencia" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "La información sobre la operación de cierre de sesión se ha perdido. Debería volver al servicio del que intenta salir e intentar cerrar la sesión de nuevo. La información para cerrar la sesión se almacena durante un tiempo limitado, generalmente mucho más tiempo del que debería tardar la operación de cierre de sesión, de modo que este error puede deberse a algun error en la configuración. Si el problema persiste, contacte con el proveedor del servicio." +msgid "Identity assurance profile" +msgstr "Identificador del perfil de garantía" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Se ha producido un error al tratar de procesar la solicitud de cierre de sesión." +msgid "Identity number assigned by public authorities" +msgstr "Número de la Seguridad Social" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Hay errores de configuración en su instalación de SimpleSAMLphp. Si es usted el administrador del servicio, cerciórese de que la configuración de los metadatos es correcta." +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Por favor, si informa de este error, mantenga el tracking ID que permite encontrar su sesión en los registros de que dispone el administrador del sistema:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "No se puede localizar los metadatos en %ENTITYID%" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "En formato xml de metadatos SAML 2.0:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Este punto de acceso no está habilitado. Verifique las opciones de habilitación en la configuración de SimpleSAMLphp." +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "En un fichero de formato SimpleSAMLphp - utilice esta opción si está usando una entidad SimpleSAMLphp en el otro extremo:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Fallo de autenticación: su navegador no envió ningún certificado" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Nombre de usuario o contraseña incorrectos" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "El iniciador de esta solicitud no proporcionó el parámetro RelayState que indica donde ir a continuación" +msgid "Incorrect username or password." +msgstr "Nombre de usuario o contraseña erróneos" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Información de estado perdida y no hay manera de restablecer la petición" +msgid "Information about your current session" +msgstr "Información sobre su sesión actual" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "La página que indicó no se encontró. La URL es: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Certificado no válido" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "La página que indicó no se encontró. El motivo es: %REASON% La URL es: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "La clave de acceso del fichero de configuración (auth.adminpassword) no ha sido cambiada de su valor por defecto. Por favor, edite dicho fichero" +msgid "JPEG Photo" +msgstr "Fotografía en JPEG" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "No se ha podido validar el certificado recibido" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Error de LDAP" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "No ha sido posible aceptar la respuesta enviada por el proveedor de identidad." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP es la base de datos de usuarios, es necesario contactar con ella cuando usted decide entrar. Se ha producido un error en dicho acceso" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Este IdP ha recibido una petición de autenticación de un proveedor de servicio pero se ha producido un error al tratar de procesar la misma." +msgid "Labeled URI" +msgstr "URI etiquetado" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "El IdP respondió a la solicitud con un error. (El código de estado en la respuesta SAML no fue exitoso)" +msgid "Language" +msgstr "Idioma" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Usted accedió a la interfaz SingleLogoutService pero no incluyó un mensaje SAML LogoutRequest o LogoutResponse" +msgid "Legal name" +msgstr "Nombre legal" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Se lanzó una excepción no controlada." +msgid "Local identity number" +msgstr "Número de identificación local" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Fallo de autenticación:el certificado enviado por su navegador es desconocido" +msgid "Locality" +msgstr "Localidad" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "La Autenticacion fue abortada por el usuario" +msgid "Logged out" +msgstr "Desconectado" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "No existe un usuario con el identificador indicado, o la contraseña indicada es incorrecta. Por favor revise el identificador de usuario e inténtelo de nuevo." +msgid "Logging out of the following services:" +msgstr "Desconectarse de los siguientes servicios:" -msgid "Format" -msgstr "Formato" +msgid "Logging out..." +msgstr "Desconectando..." -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Hola, esta es la página de estado de SimpleSAMLphp. Desde aquí puede ver si su sesión ha caducado, cuanto queda hasta que lo haga y todos los atributos existentes en su sesión." +msgid "Login" +msgstr "Login" + +msgid "Login at" +msgstr "Identificarse en" msgid "Logout" msgstr "Salir" -msgid "SAML Subject" -msgstr "Identificador SAML" +msgid "Logout failed" +msgstr "Proceso de desconexión fallido" -msgid "Your attributes" -msgstr "Atributos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Se perdió la información para cerrar la sesión" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Su sesión será valida durante %remaining% segundos." +msgid "Mail" +msgstr "Correo electrónico" -msgid "not set" -msgstr "sin valor" +msgid "Manager" +msgstr "Gestor" -msgid "Hello, Untranslated World!" -msgstr "Hola, mundo traducido!" +msgid "Message" +msgstr "Mensaje" -msgid "World" -msgstr "Mundo" +msgid "Metadata" +msgstr "Metadatos" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Por favor, seleccione el proveedor de identidad donde desea autenticarse" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadatos no econtrados" -msgid "Remember my choice" -msgstr "Recordar mi elección" +msgid "Metadata overview" +msgstr "Ver metadatos" -msgid "Select" -msgstr "Seleccione" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Select your identity provider" -msgstr "Seleccione su proveedor de identidad" +msgid "Mobile" +msgstr "Teléfono móvil" -msgid "Sending message" -msgstr "Enviando mensaje" +msgid "Next" +msgstr "Siguiente" -msgid "Yes, continue" -msgstr "Sí" +msgid "Nickname" +msgstr "Alias" -msgid "Debug information" -msgstr "Información de depuración" +msgid "No" +msgstr "No" -msgid "E-mail address:" -msgstr "Correo-e:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "RelayState no definido" -msgid "Explain what you did when this error occurred..." -msgstr "Explique lo que ha hecho para llegar a este error..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Falta el mensaje SAML" -msgid "How to get help" -msgstr "Cómo obtener asistencia" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "Falta la solicitud SAML" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Por favor, si informa de este error, mantenga el tracking ID que permite encontrar su sesión en los registros de que dispone el administrador del sistema:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Falta la respuesta SAML" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Si lo desea, indique su dirección electrónica, para que los administradores puedan ponerse en contacto con usted y obtener datos adicionales de su problema" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Acceso no permitido" -msgid "Report errors" -msgstr "Informar del error" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "No certificado" -msgid "Send error report" -msgstr "Envíe el informe de error" +msgid "No errors found." +msgstr "No se han encontrado errores" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "La siguiente información de depuración puede ser de utilidad para el administrador del sistema o el centro de atención a usuarios:" +msgid "No identity providers found. Cannot continue." +msgstr "No se ha encontrado ningún proveedor de identidad. Imposible continuar." -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Este error se debe probablemente a un comportamiento inesperado o a una configuración incorrecta de SimpleSAMLphp. Póngase en contacto con el administrador de este servicio de conexión y envíele el mensaje de error anterior." +msgid "No, cancel" +msgstr "No, cancelar" -msgid "[Preferred choice]" -msgstr "[Opción preference]" +msgid "No, only %SP%" +msgstr "No, sólo %SPS" + +msgid "Notices" +msgstr "Avisos" msgid "ORCID researcher identifiers" msgstr "Metadatos IdP ADFS" -msgid "Hello, %who%!" -msgstr "Hola, %who%!" +msgid "On hold" +msgstr "En espera" -msgid "Person's principal name at home organization" -msgstr "Identificador único de la persona en su organización de origen" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Uno o más de los servicios en los que está autenticado no permite desconexión. Para asegurarse de que todas sus sesiones se cierran, se le recomienda que cierre todas las ventanas de su navegador." -msgid "Superfluous options in config file" -msgstr "Opciones sobrantes en el fichero de configuración" +msgid "Optional fields" +msgstr "Datos opcionales" -msgid "Mobile" -msgstr "Teléfono móvil" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Si lo desea, indique su dirección electrónica, para que los administradores puedan ponerse en contacto con usted y obtener datos adicionales de su problema" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Proveedor de Servicio Shib 1.3 (local)" +msgid "Options missing from config file" +msgstr "Opciones que faltan en el fichero de configuración" -msgid "Display name" -msgstr "Nombre para mostrar" +msgid "Organization" +msgstr "Organización" -msgid "SAML 2.0 SP Metadata" -msgstr "Metadatos SP SAML 2.0" +msgid "Organization name" +msgstr "Nombre de la organización" -msgid "ADFS IdP Metadata" -msgstr "Metadatos IdP ADFS" +msgid "Organization's legal name" +msgstr "Nombre legal de su organización" -msgid "Notices" -msgstr "Avisos" +msgid "Organizational homepage" +msgstr "Página de su organización" + +msgid "Organizational number" +msgstr "Número de la organización" -msgid "Home telephone" -msgstr "Teléfono de su domicilio" +msgid "Organizational unit" +msgstr "Unidad organizativa" -msgid "Service Provider" -msgstr "Proveedor de servicio" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Página no encontrada" -msgid "Incorrect username or password." -msgstr "Nombre de usuario o contraseña erróneos" +msgid "Parse" +msgstr "Analizar" -msgid "Submit message" -msgstr "Enviar mensaje" +msgid "Password" +msgstr "Clave de acceso" -msgid "Locality" -msgstr "Localidad" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "No ha establecido una clave de acceso" -msgid "The following required fields was not found" -msgstr "Los siguientes datos obligatorios no se han encontrado" +msgid "Persistent pseudonymous ID" +msgstr "ID anónimo persistente" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Descargar los certificados X509 en formato PEM." +msgid "Person's principal name at home organization" +msgstr "Identificador único de la persona en su organización de origen" -msgid "Organizational number" -msgstr "Número de la organización" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Por favor, seleccione el proveedor de identidad donde desea autenticarse" msgid "Post office box" msgstr "Código postal" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Un servicio solicita que se autentique. Esto significa que debe indicar su nombre de usuario y su clave de acceso en el siguiente formulario." - -msgid "Error" -msgstr "Los datos que ha suministrado no son válidos" - -msgid "Next" -msgstr "Siguiente" +msgid "Postal address" +msgstr "Dirección postal" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "DN de la Unidad Organizativa (OU) de su organización origen" +msgid "Postal code" +msgstr "Código postal" -msgid "Converted metadata" -msgstr "Metadatos convertidos" +msgid "Preferred language" +msgstr "Idioma preferido" -msgid "Mail" -msgstr "Correo electrónico" +msgid "Primary affiliation" +msgstr "Afiliación primaria" -msgid "No, cancel" -msgstr "No" +msgid "Private information elements" +msgstr "Elementos de información privada" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Ha seleccionado %HOMEORG% como organización origen. Si esta información es incorrecta puede seleccionar otra." +msgid "Remember" +msgstr "Recordar el consentimiento" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Distinguished name (DN) de la entrada del directorio que representa el identificador primario de la Unidad Organizativa." +msgid "Remember me" +msgstr "Recordarme" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Para ver los detalles de una entidad SAML, haga click en la cabecera de la entidad." +msgid "Remember my choice" +msgstr "Recordar mi elección" -msgid "Enter your username and password" -msgstr "Indique su nombre de usuario y clave de acceso" +msgid "Remember my username" +msgstr "Recordar mi nombre de usuario" -msgid "Login at" -msgstr "Identificarse en" +msgid "Report errors" +msgstr "Informar del error" -msgid "No" -msgstr "No" +msgid "Required fields" +msgstr "Campos obligatorios" -msgid "Home postal address" -msgstr "Dirección de su domicilio" +msgid "Return to service" +msgstr "Volver al servicio" -msgid "WS-Fed SP Demo Example" -msgstr "Ejemplo WS-Fed SP" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "Proveedor de Identidad SAML 2.0 (local)" msgid "SAML 2.0 Identity Provider (Remote)" msgstr "Proveedor de Identidad SAML 2.0 (remoto)" -msgid "Do you want to logout from all the services above?" -msgstr "¿Desea desconectarse de todos los servicios que se muestran más arriba?" - -msgid "Given name" -msgstr "Nombre" - -msgid "Identity assurance profile" -msgstr "Identificador del perfil de garantía" - msgid "SAML 2.0 SP Demo Example" msgstr "Ejemplo de SAML 2.0 SP" -msgid "Organization name" -msgstr "Nombre de la organización" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Se va a proceder a enviar un mensaje. Pulse el botón \"Enviar mensaje\" para continuar." +msgid "SAML 2.0 SP Metadata" +msgstr "Metadatos SP SAML 2.0" -msgid "Home organization domain name" -msgstr "Identificador único de la organización de origen" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "Proveedor de Servicio SAML 2.0 (local)" -msgid "Go back to the file list" -msgstr "Volver al listado de archivos" +msgid "SAML Subject" +msgstr "Identificador SAML" -msgid "Error report sent" -msgstr "Informe de error enviado" +msgid "Select" +msgstr "Seleccione" -msgid "Common name" -msgstr "Nombre común (CN)" +msgid "Select configuration file to check:" +msgstr "Seleccione el fichero de configuración a comprobar:" -msgid "Logout failed" -msgstr "Proceso de desconexión fallido" +msgid "Select your identity provider" +msgstr "Seleccione su proveedor de identidad" -msgid "Identity number assigned by public authorities" -msgstr "Número de la Seguridad Social" +msgid "Send e-mail to help desk" +msgstr "Enviar correo electrónico al soporte técnico" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "Proveedor de Identidad WS-Federation (remoto)" +msgid "Send error report" +msgstr "Envíe el informe de error" -msgid "Some error occurred" -msgstr "Se produjo un error" +msgid "Sending message" +msgstr "Enviando mensaje" -msgid "Organization" -msgstr "Organización" +msgid "Service Provider" +msgstr "Proveedor de servicio" -msgid "Choose home organization" -msgstr "Seleccionar la organización origen" +msgid "Session size: %SIZE%" +msgstr "Tamaño de la sesión: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "ID anónimo persistente" +msgid "Shib 1.3 IdP Metadata" +msgstr "Metadatos IdP Shib 1.3" -msgid "No errors found." -msgstr "No se han encontrado errores" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Proveedor de Identidad Shib 1.3 (local)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "Proveedor de Servicio SAML 2.0 (local)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Proveedor de Identidad Shib 1.3 (remoto)" -msgid "Required fields" -msgstr "Campos obligatorios" +msgid "Shib 1.3 SP Metadata" +msgstr "Metadatos SP Shib 1.3" -msgid "Domain component (DC)" -msgstr "Componente de dominio (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Proveedor de Servicio Shib 1.3 (local)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Proveedor de Servicio Shib 1.3 (remoto)" -msgid "Password" -msgstr "Clave de acceso" - -msgid "Nickname" -msgstr "Alias" - -msgid "The error report has been sent to the administrators." -msgstr "El informe de error ha sido enviado a los administradores." +msgid "Shibboleth demo" +msgstr "Ejemplo Shibboleth" -msgid "Date of birth" -msgstr "Fecha de nacimiento" +msgid "SimpleSAMLphp Diagnostics" +msgstr "Diagnóstico SimpleSAMLphp" -msgid "Private information elements" -msgstr "Elementos de información privada" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Parece que hay un error en la configuración de SimpleSAMLphp" -msgid "You are also logged in on these services:" -msgstr "También está autenticado en los siguientes servicios:" +msgid "SimpleSAMLphp error" +msgstr "Error de SimpleSAMLphp" -msgid "SimpleSAMLphp Diagnostics" -msgstr "Diagnóstico SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "Su navegador no soporta Javascript, pulse el botón a continuación para continuar." -msgid "No, only %SP%" -msgstr "No, sólo %SPS" +msgid "Some error occurred" +msgstr "Se produjo un error" -msgid "Username" -msgstr "Nombre de usuario" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Información de estado perdida" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Volver a la página de instalación de SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Información de estado perdida y no hay manera de restablecer la petición" -msgid "You have successfully logged out from all services listed above." -msgstr "Ha sido correctamente desconectado de todo los servicios listados a continuación" +msgid "Street" +msgstr "Calle" -msgid "You are now successfully logged out from %SP%." -msgstr "Ha sido desconectado correctamente de %SP%." +msgid "Submit message" +msgstr "Enviar mensaje" -msgid "Affiliation" -msgstr "Afiliación" +msgid "Superfluous options in config file" +msgstr "Opciones sobrantes en el fichero de configuración" -msgid "You have been logged out." -msgstr "Ha sido desconectado. Gracias por usar este servicio." +msgid "Surname" +msgstr "Apellidos" -msgid "Return to service" -msgstr "Volver al servicio" +msgid "Telephone number" +msgstr "Número de teléfono" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "Proveedor de Servicios WS-Federation (local)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "El IdP respondió a la solicitud con un error. (El código de estado en la respuesta SAML no fue exitoso)" -msgid "Remember my username" -msgstr "Recordar mi nombre de usuario" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "La Autenticacion fue abortada por el usuario" -msgid "Preferred language" -msgstr "Idioma preferido" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "La siguiente información de depuración puede ser de utilidad para el administrador del sistema o el centro de atención a usuarios:" -msgid "Surname" -msgstr "Apellidos" +msgid "The error report has been sent to the administrators." +msgstr "El informe de error ha sido enviado a los administradores." msgid "The following fields was not recognized" msgstr "No se han reconocido los siguientes datos" -msgid "User ID" -msgstr "Identificador de usuario" +msgid "The following optional fields was not found" +msgstr "Los siguientes datos opcionales no se han encontrado" -msgid "JPEG Photo" -msgstr "Fotografía en JPEG" +msgid "The following required fields was not found" +msgstr "Los siguientes datos obligatorios no se han encontrado" -msgid "Postal address" -msgstr "Dirección postal" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "La página que indicó no se encontró. La URL es: %URL%" -msgid "ADFS SP Metadata" -msgstr "Metadatos SP ADFS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "La página que indicó no se encontró. El motivo es: %REASON% La URL es: %URL%" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "En formato xml de metadatos SAML 2.0:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "La información sobre la operación de cierre de sesión se ha perdido. Debería volver al servicio del que intenta salir e intentar cerrar la sesión de nuevo. La información para cerrar la sesión se almacena durante un tiempo limitado, generalmente mucho más tiempo del que debería tardar la operación de cierre de sesión, de modo que este error puede deberse a algun error en la configuración. Si el problema persiste, contacte con el proveedor del servicio." -msgid "Logging out of the following services:" -msgstr "Desconectarse de los siguientes servicios:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "El iniciador de esta solicitud no proporcionó el parámetro RelayState que indica donde ir a continuación" -msgid "Labeled URI" -msgstr "URI etiquetado" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Los parametros enviados al servicio de descubrimiento no se ajustan a la especificación." -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Proveedor de Identidad Shib 1.3 (local)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Metadata" -msgstr "Metadatos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "La clave de acceso del fichero de configuración (auth.adminpassword) no ha sido cambiada de su valor por defecto. Por favor, edite dicho fichero" -msgid "Login" -msgstr "Login" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Existe un error en la solicitud de esta página. La razón es: %REASON%" -msgid "Yes, all services" -msgstr "Si, todos los servicios" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Hay errores de configuración en su instalación de SimpleSAMLphp. Si es usted el administrador del servicio, cerciórese de que la configuración de los metadatos es correcta." -msgid "Logged out" -msgstr "Desconectado" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Este IdP ha recibido una petición de autenticación de un proveedor de servicio pero se ha producido un error al tratar de procesar la misma." -msgid "Postal code" -msgstr "Código postal" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Este punto de acceso no está habilitado. Verifique las opciones de habilitación en la configuración de SimpleSAMLphp." -msgid "Logging out..." -msgstr "Desconectando..." +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Este error se debe probablemente a un comportamiento inesperado o a una configuración incorrecta de SimpleSAMLphp. Póngase en contacto con el administrador de este servicio de conexión y envíele el mensaje de error anterior." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "Proveedor de Identidad SAML 2.0 (local)" +msgid "Title" +msgstr "Tratamiento" -msgid "Primary affiliation" -msgstr "Afiliación primaria" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Para ver los detalles de una entidad SAML, haga click en la cabecera de la entidad." -msgid "XML metadata" -msgstr "Metadatos XML" +msgid "Tracking number" +msgstr "Número de seguimiento" -msgid "Telephone number" -msgstr "Número de teléfono" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "No se puede localizar los metadatos en %ENTITYID%" msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." msgstr "Imposible desconectarse de uno o más servicios. Para asegurar que todas sus sesiones han sido cerradas, se recomienda que cierre su navegador web." -msgid "Group membership" -msgstr "Membresía a grupos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Entitlement regarding the service" -msgstr "Derecho relativo al servicio" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Excepción no controlada" -msgid "Shib 1.3 SP Metadata" -msgstr "Metadatos SP Shib 1.3" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Certificado desconocido" -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Si está en modo de depuración, verá el contenido del mensaje que va a enviar:" +msgid "User ID" +msgstr "Identificador de usuario" -msgid "Certificates" -msgstr "Certificados" +msgid "User's password hash" +msgstr "Clave o contraseña y método de encriptación utilizado" -msgid "Remember" -msgstr "Recordar el consentimiento" +msgid "Username" +msgstr "Nombre de usuario" -msgid "Distinguished name (DN) of person's home organization" -msgstr "DN de su organización origen" +msgid "WS-Fed SP Demo Example" +msgstr "Ejemplo WS-Fed SP" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Se va a proceder a enviar un mensaje. Pulse el enlace \"Enviar mensaje\" para continuar." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "Proveedor de Identidad WS-Federation (remoto)" -msgid "Organizational unit" -msgstr "Unidad organizativa" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "Proveedor de Servicios WS-Federation (local)" -msgid "Local identity number" -msgstr "Número de identificación local" +msgid "Warning" +msgstr "Aviso" -msgid "Shib 1.3 IdP Metadata" -msgstr "Metadatos IdP Shib 1.3" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "No ha sido posible aceptar la respuesta enviada por el proveedor de identidad." -msgid "Change your home organization" -msgstr "Cambiar su organización origen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "El proveedor de identidad ha detectado un error al crear respuesta de autenticación." -msgid "User's password hash" -msgstr "Clave o contraseña y método de encriptación utilizado" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "¡Muy mal! - Sin su nombre de usuario y su clave de acceso usted no se puede identificar y acceder al servicio. A lo mejor hay alguien que puede ayudarle. ¡Póngase en contacto con el centro de ayuda de su universidad!" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "En un fichero de formato SimpleSAMLphp - utilice esta opción si está usando una entidad SimpleSAMLphp en el otro extremo:" +msgid "World" +msgstr "Mundo" -msgid "Completed" -msgstr "Terminado" +msgid "XML metadata" +msgstr "Metadatos XML" -msgid "Select configuration file to check:" -msgstr "Seleccione el fichero de configuración a comprobar:" +msgid "Yes, all services" +msgstr "Si, todos los servicios" -msgid "On hold" -msgstr "En espera" +msgid "Yes, continue" +msgstr "Sí" -msgid "ADFS Identity Provider (Hosted)" -msgstr "Proveedor de Identidad ADFS (local)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ha accedido al servicio de resolución de artefactos, pero no incluyó un mensaje SAML apropiado. Tenga en cuenta que esta página no está pensada para su acceso directo." -msgid "Help! I don't remember my password." -msgstr "¡Socorro! Se me ha olvidado mi clave de acceso." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ha accedido al servicio de consumo de aserciones, pero no incluyó una respuesta de autenticación SAML. Tenga en cuenta que esta página no está pensada para su acceso directo." -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Puede desactivar el modo de depuración en el fichero de configuración global de SimpleSAMLphp config/config.php." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ha accedido al servicio de Single Sign-On, pero no incluyó una solicitud de autenticación SAML. Tenga en cuenta que esta página no está pensada para su acceso directo." -msgid "SimpleSAMLphp error" -msgstr "Error de SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Usted accedió a la interfaz SingleLogoutService pero no incluyó un mensaje SAML LogoutRequest o LogoutResponse" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Uno o más de los servicios en los que está autenticado no permite desconexión. Para asegurarse de que todas sus sesiones se cierran, se le recomienda que cierre todas las ventanas de su navegador." +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Se va a proceder a enviar un mensaje. Pulse el botón \"Enviar mensaje\" para continuar." -msgid "Remember me" -msgstr "Recordarme" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Se va a proceder a enviar un mensaje. Pulse el enlace \"Enviar mensaje\" para continuar." -msgid "Organization's legal name" -msgstr "Nombre legal de su organización" +msgid "You are also logged in on these services:" +msgstr "También está autenticado en los siguientes servicios:" -msgid "Options missing from config file" -msgstr "Opciones que faltan en el fichero de configuración" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Está accediendo a un sistema en pre-producción. Esta configuración es únicamente para pruebas y para verificación del sistema de preproducción. Si siguió un enlace que alguien le envió para llegar hasta aquí y no es un probador probablemente se trata de un error, y usted no debería estar aquí" -msgid "The following optional fields was not found" -msgstr "Los siguientes datos opcionales no se han encontrado" +msgid "You are now successfully logged out from %SP%." +msgstr "Ha sido desconectado correctamente de %SP%." msgid "You can get the metadata xml on a dedicated URL:" msgstr "Puede obtener una URL con los metadatos xml:" -msgid "Street" -msgstr "Calle" - -msgid "Message" -msgstr "Mensaje" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Puede desactivar el modo de depuración en el fichero de configuración global de SimpleSAMLphp config/config.php." -msgid "Contact information:" -msgstr "Información de contacto:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "No se ha podido validar el certificado recibido" -msgid "Legal name" -msgstr "Nombre legal" +msgid "You have been logged out." +msgstr "Ha sido desconectado. Gracias por usar este servicio." -msgid "Optional fields" -msgstr "Datos opcionales" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Ha seleccionado %HOMEORG% como organización origen. Si esta información es incorrecta puede seleccionar otra." msgid "You have previously chosen to authenticate at" msgstr "Previamente solicitó autenticarse en" +msgid "You have successfully logged out from all services listed above." +msgstr "Ha sido correctamente desconectado de todo los servicios listados a continuación" + msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." msgstr "Usted envió algo a la página de acceso pero, por algún motivo, la clave no fue enviada. Inténtelo de nuevo, por favor." -msgid "Fax number" -msgstr "Número de fax" - -msgid "Shibboleth demo" -msgstr "Ejemplo Shibboleth" - -msgid "Error in this metadata entry" -msgstr "Error en los metadatos de la entrada" - -msgid "Session size: %SIZE%" -msgstr "Tamaño de la sesión: %SIZE%" - -msgid "Parse" -msgstr "Analizar" - -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "¡Muy mal! - Sin su nombre de usuario y su clave de acceso usted no se puede identificar y acceder al servicio. A lo mejor hay alguien que puede ayudarle. ¡Póngase en contacto con el centro de ayuda de su universidad!" - -msgid "ADFS Service Provider (Remote)" -msgstr "Proveedor de Servicio ADFS (remoto)" - -msgid "Choose your home organization" -msgstr "Seleccione su organización origen" - -msgid "Send e-mail to help desk" -msgstr "Enviar correo electrónico al soporte técnico" - -msgid "Metadata overview" -msgstr "Ver metadatos" - -msgid "Title" -msgstr "Tratamiento" - -msgid "Manager" -msgstr "Gestor" - -msgid "Affiliation at home organization" -msgstr "Grupo" - -msgid "Help desk homepage" -msgstr "Página de soporte técnico" - -msgid "Configuration check" -msgstr "Comprobar configuración" +msgid "Your attributes" +msgstr "Atributos" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Proveedor de Identidad Shib 1.3 (remoto)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "No se ha podido recuperar su sesión por dificultades técnicas. Por favor, inténtelo de nuevo transcurridos unos minutos." -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Aquí están los metadatos que SimpleSAMLphp ha generado. Puede enviar este documento de metadatos a sus socios de confianza para configurar una federación." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Su sesión será valida durante %remaining% segundos." -msgid "Organizational homepage" -msgstr "Página de su organización" +msgid "[Preferred choice]" +msgstr "[Opción preference]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Está accediendo a un sistema en pre-producción. Esta configuración es únicamente para pruebas y para verificación del sistema de preproducción. Si siguió un enlace que alguien le envió para llegar hasta aquí y no es un probador probablemente se trata de un error, y usted no debería estar aquí" +msgid "not set" +msgstr "sin valor" diff --git a/locales/et/LC_MESSAGES/messages.po b/locales/et/LC_MESSAGES/messages.po index 442f8560ff..b367315f7e 100644 --- a/locales/et/LC_MESSAGES/messages.po +++ b/locales/et/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "SAML-vastust ei pakutud" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "SAML-teade puudub" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Teenus nõuab autentimist. Palun sisesta allpool olevasse vormi oma kasutajatunnus ja parool." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Rollid" + +msgid "Affiliation at home organization" +msgstr "Rollid koduorganisatsioonis" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "SAML päringu loomisel ilmnes tõrge." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Väljalogimispäringu töötlemisel tekkis tõrge" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Ilmnes käsitlemata tõrge." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Kuna oled silumisrežiimis, siis on sul võimalik näha saadetava teate sisu:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Autentimine katkestatud" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Tõrge autentimisallikas %AUTHSOURCE%. Põhjus: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Autentimine ei õnnestunud: brauseri poolt saadetud sertifikaat on vigane või pole loetav" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Autentimine ei õnnestunud: brauser saatis tundmatu sertifikaadi" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Autentimine ei õnnestunud: brauser ei saatnud ühtegi sertifikaati" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Autentimisallika tõrge" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Saabus halb päring" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Halb tuvastusteenuse päring" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS tõrge" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Sertifikaadid" + +msgid "Change your home organization" +msgstr "Muuda oma koduorganisatsiooni" + +msgid "Choose home organization" +msgstr "Vali koduorganisatsioon" + +msgid "Choose your home organization" +msgstr "Vali oma koduorganisatsioon" + +msgid "Common name" +msgstr "Üldnimi" + +msgid "Completed" +msgstr "Lõpetatud" + +msgid "Configuration check" +msgstr "Seadistuste kontroll" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Konfiguratsioonitõrge" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Tõrge päringu loomisel" +msgid "Contact information:" +msgstr "Kontaktinfo:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Halb tuvastusteenuse päring" +msgid "Converted metadata" +msgstr "Teisendatud metaandmed" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Autentimisvastuse loomine ei õnnestunud" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Vigane sertifikaat" +msgid "Date of birth" +msgstr "Sünniaeg" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP-tõrge" +msgid "Debug information" +msgstr "Silumisinfo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Väljalogimisinfo läks kaotsi" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Tõrge väljalogimispäringu töötlemisel" +msgid "Display name" +msgstr "Kuvatav nimi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Metaandmete laadimise tõrge" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Koduorganisatsiooni unikaalne nimi (DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metaandmeid ei leitud" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Peamise allüksuse unikaalne nimi (DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Ligipääs puudub" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Koduorganisatsiooni allüksuse unikaalne nimi (DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Sertifikaat puudub" +msgid "Do you want to logout from all the services above?" +msgstr "Kas sa soovid kõigist ülal loetletud teenustest välja logida?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "RelayState puudub" +msgid "Domain component (DC)" +msgstr "Domeeni komponent (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Olekuinfo kadunud" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Lae alla X509 sertifikaadid PEM kodeeringus failidena." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Lehekülge ei leitud" +msgid "E-mail address:" +msgstr "E-posti aadress:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Parool määramata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Kas sellise kasutajatunnusega kasutajat ei leitud või pole sinu poolt sisestatud parool õige. Palun kontrolli kasutajatunnust ja parooli uuesti." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Tõrge identiteedipakkuja vastuse töötlemisel" +msgid "Enter your username and password" +msgstr "Sisesta oma kasutajatunnus ja parool" + +msgid "Entitlement regarding the service" +msgstr "Volitused selle teenuse suhtes" + +msgid "Error" +msgstr "Tõrge" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Tõrge päringu loomisel" + +msgid "Error in this metadata entry" +msgstr "Tõrge selles metaandmete kirjes" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Metaandmete laadimise tõrge" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Tõrge teenusepakkuja päringu töötlemisel" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Tõrge identiteedipakkuja vastuse töötlemisel" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Tõrge väljalogimispäringu töötlemisel" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Identiteedipakkujalt saadi tõrge" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Käsitlemata tõrge" +msgid "Error report sent" +msgstr "Tõrkeraport saadetud" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Tundmatu sertifikaat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "CAS-serveriga suhtlemisel tekkis tõrge." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Autentimine katkestatud" +msgid "Explain what you did when this error occurred..." +msgstr "Kirjelda, millega tegelesid, kui see tõrge ilmnes..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Kasutajatunnus või parool pole õige" +msgid "Fax number" +msgstr "Faksinumber" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Sa külastasid Assertion Consumer Service liidest, kuid ei pakkunud SAML autentimisvastust." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Tõrge autentimisallikas %AUTHSOURCE%. Põhjus: %REASON%" +msgid "Given name" +msgstr "Eesnimi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Leheküljele esitati vigane päring. Põhjus: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Mine tagasi SimpleSAMLphp paigaldusleheküljele" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "CAS-serveriga suhtlemisel tekkis tõrge." +msgid "Go back to the file list" +msgstr "Mine tagasi failide nimekirja" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Paistab, et SimpleSAMLphp on vigaselt seadistatud." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "SAML päringu loomisel ilmnes tõrge." +msgid "Help desk homepage" +msgstr "Kasutajatoe koduleht" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Tuvastusteenusele saadetud parameetrid ei vastanud nõuetele." +msgid "Help! I don't remember my password." +msgstr "Appi! Ma ei mäleta parooli." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Tõrge tekkis, kui see identiteedipakkuja püüdis luua autentimisvastust." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Need on SimpleSAMLphp poolt sulle genereeritud metaandmed. Võid saata need metaandmed usaldatavatele partneritele usaldatava föderatsiooni loomiseks." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Autentimine ei õnnestunud: brauseri poolt saadetud sertifikaat on vigane või pole loetav" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Tere! See on SimpleSAMLphp olekuteave. Siit on võimalik näha, kas su sessioon on aegunud, kui kaua see veel kestab ja kõiki teisi sessiooniga seotud atribuute." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP on kasutajate andmebaas ja sisselogimisel püütakse LDAP-andmebaasi ühendust luua. Seekord tekkis ühenduse loomisel tõrge." +msgid "Home organization domain name" +msgstr "Koduorganisatsiooni domeen" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Teave aktiivse väljalogimisoperatsiooni kohta läks kaduma. Pöördu tagasi teenuse juurde, millest soovisid välja logida ja proovi uuesti. See tõrge võib olla põhjustatud väljalogimisinfo aegumisest. Väljalogimisinfo salvestatakse piiratud ajaks, tavaliselt mõneks tunniks. See on kauem kui tavaline väljalogimine peaks aega võtma, seega võib see tõrge anda märku ka mõnest teisest tõrkest seadistustes. Kui probleem ei kao, siis võta ühendust oma teenusepakkujaga." +msgid "Home postal address" +msgstr "Kodune postiaadress" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Väljalogimispäringu töötlemisel tekkis tõrge" +msgid "Home telephone" +msgstr "Kodune telefon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Midagi on su SimpleSAMLphp paigalduses valesti seadistatud. Kui sa oled selle teenuse administraator, siis peaksid kontrollima, et metaandmete seadistused oleks korrektselt seadistatud." +msgid "How to get help" +msgstr "Kuidas saada abi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Olemi metaandmeid ei leitud: %ENTITYID%" +msgid "Identity assurance profile" +msgstr "Identiteedi tagamise profiil" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "See lõpp-punkt pole lubatud. Kontrolli oma simpleSAMPphp seadistust." +msgid "Identity number assigned by public authorities" +msgstr "Isikukood" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Autentimine ei õnnestunud: brauser ei saatnud ühtegi sertifikaati" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Kui rapoteerid sellest tõrkest, siis teata kindlasti ka jälgimisnumber, mis võimaldab süsteemiadministraatoril logifailidest sinu sessiooniga seotud infot leida:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Selle päringu algataja ei täitnud RelayState parameetrit, mis näitab, kuhu edasi minna." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "SAML 2.0 metaandmete XML-vormingus:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Olekuinfo läks kaduma ja päringut pole võimalik uuesti käivitada" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "SimpleSAMLphp formaadis: kasuta seda siis, kui ka teine pool kasutab SimpleSAMLphp-d:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Seda lehekülge ei leitud. Aadress oli: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Kasutajatunnus või parool pole õige" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Seda lehekülge ei leitud. Põhjus oli %REASON%. Aadress oli: %URL%" +msgid "Incorrect username or password." +msgstr "Kasutajatunnus või parool pole õige." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Seadistustes on vaikimisi parool (auth.adminpassword) muutmata. Palun muuda seadistustefaili." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Sa ei esitanud kehtivat sertifikaati." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Vigane sertifikaat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Identiteedipakkuja poolt saadetud vastust ei aktsepteeritud." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Identiteedipakkuja sai teenusepakkujalt autentimispäringu, kui päringu töötlemisel tekkis tõrge." +msgid "JPEG Photo" +msgstr "JPEG-foto" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Identiteedipakkuja vastas tõrkega (SAML-vastuse olekukood polnud positiivne)." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP-tõrge" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Sa külastasid SingleLogoutService liidest, kui ei pakkunud SAML LogoutRequest või LogoutResponse." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP on kasutajate andmebaas ja sisselogimisel püütakse LDAP-andmebaasi ühendust luua. Seekord tekkis ühenduse loomisel tõrge." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Ilmnes käsitlemata tõrge." +msgid "Labeled URI" +msgstr "Sildistatud URI" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Autentimine ei õnnestunud: brauser saatis tundmatu sertifikaadi" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Autentimine katkestati kasutaja poolt" +msgid "Legal name" +msgstr "Ametlik nimi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Kas sellise kasutajatunnusega kasutajat ei leitud või pole sinu poolt sisestatud parool õige. Palun kontrolli kasutajatunnust ja parooli uuesti." +msgid "Local identity number" +msgstr "Kohalik isikukood" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Tere! See on SimpleSAMLphp olekuteave. Siit on võimalik näha, kas su sessioon on aegunud, kui kaua see veel kestab ja kõiki teisi sessiooniga seotud atribuute." +msgid "Locality" +msgstr "Asukoht" -msgid "Logout" -msgstr "Logi välja" +msgid "Logged out" +msgstr "Logis välja" -msgid "Your attributes" -msgstr "Sinu atribuudid" +msgid "Logging out of the following services:" +msgstr "Välja logimine järgmistest teenustest:" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Sinu sessioon kehtib veel %remaining% sekundit." +msgid "Logging out..." +msgstr "Välja logimine..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Palun vali identiteedipakkuja, mille juures soovid autentida:" +msgid "Login" +msgstr "Logi sisse" -msgid "Remember my choice" -msgstr "Jäta valik meelde" +msgid "Login at" +msgstr "Logi sisse" -msgid "Select" -msgstr "Vali" +msgid "Logout" +msgstr "Logi välja" -msgid "Select your identity provider" -msgstr "Vali oma identiteedipakkuja" +msgid "Logout failed" +msgstr "Välja logimine ebaõnnestus" -msgid "Sending message" -msgstr "Teate saatmine" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Väljalogimisinfo läks kaotsi" -msgid "Yes, continue" -msgstr "Jah, jätka" +msgid "Mail" +msgstr "E-post" -msgid "Debug information" -msgstr "Silumisinfo" +msgid "Manager" +msgstr "Juhataja" -msgid "E-mail address:" -msgstr "E-posti aadress:" +msgid "Message" +msgstr "Teade" -msgid "Explain what you did when this error occurred..." -msgstr "Kirjelda, millega tegelesid, kui see tõrge ilmnes..." +msgid "Metadata" +msgstr "Metaandmed" -msgid "How to get help" -msgstr "Kuidas saada abi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metaandmeid ei leitud" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Kui rapoteerid sellest tõrkest, siis teata kindlasti ka jälgimisnumber, mis võimaldab süsteemiadministraatoril logifailidest sinu sessiooniga seotud infot leida:" +msgid "Metadata overview" +msgstr "Metaandmete ülevaade" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Lisaks sisesta ka oma meiliaadress, et administraatorid saaksid seosest selle tõrkega vajadusel sinuga hiljem ühendust võtta:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "Raporteeri tõrked" +msgid "Mobile" +msgstr "Mobiil" -msgid "Send error report" -msgstr "Saada tõrkeraport" +msgid "Next" +msgstr "Edasi" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Allpool olev silumisinfo võib olla administraatorile või kasutajatoele väga kasulik:" +msgid "Nickname" +msgstr "Hüüdnimi" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "See tõrge ilmnes tõenäoliselt SimpleSAMLphp ootamatu käitumise või valesti seadistamise tõttu. Võta ühendust selle sisselogimisteenuse administraatoriga ja saada talle ülalolev veateade." +msgid "No" +msgstr "Ei" -msgid "[Preferred choice]" -msgstr "[Eelistatud valik]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "RelayState puudub" -msgid "Person's principal name at home organization" -msgstr "Isiku põhinimi koduasutuses" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "SAML-teade puudub" -msgid "Superfluous options in config file" -msgstr "Üleliigne seadistus seadistustefailis" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "Mobiil" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "SAML-vastust ei pakutud" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 teenusepakkuja (hostitud)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Ligipääs puudub" -msgid "Display name" -msgstr "Kuvatav nimi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Sertifikaat puudub" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP metaandmed" +msgid "No errors found." +msgstr "Tõrkeid ei leitud" + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Ei" + +msgid "No, only %SP%" +msgstr "Ei, ainult %SP%" msgid "Notices" msgstr "Märkused" -msgid "Home telephone" -msgstr "Kodune telefon" +msgid "On hold" +msgstr "Ootel" -msgid "Service Provider" -msgstr "Teenusepakkuja" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Üks või mitu teenust, millesse oled sisselogitud ei toeta välja logimise. Selleks, et olla kindel kõigi sessioonide lõpetamises soovitame sulgeda kõik brauseri aknad." + +msgid "Optional fields" +msgstr "Lisaväljad" -msgid "Incorrect username or password." -msgstr "Kasutajatunnus või parool pole õige." +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Lisaks sisesta ka oma meiliaadress, et administraatorid saaksid seosest selle tõrkega vajadusel sinuga hiljem ühendust võtta:" -msgid "Submit message" -msgstr "Saada teade" +msgid "Options missing from config file" +msgstr "Seadistustefailist puuduvad seadistused:" -msgid "Locality" -msgstr "Asukoht" +msgid "Organization" +msgstr "Organisatsioon" -msgid "The following required fields was not found" -msgstr "Järgmisi kohuslikke välju ei leitud" +msgid "Organization name" +msgstr "Organisatsiooni nimi" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Lae alla X509 sertifikaadid PEM kodeeringus failidena." +msgid "Organization's legal name" +msgstr "Organisatsiooni ametlik nimetus" + +msgid "Organizational homepage" +msgstr "Organisatsiooni koduleht" msgid "Organizational number" msgstr "Registrikood" -msgid "Post office box" -msgstr "Postkast" +msgid "Organizational unit" +msgstr "Allüksus" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Teenus nõuab autentimist. Palun sisesta allpool olevasse vormi oma kasutajatunnus ja parool." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Lehekülge ei leitud" -msgid "Error" -msgstr "Tõrge" +msgid "Parse" +msgstr "Parsi" -msgid "Next" -msgstr "Edasi" +msgid "Password" +msgstr "Parool" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Koduorganisatsiooni allüksuse unikaalne nimi (DN)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Parool määramata" -msgid "Converted metadata" -msgstr "Teisendatud metaandmed" +msgid "Persistent pseudonymous ID" +msgstr "Püsiv pseudonüümne ID" -msgid "Mail" -msgstr "E-post" +msgid "Person's principal name at home organization" +msgstr "Isiku põhinimi koduasutuses" -msgid "No, cancel" -msgstr "Ei" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Palun vali identiteedipakkuja, mille juures soovid autentida:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Sa valisid oma koduorganisatsiooniks %HOMEORG%. Kui see pole õige, siis võid uuesti valida." +msgid "Post office box" +msgstr "Postkast" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Peamise allüksuse unikaalne nimi (DN)" +msgid "Postal address" +msgstr "Postiaadress" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "SAML olemi detailide vaatamiseks klõpsa SAML olemi päisel." +msgid "Postal code" +msgstr "Postiindeks" -msgid "Enter your username and password" -msgstr "Sisesta oma kasutajatunnus ja parool" +msgid "Preferred language" +msgstr "Eelistatud keel" -msgid "Login at" -msgstr "Logi sisse" +msgid "Primary affiliation" +msgstr "Peamine kuuluvus" -msgid "No" -msgstr "Ei" +msgid "Private information elements" +msgstr "Privaatandmete elemendid" -msgid "Home postal address" -msgstr "Kodune postiaadress" +msgid "Remember" +msgstr "Jäta meelde" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP demonäide" +msgid "Remember my choice" +msgstr "Jäta valik meelde" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 identiteedipakkuja (hostitud)" +msgid "Report errors" +msgstr "Raporteeri tõrked" -msgid "Do you want to logout from all the services above?" -msgstr "Kas sa soovid kõigist ülal loetletud teenustest välja logida?" +msgid "Required fields" +msgstr "Kohustuslikud väljad" -msgid "Given name" -msgstr "Eesnimi" +msgid "Return to service" +msgstr "Tagasi teenuse juurde" -msgid "Identity assurance profile" -msgstr "Identiteedi tagamise profiil" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 identiteedipakkuja (hostitud)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 identiteedipakkuja (hostitud)" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP demonäide" -msgid "Organization name" -msgstr "Organisatsiooni nimi" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Oled teadet saatmas. Jätkamiseks vajuta teatesaatmisnuppu." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP metaandmed" -msgid "Home organization domain name" -msgstr "Koduorganisatsiooni domeen" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 teenusepakkuja (hostitud)" -msgid "Go back to the file list" -msgstr "Mine tagasi failide nimekirja" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Tõrkeraport saadetud" +msgid "Select" +msgstr "Vali" -msgid "Common name" -msgstr "Üldnimi" +msgid "Select configuration file to check:" +msgstr "Vali seadistustefail, mida kontrollida:" -msgid "Logout failed" -msgstr "Välja logimine ebaõnnestus" +msgid "Select your identity provider" +msgstr "Vali oma identiteedipakkuja" -msgid "Identity number assigned by public authorities" -msgstr "Isikukood" +msgid "Send e-mail to help desk" +msgstr "Saada kasutajatoele e-kiri." -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation identiteedipakkuja (kaug)" +msgid "Send error report" +msgstr "Saada tõrkeraport" -msgid "Some error occurred" -msgstr "Ilmnes mingi tõrge" +msgid "Sending message" +msgstr "Teate saatmine" -msgid "Organization" -msgstr "Organisatsioon" +msgid "Service Provider" +msgstr "Teenusepakkuja" -msgid "Choose home organization" -msgstr "Vali koduorganisatsioon" +msgid "Session size: %SIZE%" +msgstr "Sessiooni suurus: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Püsiv pseudonüümne ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP metaandmed" -msgid "No errors found." -msgstr "Tõrkeid ei leitud" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 identiteedipakkuja (hostitud)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 teenusepakkuja (hostitud)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 identiteedipakkuja (kaug)" -msgid "Required fields" -msgstr "Kohustuslikud väljad" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP metaandmed" -msgid "Domain component (DC)" -msgstr "Domeeni komponent (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 teenusepakkuja (hostitud)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 teenusepakkuja (kaug)" -msgid "Password" -msgstr "Parool" - -msgid "Nickname" -msgstr "Hüüdnimi" - -msgid "The error report has been sent to the administrators." -msgstr "Tõrkeraport saadeti administraatoritele." - -msgid "Date of birth" -msgstr "Sünniaeg" - -msgid "Private information elements" -msgstr "Privaatandmete elemendid" - -msgid "You are also logged in on these services:" -msgstr "Sa oled sisse logitud ja nendesse teenustesse:" +msgid "Shibboleth demo" +msgstr "Shibbolethi demo" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp diagnostika" -msgid "No, only %SP%" -msgstr "Ei, ainult %SP%" - -msgid "Username" -msgstr "Kasutajatunnus" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Paistab, et SimpleSAMLphp on vigaselt seadistatud." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Mine tagasi SimpleSAMLphp paigaldusleheküljele" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp tõrge" -msgid "You have successfully logged out from all services listed above." -msgstr "Sa oled kõigist ülal loetletud teenustest edukalt välja logitud." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Sa oled nüüd edukalt välja logitud teenusest %SP%." +msgid "Some error occurred" +msgstr "Ilmnes mingi tõrge" -msgid "Affiliation" -msgstr "Rollid" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Olekuinfo kadunud" -msgid "You have been logged out." -msgstr "Sa oled välja logitud." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Olekuinfo läks kaduma ja päringut pole võimalik uuesti käivitada" -msgid "Return to service" -msgstr "Tagasi teenuse juurde" +msgid "Street" +msgstr "Tänav" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation teenusepakkuja (hostitud)" +msgid "Submit message" +msgstr "Saada teade" -msgid "Preferred language" -msgstr "Eelistatud keel" +msgid "Superfluous options in config file" +msgstr "Üleliigne seadistus seadistustefailis" msgid "Surname" msgstr "Perekonnanimi" -msgid "The following fields was not recognized" -msgstr "Järgmistest väljadest ei saadud aru" - -msgid "User ID" -msgstr "Kasutaja ID" +msgid "Telephone number" +msgstr "Telefoninumber" -msgid "JPEG Photo" -msgstr "JPEG-foto" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Identiteedipakkuja vastas tõrkega (SAML-vastuse olekukood polnud positiivne)." -msgid "Postal address" -msgstr "Postiaadress" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Autentimine katkestati kasutaja poolt" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "SAML 2.0 metaandmete XML-vormingus:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Allpool olev silumisinfo võib olla administraatorile või kasutajatoele väga kasulik:" -msgid "Logging out of the following services:" -msgstr "Välja logimine järgmistest teenustest:" +msgid "The error report has been sent to the administrators." +msgstr "Tõrkeraport saadeti administraatoritele." -msgid "Labeled URI" -msgstr "Sildistatud URI" +msgid "The following fields was not recognized" +msgstr "Järgmistest väljadest ei saadud aru" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 identiteedipakkuja (hostitud)" +msgid "The following optional fields was not found" +msgstr "Järgmisi lisavälju ei leitud" -msgid "Metadata" -msgstr "Metaandmed" +msgid "The following required fields was not found" +msgstr "Järgmisi kohuslikke välju ei leitud" -msgid "Login" -msgstr "Logi sisse" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Seda lehekülge ei leitud. Aadress oli: %URL%" -msgid "Yes, all services" -msgstr "Jah, kõigist teenustest" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Seda lehekülge ei leitud. Põhjus oli %REASON%. Aadress oli: %URL%" -msgid "Logged out" -msgstr "Logis välja" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Teave aktiivse väljalogimisoperatsiooni kohta läks kaduma. Pöördu tagasi teenuse juurde, millest soovisid välja logida ja proovi uuesti. See tõrge võib olla põhjustatud väljalogimisinfo aegumisest. Väljalogimisinfo salvestatakse piiratud ajaks, tavaliselt mõneks tunniks. See on kauem kui tavaline väljalogimine peaks aega võtma, seega võib see tõrge anda märku ka mõnest teisest tõrkest seadistustes. Kui probleem ei kao, siis võta ühendust oma teenusepakkujaga." -msgid "Postal code" -msgstr "Postiindeks" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Selle päringu algataja ei täitnud RelayState parameetrit, mis näitab, kuhu edasi minna." -msgid "Logging out..." -msgstr "Välja logimine..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Tuvastusteenusele saadetud parameetrid ei vastanud nõuetele." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 identiteedipakkuja (hostitud)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Peamine kuuluvus" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Seadistustes on vaikimisi parool (auth.adminpassword) muutmata. Palun muuda seadistustefaili." -msgid "XML metadata" -msgstr "XML-metaandmed" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Leheküljele esitati vigane päring. Põhjus: %REASON%" -msgid "Telephone number" -msgstr "Telefoninumber" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Midagi on su SimpleSAMLphp paigalduses valesti seadistatud. Kui sa oled selle teenuse administraator, siis peaksid kontrollima, et metaandmete seadistused oleks korrektselt seadistatud." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Ühest või mitmest teenusest välja logimine ei õnnestunud. Selleks, et olla kindel kõigi sessioonide lõpetamises soovitame sulgeda kõik brauseri aknad." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Identiteedipakkuja sai teenusepakkujalt autentimispäringu, kui päringu töötlemisel tekkis tõrge." -msgid "Entitlement regarding the service" -msgstr "Volitused selle teenuse suhtes" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "See lõpp-punkt pole lubatud. Kontrolli oma simpleSAMPphp seadistust." -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP metaandmed" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "See tõrge ilmnes tõenäoliselt SimpleSAMLphp ootamatu käitumise või valesti seadistamise tõttu. Võta ühendust selle sisselogimisteenuse administraatoriga ja saada talle ülalolev veateade." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Kuna oled silumisrežiimis, siis on sul võimalik näha saadetava teate sisu:" +msgid "Title" +msgstr "Tiitel" -msgid "Certificates" -msgstr "Sertifikaadid" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "SAML olemi detailide vaatamiseks klõpsa SAML olemi päisel." -msgid "Remember" -msgstr "Jäta meelde" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Koduorganisatsiooni unikaalne nimi (DN)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Olemi metaandmeid ei leitud: %ENTITYID%" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Oled teadet saatmas. Jätkamiseks vajuta teateviidet." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Ühest või mitmest teenusest välja logimine ei õnnestunud. Selleks, et olla kindel kõigi sessioonide lõpetamises soovitame sulgeda kõik brauseri aknad." -msgid "Organizational unit" -msgstr "Allüksus" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Kohalik isikukood" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Käsitlemata tõrge" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP metaandmed" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Tundmatu sertifikaat" -msgid "Change your home organization" -msgstr "Muuda oma koduorganisatsiooni" +msgid "User ID" +msgstr "Kasutaja ID" msgid "User's password hash" msgstr "Kasutaja parooliräsi" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "SimpleSAMLphp formaadis: kasuta seda siis, kui ka teine pool kasutab SimpleSAMLphp-d:" - -msgid "Completed" -msgstr "Lõpetatud" - -msgid "Select configuration file to check:" -msgstr "Vali seadistustefail, mida kontrollida:" - -msgid "On hold" -msgstr "Ootel" +msgid "Username" +msgstr "Kasutajatunnus" -msgid "Help! I don't remember my password." -msgstr "Appi! Ma ei mäleta parooli." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP demonäide" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Silumisrežiimi on võimalik välja lülitada SimpleSAMLphp seadistustefailist config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation identiteedipakkuja (kaug)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp tõrge" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation teenusepakkuja (hostitud)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Üks või mitu teenust, millesse oled sisselogitud ei toeta välja logimise. Selleks, et olla kindel kõigi sessioonide lõpetamises soovitame sulgeda kõik brauseri aknad." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Organisatsiooni ametlik nimetus" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Identiteedipakkuja poolt saadetud vastust ei aktsepteeritud." -msgid "Options missing from config file" -msgstr "Seadistustefailist puuduvad seadistused:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Tõrge tekkis, kui see identiteedipakkuja püüdis luua autentimisvastust." -msgid "The following optional fields was not found" -msgstr "Järgmisi lisavälju ei leitud" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Paha lugu! Ilma kasutajatunnust ja parooli teadmata pole võimalik seda teenust kasutada. Loodetavasti saab sind keegi aidata. Võta ühendust oma ülikooli kasutajatoeteenusega!" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Metaandmete XML-i on võimalik saada spetsiaalselt aadressilt:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Tänav" +msgid "XML metadata" +msgstr "XML-metaandmed" -msgid "Message" -msgstr "Teade" +msgid "Yes, all services" +msgstr "Jah, kõigist teenustest" -msgid "Contact information:" -msgstr "Kontaktinfo:" +msgid "Yes, continue" +msgstr "Jah, jätka" -msgid "Legal name" -msgstr "Ametlik nimi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Lisaväljad" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Sa külastasid Assertion Consumer Service liidest, kuid ei pakkunud SAML autentimisvastust." -msgid "You have previously chosen to authenticate at" -msgstr "Varem oled valinud autentida, kasutades" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Sa saatsid midagi sisselogimislehele, kuid miskipärast parooli ei saadetud. Palun proovi uuesti." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Sa külastasid SingleLogoutService liidest, kui ei pakkunud SAML LogoutRequest või LogoutResponse." -msgid "Fax number" -msgstr "Faksinumber" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Oled teadet saatmas. Jätkamiseks vajuta teatesaatmisnuppu." -msgid "Shibboleth demo" -msgstr "Shibbolethi demo" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Oled teadet saatmas. Jätkamiseks vajuta teateviidet." -msgid "Error in this metadata entry" -msgstr "Tõrge selles metaandmete kirjes" +msgid "You are also logged in on these services:" +msgstr "Sa oled sisse logitud ja nendesse teenustesse:" -msgid "Session size: %SIZE%" -msgstr "Sessiooni suurus: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Sa kasutad nüüd testsüsteemi. See autentimisseadistus on mõeldud testimiseks ja eelkontrollimiseks. Kui keegi saatis sulle lingi, mis näitas siia, ja sa ei ole testija, siis said tõenäoliselt vale lingi ja sa ei peaks siin olema." -msgid "Parse" -msgstr "Parsi" +msgid "You are now successfully logged out from %SP%." +msgstr "Sa oled nüüd edukalt välja logitud teenusest %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Paha lugu! Ilma kasutajatunnust ja parooli teadmata pole võimalik seda teenust kasutada. Loodetavasti saab sind keegi aidata. Võta ühendust oma ülikooli kasutajatoeteenusega!" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Metaandmete XML-i on võimalik saada spetsiaalselt aadressilt:" -msgid "Choose your home organization" -msgstr "Vali oma koduorganisatsioon" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Silumisrežiimi on võimalik välja lülitada SimpleSAMLphp seadistustefailist config/config.php." -msgid "Send e-mail to help desk" -msgstr "Saada kasutajatoele e-kiri." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Sa ei esitanud kehtivat sertifikaati." -msgid "Metadata overview" -msgstr "Metaandmete ülevaade" +msgid "You have been logged out." +msgstr "Sa oled välja logitud." -msgid "Title" -msgstr "Tiitel" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Sa valisid oma koduorganisatsiooniks %HOMEORG%. Kui see pole õige, siis võid uuesti valida." -msgid "Manager" -msgstr "Juhataja" +msgid "You have previously chosen to authenticate at" +msgstr "Varem oled valinud autentida, kasutades" -msgid "Affiliation at home organization" -msgstr "Rollid koduorganisatsioonis" +msgid "You have successfully logged out from all services listed above." +msgstr "Sa oled kõigist ülal loetletud teenustest edukalt välja logitud." -msgid "Help desk homepage" -msgstr "Kasutajatoe koduleht" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Sa saatsid midagi sisselogimislehele, kuid miskipärast parooli ei saadetud. Palun proovi uuesti." -msgid "Configuration check" -msgstr "Seadistuste kontroll" +msgid "Your attributes" +msgstr "Sinu atribuudid" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 identiteedipakkuja (kaug)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Need on SimpleSAMLphp poolt sulle genereeritud metaandmed. Võid saata need metaandmed usaldatavatele partneritele usaldatava föderatsiooni loomiseks." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Sinu sessioon kehtib veel %remaining% sekundit." -msgid "Organizational homepage" -msgstr "Organisatsiooni koduleht" +msgid "[Preferred choice]" +msgstr "[Eelistatud valik]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Sa kasutad nüüd testsüsteemi. See autentimisseadistus on mõeldud testimiseks ja eelkontrollimiseks. Kui keegi saatis sulle lingi, mis näitas siia, ja sa ei ole testija, siis said tõenäoliselt vale lingi ja sa ei peaks siin olema." +msgid "not set" +msgstr "" diff --git a/locales/eu/LC_MESSAGES/messages.po b/locales/eu/LC_MESSAGES/messages.po index 0254b3a185..0c2a294672 100644 --- a/locales/eu/LC_MESSAGES/messages.po +++ b/locales/eu/LC_MESSAGES/messages.po @@ -1,720 +1,810 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "SAML erantzuna falta da" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "SAML mezua falta da" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Zerbitzu batek kautotu zaitezen eskatzen du. Mesedez, zure erabiltzaile-izena eta pasahitza honako formulario honetan sartu itzazu." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Afiliazioa" + +msgid "Affiliation at home organization" +msgstr "Afiliazioa jatorrizko erakundean" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Errore bat jazo da SAML eskaera sortzen saiatzean." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Errore bat jazo da saioa ixteko eskaera prozesatzean." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Kudeatu gabeko salbuespen bat abiarazi da" + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Arazketa moduan egonez gero, bidaltzera zoazen mezuaren edukia ikusiko duzu: " + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Kautotzea bertan behera utzia" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Errorea kautotze jatorrian %AUTHSOURCE%. Arrazoia hau da: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Kautotze okerra: Zure nabigatzaileak bidalitako ziurtagiria baliogabea da edo ezin da irakurri" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Kautotze okerra: zure nabigatzaileak bidalitako ziurtagiria ezezaguna da" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Kautotze okerra: zure nabigatzaileak ez du bidali ziurtagiririk " #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Errorea kautotze jatorrian" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Eskaera oker bat jaso da." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Eskaera okerra aurkikuntza zerbitzuari" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS Errorea" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Ziurtagiriak" + +msgid "Change your home organization" +msgstr "Zure jatorrizko erakundea aldatu" + +msgid "Choose home organization" +msgstr "Jatorrizko erakundea hautatu" + +msgid "Choose your home organization" +msgstr "Hautatu zure jatorrizko erakundea" + +msgid "Common name" +msgstr "Izen arrunta (CN)" + +msgid "Completed" +msgstr "Amaitua" + +msgid "Configuration check" +msgstr "Konfigurazioa egiaztatu" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Konfigurazio errorea" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Errorea eskaera sortzean" +msgid "Contact information:" +msgstr "Harremanetarako informazioa:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Eskaera okerra aurkikuntza zerbitzuari" +msgid "Converted metadata" +msgstr "Bihurtutako metadatuak" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Ezin izan da kautotze erantzuna sortu" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Ziurtagiri balio gabea" +msgid "Date of birth" +msgstr "Jaioteguna" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP Errorea" +msgid "Debug information" +msgstr "Arazketa informazioa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Saioa ixteko informazioa galdu da" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Errorea saioa ixteko eskaera prozesatzean " +msgid "Display name" +msgstr "Bistaratzeko izena" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Errorea metadatuak kargatzean" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Pertsonaren jatorrizko erakundearen izen osatua (DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Ez dira metadatuak aurkitu" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Pertsonaren antolamendu-unitatearen izen osatua (DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Sarrera zehaztu gabe" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Pertsonaren jatorrizko erakundeko antolamendu-unitatearen izen osatua (DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Ziurtagiri gabe" +msgid "Do you want to logout from all the services above?" +msgstr "Goian agertzen diren zerbitzu guztietako saioak itxi nahi al dituzu?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "RelayState zehaztu gabe" +msgid "Domain component (DC)" +msgstr "Domeinuaren osagaia (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Egoera informazioa galdua" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "X509 ziurtagiriak PEM formatuan deskargatu." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Ez da orria aurkitu" +msgid "E-mail address:" +msgstr "E-posta:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Pasahitzik ez da ezarrii" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Ez dago erabiltzailerik adierazitako identifikadorearekin, edo adierazitako pasahitza okerra da. Mesedez, berrikusi ezazu erabiltzaile-identifikadorea eta saia zaiztez berriro." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Errorea IdP-tik datorren erantzuna prozesatzean" +msgid "Enter your username and password" +msgstr "Sartu erabiltzaile-izena eta pasahitza" + +msgid "Entitlement regarding the service" +msgstr "Zerbitzuari dagokion eskubidea" + +msgid "Error" +msgstr "Eman dituzun datuak okerrak dira" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Errorea eskaera sortzean" + +msgid "Error in this metadata entry" +msgstr "Metadatu sarrera honetan errorea" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Errorea metadatuak kargatzean" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Errorea zerbitzu hornitzailearen eskaera prozesatean " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Errorea IdP-tik datorren erantzuna prozesatzean" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Errorea saioa ixteko eskaera prozesatzean " + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Errore bat jazo da IdP-aren aldetik" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Kudeatu gabeko salbuespena" +msgid "Error report sent" +msgstr "Errore txostena bidalita" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Ziurtagiri ezezaguna" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Errorea CAS zerbitzariarekin komunikatzen saiatzean" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Kautotzea bertan behera utzia" +msgid "Explain what you did when this error occurred..." +msgstr "Azal ezazu zer egin duzun errore honetara iristeko..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Erabiltzaile-izena edo pasahitz okerra" +msgid "Fax number" +msgstr "Fax-zenbakia" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Baieztapen kontsumitzailearen interfazera sartu zara baina ez duzu SAML kautotze erantzun bat erantsi." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Errorea kautotze jatorrian %AUTHSOURCE%. Arrazoia hau da: %REASON%" +msgid "Given name" +msgstr "Izena" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Errore bat dago orri honen eskaeran. Arrazoia hau da: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Itzuli SimpleSAMLphp instalazio orrira " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Errorea CAS zerbitzariarekin komunikatzen saiatzean" +msgid "Go back to the file list" +msgstr "Itzuli fitxategien zerrendara" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Badirudi errore bat jazo dela SimpleSAMLphp-en konfigurazioan" +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Errore bat jazo da SAML eskaera sortzen saiatzean." +msgid "Help desk homepage" +msgstr "Laguntza teknikoaren orria " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Aurkikuntza zerbitzuari bidalitako prametroak ez dira zehaztapenera doitzen." +msgid "Help! I don't remember my password." +msgstr "Lagundu! Ez dut nire pasahitza gogoratzen." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Identitatearen hornitzaileak errore bat antzeman du kautotze erantzuna sortzean." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Hona hemen SimpleSAMLphp-ak zuretzat sortu dituen metadatuak. Metadatuen dokumentu hau konfidantzazko zure kideei bidal diezaiekezu federazio bat konfiguratzeko." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Kautotze okerra: Zure nabigatzaileak bidalitako ziurtagiria baliogabea da edo ezin da irakurri" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Kaixo, hau SimpleSAMLphp-ren egoera orria da. Hemendik ikus dezakezu zure saioa iraungi den, zenbat denbora geratzen den hau gerta dadin eta zure saioan dauden atributu guztiak." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP erabiltzaileen datu basea da, eta sartzea erabakitzen duzunean beharrezkoa da harekin harremanetan jartzea. Sartze ekintza horretan errore bat jazo da." +msgid "Home organization domain name" +msgstr "Jatorrizko erakundearen domeinu izena" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Saioa ixteko eragiketari buruzko informazioa galdu da. Irten nahi duzun zerbitzura itzuli eta saioa berriz ixten saitu behar duzu. Saioa ixteko informazioa denbora mugatu batean gordetzen da, orokorrean saio ixteko eragiketak iraun beharko lukeen denbora baino gehiago, beraz errore hau konfigurazioan erroreren bat jazo delako gerta liteke. Errorea etengabea bada, jar zaitez harremanetan zerbitzuaren hornitzailearekin." +msgid "Home postal address" +msgstr "Etxeko helbidea" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Errore bat jazo da saioa ixteko eskaera prozesatzean." +msgid "Home telephone" +msgstr "Etxeko telefonoa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Konfigurazio erroreak daude zure SimpleSAMLphp-ren instalazioan. Zerbitzuaren administratzailea bazara, ziurta ezazu metadatuen konfigurazioa zuzena dela." +msgid "How to get help" +msgstr "Laguntza nola eskuratu" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Ezin da aurkitu metadaturik %ENTITYID%-(a)rentzat" +msgid "Identity assurance profile" +msgstr "Bermearen profilaren identifikatzailea" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Sarbide puntu hau ez dago gaituta. Egiazta itzazu SimpleSAMLphp-aren konfigurazioan gaitze aukerak." +msgid "Identity number assigned by public authorities" +msgstr "Gizarte-segurantzako zenbakia" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Kautotze okerra: zure nabigatzaileak ez du bidali ziurtagiririk " +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Mesedez, errore honen berri ematen baduzu, mantendu ezazu jarraipen zenbaki hau, honek sistemaren administratzaileak dituen erregistroetan zure saioa aurkitzea ahalbidetzen baitu:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Eskaera honen abiarazleak ez du ematen ondoren nora joan adierazten duen RelayState parametroa" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "SAML 2.0 metadatuetako xml formatuan:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Egoera informazioa galdua eta ez dago modurik eskaera berrabiarazteko" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "SimpleSAMLphp formatuko fitxategi batean - beste muturrean SimpleSAMLphp entitate bat erabiltzen ariz gero, erabil ezazu aukera hau:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Ez da aurkitu adierazi duzun orria. URLa hau da: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Erabiltzaile-izena edo pasahitz okerra" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Ez da aurkitu adierazi duzun orria. Arrazoia hau da: %REASON% URL hau da: %URL%" +msgid "Incorrect username or password." +msgstr "Erabiltzaile-izena edo pasahitza okerra" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Ez da aldatu konfigurazio fitxategiaren pasahitzaren (auth.adminpassword) balio lehenetsia. Mesedez, edita ezazu fitxategia" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Ez duzu baliozko ziurtagiririk aurkeztu " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Ziurtagiri balio gabea" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Ezin izan da identitatearen hornitzaileak bidalitako erantzuna onartu." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "IdP honek zerbitzu hornitzaile baten kautotze eskaera jaso du baina errore bat jazo da hau prozesatzen saiatzean." +msgid "JPEG Photo" +msgstr "JPEG argazkia" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Idp-ak errore batekin erantzun dio eskaerari. (SAML erantzunean egoera kodea ez da arrakastatsua izan)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP Errorea" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "SingleLogoutService interfazera sartu zara baina ez duzu erantsi SAML LogoutRequest edo LogoutResponse mezurik" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP erabiltzaileen datu basea da, eta sartzea erabakitzen duzunean beharrezkoa da harekin harremanetan jartzea. Sartze ekintza horretan errore bat jazo da." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Kudeatu gabeko salbuespen bat abiarazi da" +msgid "Labeled URI" +msgstr "URI etiketatua" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Kautotze okerra: zure nabigatzaileak bidalitako ziurtagiria ezezaguna da" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Kautotzea bertan behera utzi du erabiltzaileak" +msgid "Legal name" +msgstr "Izen legala" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Ez dago erabiltzailerik adierazitako identifikadorearekin, edo adierazitako pasahitza okerra da. Mesedez, berrikusi ezazu erabiltzaile-identifikadorea eta saia zaiztez berriro." +msgid "Local identity number" +msgstr "Tokiko zenbaki identifikatzailea" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Kaixo, hau SimpleSAMLphp-ren egoera orria da. Hemendik ikus dezakezu zure saioa iraungi den, zenbat denbora geratzen den hau gerta dadin eta zure saioan dauden atributu guztiak." +msgid "Locality" +msgstr "Herria" + +msgid "Logged out" +msgstr "Saioa itxita." + +msgid "Logging out of the following services:" +msgstr "Honako zerbitzu hauen saioak itxi:" + +msgid "Logging out..." +msgstr "Saioa ixten..." + +msgid "Login" +msgstr "Saioa hasi" + +msgid "Login at" +msgstr "Non identifikatu" msgid "Logout" msgstr "Irten" -msgid "Your attributes" -msgstr "Atributuak" - -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Zure saioa %remaining% segundoz izango da baliagarri." +msgid "Logout failed" +msgstr "Saioa ixteko prozesuak huts egin du" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Mesedez, non kautotu nahi duzun identifikazio hornitzailea hauta ezazu " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Saioa ixteko informazioa galdu da" -msgid "Remember my choice" -msgstr "Nire hautaketa gogoratu" +msgid "Mail" +msgstr "Posta" -msgid "Select" -msgstr "Hautatu" +msgid "Manager" +msgstr "Kudeatzailea" -msgid "Select your identity provider" -msgstr "Hauta ezazu zure identitate hornitzailea" +msgid "Message" +msgstr "Mezua" -msgid "Sending message" -msgstr "Mezua bidaltzen" +msgid "Metadata" +msgstr "Metadatuak" -msgid "Yes, continue" -msgstr "Bai, jarraitu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Ez dira metadatuak aurkitu" -msgid "Debug information" -msgstr "Arazketa informazioa" +msgid "Metadata overview" +msgstr "Ikusi metadatuak" -msgid "E-mail address:" -msgstr "E-posta:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Explain what you did when this error occurred..." -msgstr "Azal ezazu zer egin duzun errore honetara iristeko..." +msgid "Mobile" +msgstr "Mugikorra" -msgid "How to get help" -msgstr "Laguntza nola eskuratu" +msgid "Next" +msgstr "Hurrengoa" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Mesedez, errore honen berri ematen baduzu, mantendu ezazu jarraipen zenbaki hau, honek sistemaren administratzaileak dituen erregistroetan zure saioa aurkitzea ahalbidetzen baitu:" +msgid "Nickname" +msgstr "Ezizena" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Nahi izanez gero, zure helbide elektronikoa adierazi ezazu, administratzaileak zurekin harremanetan jar daitezen, eta zure arazoaren datu gehigarriak eskura ditzaten:" +msgid "No" +msgstr "Ez" -msgid "Report errors" -msgstr "Erroreen berri eman" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "RelayState zehaztu gabe" -msgid "Send error report" -msgstr "Bidal ezazu errorearen txostena" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "SAML mezua falta da" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Arazketa informazio hau erabilgarria izan daiteke sistemaren administratzailea edo erabiltzailearen arreta zentroarentzat:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Errore hau jazo izana SimpleSAMLphp-en ezusteko jokaera edo konfigurazio okerra izan da. Jar zaitez harremanetan identifikazio zerbitzu honen administratzailearekin eta bidal iezaiozu lehenagoko errore mezua. " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "SAML erantzuna falta da" -msgid "[Preferred choice]" -msgstr "[Aukera gogokoena]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Sarrera zehaztu gabe" -msgid "Person's principal name at home organization" -msgstr "Jatorrizko erakundean pertsonak duen izen nagusia" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Ziurtagiri gabe" -msgid "Superfluous options in config file" -msgstr "Konfigurazio fitxategian soberan dauden aukerak" +msgid "No errors found." +msgstr "Ez da errorerik aurkitu" -msgid "Mobile" -msgstr "Mugikorra" +msgid "No identity providers found. Cannot continue." +msgstr "" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Zerbitzu hornitzailea (Anfitrioia)" +msgid "No, cancel" +msgstr "Ez" -msgid "Display name" -msgstr "Bistaratzeko izena" +msgid "No, only %SP%" +msgstr "Ez, %SPS bakarrik" msgid "Notices" msgstr "Oharrak" -msgid "Home telephone" -msgstr "Etxeko telefonoa" +msgid "On hold" +msgstr "Itxaroten" + +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Kautotuta zauden zerbitzu bat edo batzuk ez dute uzten saioa ixten. Zure saio guztiak ixten direla ziurtatzeko, zure nabigatzaileko leiho guztiak ixtea gomendatzen da." + +msgid "Optional fields" +msgstr "Hautazko datuak" -msgid "Service Provider" -msgstr "Zerbitzu hornitzailea" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Nahi izanez gero, zure helbide elektronikoa adierazi ezazu, administratzaileak zurekin harremanetan jar daitezen, eta zure arazoaren datu gehigarriak eskura ditzaten:" -msgid "Incorrect username or password." -msgstr "Erabiltzaile-izena edo pasahitza okerra" +msgid "Options missing from config file" +msgstr "Konfigurazio fitxategian falta diren aukerak" -msgid "Submit message" -msgstr "Mezua bidali" +msgid "Organization" +msgstr "Erakundea" -msgid "Locality" -msgstr "Herria" +msgid "Organization name" +msgstr "Erakundearen izena" -msgid "The following required fields was not found" -msgstr "Derrigorrezko datu hauek ez dira aurkitu" +msgid "Organization's legal name" +msgstr "Erakundearen izen legala" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "X509 ziurtagiriak PEM formatuan deskargatu." +msgid "Organizational homepage" +msgstr "Erakundearen hasiera-orria" msgid "Organizational number" msgstr "Erakundearen zenbakia" -msgid "Post office box" -msgstr "Posta-bulegoko ontzia" +msgid "Organizational unit" +msgstr "Antolamendu-unitatea" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Zerbitzu batek kautotu zaitezen eskatzen du. Mesedez, zure erabiltzaile-izena eta pasahitza honako formulario honetan sartu itzazu." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Ez da orria aurkitu" -msgid "Error" -msgstr "Eman dituzun datuak okerrak dira" +msgid "Parse" +msgstr "Aztertu" -msgid "Next" -msgstr "Hurrengoa" +msgid "Password" +msgstr "Pasahitza" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Pertsonaren jatorrizko erakundeko antolamendu-unitatearen izen osatua (DN)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Pasahitzik ez da ezarrii" -msgid "Converted metadata" -msgstr "Bihurtutako metadatuak" +msgid "Persistent pseudonymous ID" +msgstr "Goitizen ID etengabea" -msgid "Mail" -msgstr "Posta" +msgid "Person's principal name at home organization" +msgstr "Jatorrizko erakundean pertsonak duen izen nagusia" -msgid "No, cancel" -msgstr "Ez" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Mesedez, non kautotu nahi duzun identifikazio hornitzailea hauta ezazu " -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "%HOMEORG% hautatu duzu zure jatorrizko erakunde bezala. Informazio hau okerra bada beste bat hautatu dezakezu." +msgid "Post office box" +msgstr "Posta-bulegoko ontzia" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Pertsonaren antolamendu-unitatearen izen osatua (DN)" +msgid "Postal address" +msgstr "Posta-helbidea" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "SAML entitate baten xehetasunak ikusteko, klikatu entitatearen goiburua." +msgid "Postal code" +msgstr "Posta-kodea" -msgid "Enter your username and password" -msgstr "Sartu erabiltzaile-izena eta pasahitza" +msgid "Preferred language" +msgstr "Hizkuntza lehenetsia" -msgid "Login at" -msgstr "Non identifikatu" +msgid "Primary affiliation" +msgstr "Lehen afiliazioa" -msgid "No" -msgstr "Ez" +msgid "Private information elements" +msgstr "Informazio pribatuaren elementuak" -msgid "Home postal address" -msgstr "Etxeko helbidea" +msgid "Remember" +msgstr "Onespena gogoratu" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP Adibidea" +msgid "Remember my choice" +msgstr "Nire hautaketa gogoratu" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 Identitate hornitzailea (Urrunekoa)" +msgid "Report errors" +msgstr "Erroreen berri eman" -msgid "Do you want to logout from all the services above?" -msgstr "Goian agertzen diren zerbitzu guztietako saioak itxi nahi al dituzu?" +msgid "Required fields" +msgstr "Derrigorrezko eremuak" -msgid "Given name" -msgstr "Izena" +msgid "Return to service" +msgstr "Itzuli zerbitzura" -msgid "Identity assurance profile" -msgstr "Bermearen profilaren identifikatzailea" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Identitate hornitzailea (Anfitrioia)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 Identitate hornitzailea (Urrunekoa)" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP Adibidea" -msgid "Organization name" -msgstr "Erakundearen izena" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Mezu bat bidaltzeari ekingo zaio. Saka ezazu \"Mezua bidali\" botoia jarraitzeko." - -msgid "Home organization domain name" -msgstr "Jatorrizko erakundearen domeinu izena" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Zerbitzu hornitzailea (Anfitrioia)" -msgid "Go back to the file list" -msgstr "Itzuli fitxategien zerrendara" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Errore txostena bidalita" +msgid "Select" +msgstr "Hautatu" -msgid "Common name" -msgstr "Izen arrunta (CN)" +msgid "Select configuration file to check:" +msgstr "Hautatu ezazu egiaztatu beharreko konfigurazio fitxategia: " -msgid "Logout failed" -msgstr "Saioa ixteko prozesuak huts egin du" +msgid "Select your identity provider" +msgstr "Hauta ezazu zure identitate hornitzailea" -msgid "Identity number assigned by public authorities" -msgstr "Gizarte-segurantzako zenbakia" +msgid "Send e-mail to help desk" +msgstr "Bidali posta laguntza teknikoari " -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation Identitate hornitzailea (Urrunekoa)" +msgid "Send error report" +msgstr "Bidal ezazu errorearen txostena" -msgid "Some error occurred" -msgstr "Errore bat jazo da" +msgid "Sending message" +msgstr "Mezua bidaltzen" -msgid "Organization" -msgstr "Erakundea" +msgid "Service Provider" +msgstr "Zerbitzu hornitzailea" -msgid "Choose home organization" -msgstr "Jatorrizko erakundea hautatu" +msgid "Session size: %SIZE%" +msgstr "Saioaren tamaina: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Goitizen ID etengabea" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metadatuak " -msgid "No errors found." -msgstr "Ez da errorerik aurkitu" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Identitate hornitzailea (Anfitrioia)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Zerbitzu hornitzailea (Anfitrioia)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Πάροχος Ταυτότητας Shib 1.3 (Απομακρυσμένος)" -msgid "Required fields" -msgstr "Derrigorrezko eremuak" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metadatuak " -msgid "Domain component (DC)" -msgstr "Domeinuaren osagaia (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Zerbitzu hornitzailea (Anfitrioia)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 Zerbitzu hornitzailea (Urrunekoa)" -msgid "Password" -msgstr "Pasahitza" - -msgid "Nickname" -msgstr "Ezizena" - -msgid "The error report has been sent to the administrators." -msgstr "Errore txostena administratzaileei bidali zaie." - -msgid "Date of birth" -msgstr "Jaioteguna" - -msgid "Private information elements" -msgstr "Informazio pribatuaren elementuak" - -msgid "You are also logged in on these services:" -msgstr "Zerbitzu hauetan ere kautotuta zaude:" +msgid "Shibboleth demo" +msgstr "Shibboleth Adibidea" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp Diagnostikoa" -msgid "No, only %SP%" -msgstr "Ez, %SPS bakarrik" - -msgid "Username" -msgstr "Erabiltzaile-izena" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Badirudi errore bat jazo dela SimpleSAMLphp-en konfigurazioan" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Itzuli SimpleSAMLphp instalazio orrira " +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp-en errorea" -msgid "You have successfully logged out from all services listed above." -msgstr "Hemen adierazten den zerrendako zerbitzu guztietako saioak zuzen itxi dira" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "%SP% saioa zuzen itxi da." +msgid "Some error occurred" +msgstr "Errore bat jazo da" -msgid "Affiliation" -msgstr "Afiliazioa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Egoera informazioa galdua" -msgid "You have been logged out." -msgstr "Saioa itxi da." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Egoera informazioa galdua eta ez dago modurik eskaera berrabiarazteko" -msgid "Return to service" -msgstr "Itzuli zerbitzura" +msgid "Street" +msgstr "Kalea" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation Zerbitzu hornitzailea (Anfitrioia)" +msgid "Submit message" +msgstr "Mezua bidali" -msgid "Preferred language" -msgstr "Hizkuntza lehenetsia" +msgid "Superfluous options in config file" +msgstr "Konfigurazio fitxategian soberan dauden aukerak" msgid "Surname" msgstr "Abizenak" -msgid "The following fields was not recognized" -msgstr "Datu hauek ez dira antzeman" - -msgid "User ID" -msgstr "Erabiltzaile ID" +msgid "Telephone number" +msgstr "Telefono zenbakia" -msgid "JPEG Photo" -msgstr "JPEG argazkia" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Idp-ak errore batekin erantzun dio eskaerari. (SAML erantzunean egoera kodea ez da arrakastatsua izan)" -msgid "Postal address" -msgstr "Posta-helbidea" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Kautotzea bertan behera utzi du erabiltzaileak" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "SAML 2.0 metadatuetako xml formatuan:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Arazketa informazio hau erabilgarria izan daiteke sistemaren administratzailea edo erabiltzailearen arreta zentroarentzat:" -msgid "Logging out of the following services:" -msgstr "Honako zerbitzu hauen saioak itxi:" +msgid "The error report has been sent to the administrators." +msgstr "Errore txostena administratzaileei bidali zaie." -msgid "Labeled URI" -msgstr "URI etiketatua" +msgid "The following fields was not recognized" +msgstr "Datu hauek ez dira antzeman" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Identitate hornitzailea (Anfitrioia)" +msgid "The following optional fields was not found" +msgstr "Hautazko datu hauek ez dira aurkitu" -msgid "Metadata" -msgstr "Metadatuak" +msgid "The following required fields was not found" +msgstr "Derrigorrezko datu hauek ez dira aurkitu" -msgid "Login" -msgstr "Saioa hasi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Ez da aurkitu adierazi duzun orria. URLa hau da: %URL%" -msgid "Yes, all services" -msgstr "Bai, zerbitzu guztiak" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Ez da aurkitu adierazi duzun orria. Arrazoia hau da: %REASON% URL hau da: %URL%" -msgid "Logged out" -msgstr "Saioa itxita." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Saioa ixteko eragiketari buruzko informazioa galdu da. Irten nahi duzun zerbitzura itzuli eta saioa berriz ixten saitu behar duzu. Saioa ixteko informazioa denbora mugatu batean gordetzen da, orokorrean saio ixteko eragiketak iraun beharko lukeen denbora baino gehiago, beraz errore hau konfigurazioan erroreren bat jazo delako gerta liteke. Errorea etengabea bada, jar zaitez harremanetan zerbitzuaren hornitzailearekin." -msgid "Postal code" -msgstr "Posta-kodea" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Eskaera honen abiarazleak ez du ematen ondoren nora joan adierazten duen RelayState parametroa" -msgid "Logging out..." -msgstr "Saioa ixten..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Aurkikuntza zerbitzuari bidalitako prametroak ez dira zehaztapenera doitzen." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Identitate hornitzailea (Anfitrioia)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Lehen afiliazioa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Ez da aldatu konfigurazio fitxategiaren pasahitzaren (auth.adminpassword) balio lehenetsia. Mesedez, edita ezazu fitxategia" -msgid "XML metadata" -msgstr "XML metadatuak" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Errore bat dago orri honen eskaeran. Arrazoia hau da: %REASON%" -msgid "Telephone number" -msgstr "Telefono zenbakia" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Konfigurazio erroreak daude zure SimpleSAMLphp-ren instalazioan. Zerbitzuaren administratzailea bazara, ziurta ezazu metadatuen konfigurazioa zuzena dela." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Ezinezkoa da zerbitzu bat edo batzuen saioak ixtea. Zure saio guztiak itxi direla ziurtatzeko, zure web nabigatzailea ixtea gomendatzen da. " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "IdP honek zerbitzu hornitzaile baten kautotze eskaera jaso du baina errore bat jazo da hau prozesatzen saiatzean." -msgid "Entitlement regarding the service" -msgstr "Zerbitzuari dagokion eskubidea" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Sarbide puntu hau ez dago gaituta. Egiazta itzazu SimpleSAMLphp-aren konfigurazioan gaitze aukerak." -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Metadatuak " +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Errore hau jazo izana SimpleSAMLphp-en ezusteko jokaera edo konfigurazio okerra izan da. Jar zaitez harremanetan identifikazio zerbitzu honen administratzailearekin eta bidal iezaiozu lehenagoko errore mezua. " -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Arazketa moduan egonez gero, bidaltzera zoazen mezuaren edukia ikusiko duzu: " +msgid "Title" +msgstr "Tratamendua" -msgid "Certificates" -msgstr "Ziurtagiriak" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "SAML entitate baten xehetasunak ikusteko, klikatu entitatearen goiburua." -msgid "Remember" -msgstr "Onespena gogoratu" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Pertsonaren jatorrizko erakundearen izen osatua (DN)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Ezin da aurkitu metadaturik %ENTITYID%-(a)rentzat" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Mezu bat bidaltzeari ekingo zaio. Saka ezazu \"Mezua bidali\" lotura jarraitzeko." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Ezinezkoa da zerbitzu bat edo batzuen saioak ixtea. Zure saio guztiak itxi direla ziurtatzeko, zure web nabigatzailea ixtea gomendatzen da. " -msgid "Organizational unit" -msgstr "Antolamendu-unitatea" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Tokiko zenbaki identifikatzailea" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Kudeatu gabeko salbuespena" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Metadatuak " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Ziurtagiri ezezaguna" -msgid "Change your home organization" -msgstr "Zure jatorrizko erakundea aldatu" +msgid "User ID" +msgstr "Erabiltzaile ID" msgid "User's password hash" msgstr "Erabiltzailearen pasahitzaren hash-a" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "SimpleSAMLphp formatuko fitxategi batean - beste muturrean SimpleSAMLphp entitate bat erabiltzen ariz gero, erabil ezazu aukera hau:" - -msgid "Completed" -msgstr "Amaitua" - -msgid "Select configuration file to check:" -msgstr "Hautatu ezazu egiaztatu beharreko konfigurazio fitxategia: " - -msgid "On hold" -msgstr "Itxaroten" +msgid "Username" +msgstr "Erabiltzaile-izena" -msgid "Help! I don't remember my password." -msgstr "Lagundu! Ez dut nire pasahitza gogoratzen." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP Adibidea" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Arazketa modua desaktibatu daiteke SimpleSAMLphp config/config.php konfigurazio orokorreko fitxategian." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation Identitate hornitzailea (Urrunekoa)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp-en errorea" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation Zerbitzu hornitzailea (Anfitrioia)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Kautotuta zauden zerbitzu bat edo batzuk ez dute uzten saioa ixten. Zure saio guztiak ixten direla ziurtatzeko, zure nabigatzaileko leiho guztiak ixtea gomendatzen da." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Erakundearen izen legala" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Ezin izan da identitatearen hornitzaileak bidalitako erantzuna onartu." -msgid "Options missing from config file" -msgstr "Konfigurazio fitxategian falta diren aukerak" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Identitatearen hornitzaileak errore bat antzeman du kautotze erantzuna sortzean." -msgid "The following optional fields was not found" -msgstr "Hautazko datu hauek ez dira aurkitu" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Zeinen txarto! - Zure erabiltziale-izena eta pasahitza gabe ezin zara identifikatu ezta zerbitzuan sartu ere. Agian bada norbait lagun diezazukeena. Jar zaitez harremanetan erakundeko laguntza zentroarekin!" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "xml metadatuekin URL bat eskura dezakezu:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Kalea" +msgid "XML metadata" +msgstr "XML metadatuak" -msgid "Message" -msgstr "Mezua" +msgid "Yes, all services" +msgstr "Bai, zerbitzu guztiak" -msgid "Contact information:" -msgstr "Harremanetarako informazioa:" +msgid "Yes, continue" +msgstr "Bai, jarraitu" -msgid "Legal name" -msgstr "Izen legala" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Hautazko datuak" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Baieztapen kontsumitzailearen interfazera sartu zara baina ez duzu SAML kautotze erantzun bat erantsi." -msgid "You have previously chosen to authenticate at" -msgstr "Lehenago, hemen kautotzea hautatu duzu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Sarrera orrira zerbait bidali duzu baina, arrazoiren bategatik, pasahitza ez da bidali.Saia zaitez berriro, mesedez." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "SingleLogoutService interfazera sartu zara baina ez duzu erantsi SAML LogoutRequest edo LogoutResponse mezurik" -msgid "Fax number" -msgstr "Fax-zenbakia" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Mezu bat bidaltzeari ekingo zaio. Saka ezazu \"Mezua bidali\" botoia jarraitzeko." -msgid "Shibboleth demo" -msgstr "Shibboleth Adibidea" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Mezu bat bidaltzeari ekingo zaio. Saka ezazu \"Mezua bidali\" lotura jarraitzeko." -msgid "Error in this metadata entry" -msgstr "Metadatu sarrera honetan errorea" +msgid "You are also logged in on these services:" +msgstr "Zerbitzu hauetan ere kautotuta zaude:" -msgid "Session size: %SIZE%" -msgstr "Saioaren tamaina: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Aurre-produzkio batean sartzen ari zara. Konfigurazio hau aurre-produkzioko sistemaren frogak egin eta egiaztatzeko bakarrik da. Hona iristeko norbaitek bidali dizun lotura bat jarraitu baduzu eta frogatzaile bat ez bazara, ziurrenik errore bat izango da, eta zuk ez zenuke hemen egon behar." -msgid "Parse" -msgstr "Aztertu" +msgid "You are now successfully logged out from %SP%." +msgstr "%SP% saioa zuzen itxi da." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Zeinen txarto! - Zure erabiltziale-izena eta pasahitza gabe ezin zara identifikatu ezta zerbitzuan sartu ere. Agian bada norbait lagun diezazukeena. Jar zaitez harremanetan erakundeko laguntza zentroarekin!" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "xml metadatuekin URL bat eskura dezakezu:" -msgid "Choose your home organization" -msgstr "Hautatu zure jatorrizko erakundea" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Arazketa modua desaktibatu daiteke SimpleSAMLphp config/config.php konfigurazio orokorreko fitxategian." -msgid "Send e-mail to help desk" -msgstr "Bidali posta laguntza teknikoari " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Ez duzu baliozko ziurtagiririk aurkeztu " -msgid "Metadata overview" -msgstr "Ikusi metadatuak" +msgid "You have been logged out." +msgstr "Saioa itxi da." -msgid "Title" -msgstr "Tratamendua" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "%HOMEORG% hautatu duzu zure jatorrizko erakunde bezala. Informazio hau okerra bada beste bat hautatu dezakezu." -msgid "Manager" -msgstr "Kudeatzailea" +msgid "You have previously chosen to authenticate at" +msgstr "Lehenago, hemen kautotzea hautatu duzu" -msgid "Affiliation at home organization" -msgstr "Afiliazioa jatorrizko erakundean" +msgid "You have successfully logged out from all services listed above." +msgstr "Hemen adierazten den zerrendako zerbitzu guztietako saioak zuzen itxi dira" -msgid "Help desk homepage" -msgstr "Laguntza teknikoaren orria " +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Sarrera orrira zerbait bidali duzu baina, arrazoiren bategatik, pasahitza ez da bidali.Saia zaitez berriro, mesedez." -msgid "Configuration check" -msgstr "Konfigurazioa egiaztatu" +msgid "Your attributes" +msgstr "Atributuak" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Πάροχος Ταυτότητας Shib 1.3 (Απομακρυσμένος)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Hona hemen SimpleSAMLphp-ak zuretzat sortu dituen metadatuak. Metadatuen dokumentu hau konfidantzazko zure kideei bidal diezaiekezu federazio bat konfiguratzeko." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Zure saioa %remaining% segundoz izango da baliagarri." -msgid "Organizational homepage" -msgstr "Erakundearen hasiera-orria" +msgid "[Preferred choice]" +msgstr "[Aukera gogokoena]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Aurre-produzkio batean sartzen ari zara. Konfigurazio hau aurre-produkzioko sistemaren frogak egin eta egiaztatzeko bakarrik da. Hona iristeko norbaitek bidali dizun lotura bat jarraitu baduzu eta frogatzaile bat ez bazara, ziurrenik errore bat izango da, eta zuk ez zenuke hemen egon behar." +msgid "not set" +msgstr "" diff --git a/locales/fi/LC_MESSAGES/messages.po b/locales/fi/LC_MESSAGES/messages.po index aa8b24c77f..e6fb31a5a7 100644 --- a/locales/fi/LC_MESSAGES/messages.po +++ b/locales/fi/LC_MESSAGES/messages.po @@ -1,535 +1,681 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "SAML-vastaus puuttuu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "SAML-viesti puuttui" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Palvelu on pyytänyt kirjautumista. Ole hyvä ja syötä tunnuksesi ja salasanasi alla olevaan kaavakkeeseen." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Suhde organisaatioon" + +msgid "Affiliation at home organization" +msgstr "Henkilön rooli kotiorganisaatiossa" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "SAML-pyynnin luonnissa tapahtui virhe virhe virhe virhe" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Uloskirjautumispyynnön käsittelyn yrityksessä tapahtui virhe" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Käsittelemätön poikkeus heitetty" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 +msgid "Authentication source error" +msgstr "" + +msgid "Authentication status" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Vääränlainen pyyntö vastaanotettu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Vääränlainen pyynti discovery-palveluun" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS virhe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Change your home organization" +msgstr "Muuta kotiorganisaatiotasi" + +msgid "Choose home organization" +msgstr "Valitse kotiorganisaatiosi" + +msgid "Choose your home organization" +msgstr "Valitse kotiorganisaatiosi" + +msgid "Common name" +msgstr "Käyttönimi" + +msgid "Completed" +msgstr "Valmis" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Virhe asetuksissa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Pyynnön luonti epäonnistui" +msgid "Contact information:" +msgstr "Yhteystiedot" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Vääränlainen pyynti discovery-palveluun" +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Autentikointivastauksen luonti epäonnistui" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Epäkelvollinen sertifikaatti" +msgid "Date of birth" +msgstr "Syntymäaika" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP-virhe" +msgid "Debug information" +msgstr "Virheenetsintätietoja" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Uloskirjautumistiedot hävisivät" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Uloskirjautumispyynnön käsittelyssä tapahtui virhe" +msgid "Display name" +msgstr "Näyttönimi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Metadatan lataaminen epäonnistui" +msgid "Distinguished name (DN) of person's home organization" +msgstr "DN-osio organisaation nimestä" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Ei oikeutta" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "DN-osio organisaatioyksikön nimestä" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Ei sertifikaattia" +msgid "Do you want to logout from all the services above?" +msgstr "Haluatko uloskirjautua edellämainituista palveluista?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Ei RelayState " +msgid "Domain component (DC)" +msgstr "Domain-osio" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Sivua ei löytynyt" +msgid "E-mail address:" +msgstr "sähköpostiosoite:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Salasanaa ei ole asetettu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Identiteetintarjoan vastauksen käsittely epäonnistui." +msgid "Enter your username and password" +msgstr "Syötä tunnuksesi ja salasanasi" + +msgid "Entitlement regarding the service" +msgstr "Organisaationoikeudet" + +msgid "Error" +msgstr "Virhe" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Pyynnön luonti epäonnistui" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Metadatan lataaminen epäonnistui" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Palveluntarjoajan pyynnin käsittelyssä tapahtui virhe." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Identiteetintarjoan vastauksen käsittely epäonnistui." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Uloskirjautumispyynnön käsittelyssä tapahtui virhe" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Virhe vastaanotettu Identiteetintarjoajalta." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Käsittelemätön poikkeus" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Tuntematon sertifikaatti" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Virheellinen käyttäjätunnus tai salasana" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Yritit Assertion Consumer Service-liittymään, mutta et tarjonnut SAML tunnistautumisvastausta." +msgid "Error report sent" +msgstr "Virheraportti lähetetty" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 msgid "Error when communicating with the CAS server." msgstr "CAS-palvelun kättelyvirhe" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Vaikuttaa siltä, että SimpleSAMLphp:na asetuksissa on virhe." +msgid "Explain what you did when this error occurred..." +msgstr "Kerro mitä teit kun virhe ilmeni:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "SAML-pyynnin luonnissa tapahtui virhe virhe virhe virhe" +msgid "Fax number" +msgstr "Faksinumero" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Discovery-palveluun lähetetyt tiedot eivät vastanneet määräyksiä." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Virhe tapahtui kun identiteetintarjoaja pyrki luomaan vastauksen tunnistautumiseen." +msgid "Given name" +msgstr "Etunimet" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP on käyttäjätietokanta, ja kirjautuessassi tarvitsemme yhteyden LDAP-tietokantaan. Yhteyden luonnissa tapahtui virhe." +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Palaa SimpleSAMLphp asennussivulle" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Uloskirjautumistiedot hävisivät. Sinun tulee palata siihen palveluun mistä aloitit uloskirjautumisen ja yrittää uutta uloskirjautumista. Tämä virhe voi johtua uloskirjautumistietojen vanhenemisesta. Uloskirjautumistietoja talletetaan vain rajatun ajan - usein vain tunteja. Tämä on selvästi pidempään kuin uloskirjautumisen pitäisi kesttä, joten virhe voi olla oire asetusten virheistä. Ota yhteuttä ylläpitäjään mikäli ongelma jatkuu." +msgid "Group membership" +msgstr "Ryhmän jäsenyys" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Uloskirjautumispyynnön käsittelyn yrityksessä tapahtui virhe" +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "SimpleSAMLphp-asenuksen määrittelyissä on virhe. Mikäli olet tämän palvelun ylläpitäjä tulee sinun varmistua metadatan oikeellisuudesta." +msgid "Help desk homepage" +msgstr "Helpdeskin kotisivu" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Tämä pääte ei ole otettu käyttöön. Tarkasta enable-optiot SimpleSAMLphp:n asetuksissa." +msgid "Help! I don't remember my password." +msgstr "Apua! En muista salasanaani" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Pyynnön luoja ei tarjonnut RelayState arvoa, joka ilmaisisi minne jatkaa." +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Tämä on SimpleSAMLphp:n statussivu. Näet onko istuntosi voimassa, kauanko se on voimassa ja kaikki istuuntosi liitetyt attribuutit." + +msgid "Home organization domain name" +msgstr "Organisaation domain-nimi" + +msgid "Home postal address" +msgstr "Kodin postiosoite" + +msgid "Home telephone" +msgstr "Kotipuhelin" + +msgid "How to get help" +msgstr "Miten saada apua" + +msgid "Identity number assigned by public authorities" +msgstr "Henkilötunnus" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Mikäli ilmoitat virheestä, ole hyvä ja sisällä tämä seurantanumero raporttiin. Seurantanumerolla ylläpitäjä löytää istuntosi lokeista helpommin." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Virheellinen käyttäjätunnus tai salasana" + +msgid "Incorrect username or password." +msgstr "Väärä tunnus tai salasana." + +msgid "Information about your current session" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Epäkelvollinen sertifikaatti" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" + +msgid "JPEG Photo" +msgstr "JPEG kuva" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP-virhe" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP on käyttäjätietokanta, ja kirjautuessassi tarvitsemme yhteyden LDAP-tietokantaan. Yhteyden luonnissa tapahtui virhe." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Sivua ei löytynyt. Osoite oli %URL%" +msgid "Labeled URI" +msgstr "Kotisivu" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Sivua ei löytynyt. Syynä oli: %REASON% Osoite oli %URL%" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Ylläpitäjän salasanaa (auth.adminpassword) ei ole vaihtunut oletusarvosta. Ole hyvä ja muokkaa asetustiedostoa." +msgid "Legal name" +msgstr "Virallinen nimi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Et tarjonnut voimassaolevaa sertifikaattia" +msgid "Local identity number" +msgstr "Henkilönumero" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Emme hyväksyneet identiteetintarjoajan vastausta." +msgid "Locality" +msgstr "Paikkakunta" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Identiteetintarjoaja sai tunnistautumispyynnön palveluntarjoajalta, mutta pyynnin käsittelyssä tapahtui virhe." +msgid "Logged out" +msgstr "Uloskirjautunut" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Identiteetintarjoaja vastasi virheellä. ( Tilakoodi SAML vastauksessa oli epäonnistunut)" +msgid "Logging out of the following services:" +msgstr "Kirjaudutaan ulos seuraavista palveluista:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Yritit kertauloskirjautumisliittymään, mutta et tarjonnut SAML LogoutRequest:iä tai LogoutRespons:ia." +msgid "Logging out..." +msgstr "Kirjautuu ulos..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Käsittelemätön poikkeus heitetty" +msgid "Login" +msgstr "Kirjaudu" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Tämä on SimpleSAMLphp:n statussivu. Näet onko istuntosi voimassa, kauanko se on voimassa ja kaikki istuuntosi liitetyt attribuutit." +msgid "Login at" +msgstr "Kirjaudu" msgid "Logout" msgstr "Uloskirjautuminen" -msgid "Your attributes" -msgstr "Attribuuttisi" +msgid "Logout failed" +msgstr "Uloskirjautuminen epäonnistunut" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Istuntosi on vielä voimassa %remaining% sekuntia" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Uloskirjautumistiedot hävisivät" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Valitse identiteettilähteesi jossa haluat kirjautua" +msgid "Mail" +msgstr "Sähköposti" -msgid "Remember my choice" -msgstr "Muista valintani" +msgid "Manager" +msgstr "Manager" -msgid "Select" -msgstr "Valitse" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "" -msgid "Select your identity provider" -msgstr "Valitse identiteettillähteesi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Yes, continue" -msgstr "Kyllä" +msgid "Mobile" +msgstr "Kännykkä" -msgid "Debug information" -msgstr "Virheenetsintätietoja" +msgid "Next" +msgstr "Seuraava" -msgid "E-mail address:" -msgstr "sähköpostiosoite:" +msgid "Nickname" +msgstr "Kutsumanimi" -msgid "Explain what you did when this error occurred..." -msgstr "Kerro mitä teit kun virhe ilmeni:" +msgid "No" +msgstr "Ei" -msgid "How to get help" -msgstr "Miten saada apua" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Ei RelayState " -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Mikäli ilmoitat virheestä, ole hyvä ja sisällä tämä seurantanumero raporttiin. Seurantanumerolla ylläpitäjä löytää istuntosi lokeista helpommin." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "SAML-viesti puuttui" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Valinnaisesti syötä säkhköpostiosoitteesa jotta ylläpitäjä voi ottaa sinuun yhteyttä selvittääkseen ongelmaa:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Report errors" -msgstr "Ilmoita virheistä" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "SAML-vastaus puuttuu" -msgid "Send error report" -msgstr "Lähetä virheraportti" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Ei oikeutta" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Alla olevat virheenetsintätiedot voivat kiinnostaa ylläpitäjäää tai helpdeskiä:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Ei sertifikaattia" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Tämä virhe on todennäköisestä oireena SimpleSAMLphp:n vääristä asetuksista. Ota yhteyttä identiteettipalvelun ylläpitäjään, ja sisällytä yllä oleva virheilmoitus." +msgid "No identity providers found. Cannot continue." +msgstr "" -msgid "[Preferred choice]" -msgstr "[Oletusvalinta]" +msgid "No, cancel" +msgstr "ei" -msgid "Person's principal name at home organization" -msgstr "Henkilön universaali nimi" +msgid "No, only %SP%" +msgstr "Ei, vain %SP%" -msgid "Mobile" -msgstr "Kännykkä" +msgid "On hold" +msgstr "Odota" -msgid "Display name" -msgstr "Näyttönimi" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Yksi tai useampi palvelu johon olet kirjautunut ei tue uloskirjautumista. Varmistaaksesi, että kaikki istuntosi sulkeutuvat, olet velvollinen sulkemaan web-selaimesi." -msgid "Home telephone" -msgstr "Kotipuhelin" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Valinnaisesti syötä säkhköpostiosoitteesa jotta ylläpitäjä voi ottaa sinuun yhteyttä selvittääkseen ongelmaa:" -msgid "Service Provider" -msgstr "Palveluntarjoaja" +msgid "Organization" +msgstr "Organisaatio" -msgid "Incorrect username or password." -msgstr "Väärä tunnus tai salasana." +msgid "Organization name" +msgstr "Organisaation nimi" -msgid "Locality" -msgstr "Paikkakunta" +msgid "Organization's legal name" +msgstr "Organisaation virallinen nimi" + +msgid "Organizational homepage" +msgstr "Organisaation kotisivu" msgid "Organizational number" msgstr "Organisaation numero" -msgid "Post office box" -msgstr "Postilokero" +msgid "Organizational unit" +msgstr "Organisaation yksikkö" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Palvelu on pyytänyt kirjautumista. Ole hyvä ja syötä tunnuksesi ja salasanasi alla olevaan kaavakkeeseen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Sivua ei löytynyt" -msgid "Error" -msgstr "Virhe" +msgid "Password" +msgstr "Salasana" -msgid "Next" -msgstr "Seuraava" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Salasanaa ei ole asetettu" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "DN-osio organisaatioyksikön nimestä" +msgid "Persistent pseudonymous ID" +msgstr "Pseudonyymi-identiteetti" -msgid "Mail" -msgstr "Sähköposti" +msgid "Person's principal name at home organization" +msgstr "Henkilön universaali nimi" -msgid "No, cancel" -msgstr "ei" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Valitse identiteettilähteesi jossa haluat kirjautua" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Olet valinnut kotiorganisaatioksesi %HOMEORG% . Voit muuttaa asetusta valitsemalla toisen." +msgid "Post office box" +msgstr "Postilokero" -msgid "Enter your username and password" -msgstr "Syötä tunnuksesi ja salasanasi" +msgid "Postal address" +msgstr "Postiosoite" -msgid "Login at" -msgstr "Kirjaudu" +msgid "Postal code" +msgstr "Postinumero" -msgid "No" -msgstr "Ei" +msgid "Preferred language" +msgstr "Ensisijainen kieli" -msgid "Home postal address" -msgstr "Kodin postiosoite" +msgid "Primary affiliation" +msgstr "Ensisijainen suhde organisaatioon" -msgid "WS-Fed SP Demo Example" -msgstr "WS-FED SP esimerkki" +msgid "Private information elements" +msgstr "Yksilöivät tunnisteet" -msgid "Do you want to logout from all the services above?" -msgstr "Haluatko uloskirjautua edellämainituista palveluista?" +msgid "Remember" +msgstr "Muista" -msgid "Given name" -msgstr "Etunimet" +msgid "Remember my choice" +msgstr "Muista valintani" -msgid "SAML 2.0 SP Demo Example" -msgstr "SAML 2.0 SP esimerkki" +msgid "Report errors" +msgstr "Ilmoita virheistä" -msgid "Organization name" -msgstr "Organisaation nimi" +msgid "Return to service" +msgstr "Palaa palveluun" -msgid "Home organization domain name" -msgstr "Organisaation domain-nimi" +msgid "SAML 2.0 SP Demo Example" +msgstr "SAML 2.0 SP esimerkki" -msgid "Error report sent" -msgstr "Virheraportti lähetetty" +msgid "SAML Subject" +msgstr "" -msgid "Common name" -msgstr "Käyttönimi" +msgid "Select" +msgstr "Valitse" -msgid "Logout failed" -msgstr "Uloskirjautuminen epäonnistunut" +msgid "Select your identity provider" +msgstr "Valitse identiteettillähteesi" -msgid "Identity number assigned by public authorities" -msgstr "Henkilötunnus" +msgid "Send e-mail to help desk" +msgstr "Lähetä sähköposti helpdeskille." -msgid "Some error occurred" -msgstr "Virhe" +msgid "Send error report" +msgstr "Lähetä virheraportti" -msgid "Organization" -msgstr "Organisaatio" +msgid "Sending message" +msgstr "" -msgid "Choose home organization" -msgstr "Valitse kotiorganisaatiosi" +msgid "Service Provider" +msgstr "Palveluntarjoaja" -msgid "Persistent pseudonymous ID" -msgstr "Pseudonyymi-identiteetti" +msgid "Session size: %SIZE%" +msgstr "Istunnon koko: %SIZE%" -msgid "Domain component (DC)" -msgstr "Domain-osio" +msgid "Shibboleth demo" +msgstr "Shibboleth esimerkki" -msgid "Password" -msgstr "Salasana" +msgid "SimpleSAMLphp Diagnostics" +msgstr "SimpleSAMLphp diagnostiikka" -msgid "Nickname" -msgstr "Kutsumanimi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Vaikuttaa siltä, että SimpleSAMLphp:na asetuksissa on virhe." -msgid "The error report has been sent to the administrators." -msgstr "Virheraportti on lähetetty ylläpitäjille." +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp virhe" -msgid "Date of birth" -msgstr "Syntymäaika" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "Private information elements" -msgstr "Yksilöivät tunnisteet" +msgid "Some error occurred" +msgstr "Virhe" -msgid "You are also logged in on these services:" -msgstr "Olet kirjautunut seuraaviin palveluihin:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "" -msgid "SimpleSAMLphp Diagnostics" -msgstr "SimpleSAMLphp diagnostiikka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "" -msgid "No, only %SP%" -msgstr "Ei, vain %SP%" +msgid "Street" +msgstr "Katu" -msgid "Username" -msgstr "Tunnus" +msgid "Surname" +msgstr "Sukunimi" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Palaa SimpleSAMLphp asennussivulle" +msgid "Telephone number" +msgstr "Puhelinnumero" -msgid "You have successfully logged out from all services listed above." -msgstr "Olet onnistuneesti kirjautunut ulos kaikista yllä listatuista palveluista." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Identiteetintarjoaja vastasi virheellä. ( Tilakoodi SAML vastauksessa oli epäonnistunut)" -msgid "You are now successfully logged out from %SP%." -msgstr "Olet kirjautunut ulos palvelusta %SP%." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "" -msgid "Affiliation" -msgstr "Suhde organisaatioon" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Alla olevat virheenetsintätiedot voivat kiinnostaa ylläpitäjäää tai helpdeskiä:" -msgid "You have been logged out." -msgstr "Olet kirjautunut ulos" +msgid "The error report has been sent to the administrators." +msgstr "Virheraportti on lähetetty ylläpitäjille." -msgid "Return to service" -msgstr "Palaa palveluun" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Sivua ei löytynyt. Osoite oli %URL%" -msgid "Preferred language" -msgstr "Ensisijainen kieli" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Sivua ei löytynyt. Syynä oli: %REASON% Osoite oli %URL%" -msgid "Surname" -msgstr "Sukunimi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Uloskirjautumistiedot hävisivät. Sinun tulee palata siihen palveluun mistä aloitit uloskirjautumisen ja yrittää uutta uloskirjautumista. Tämä virhe voi johtua uloskirjautumistietojen vanhenemisesta. Uloskirjautumistietoja talletetaan vain rajatun ajan - usein vain tunteja. Tämä on selvästi pidempään kuin uloskirjautumisen pitäisi kesttä, joten virhe voi olla oire asetusten virheistä. Ota yhteuttä ylläpitäjään mikäli ongelma jatkuu." -msgid "User ID" -msgstr "uid" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Pyynnön luoja ei tarjonnut RelayState arvoa, joka ilmaisisi minne jatkaa." -msgid "JPEG Photo" -msgstr "JPEG kuva" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Discovery-palveluun lähetetyt tiedot eivät vastanneet määräyksiä." -msgid "Postal address" -msgstr "Postiosoite" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Logging out of the following services:" -msgstr "Kirjaudutaan ulos seuraavista palveluista:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Ylläpitäjän salasanaa (auth.adminpassword) ei ole vaihtunut oletusarvosta. Ole hyvä ja muokkaa asetustiedostoa." -msgid "Labeled URI" -msgstr "Kotisivu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "" -msgid "Login" -msgstr "Kirjaudu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "SimpleSAMLphp-asenuksen määrittelyissä on virhe. Mikäli olet tämän palvelun ylläpitäjä tulee sinun varmistua metadatan oikeellisuudesta." -msgid "Yes, all services" -msgstr "Kyllä, kaikista palveluista" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Identiteetintarjoaja sai tunnistautumispyynnön palveluntarjoajalta, mutta pyynnin käsittelyssä tapahtui virhe." -msgid "Logged out" -msgstr "Uloskirjautunut" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Tämä pääte ei ole otettu käyttöön. Tarkasta enable-optiot SimpleSAMLphp:n asetuksissa." -msgid "Postal code" -msgstr "Postinumero" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Tämä virhe on todennäköisestä oireena SimpleSAMLphp:n vääristä asetuksista. Ota yhteyttä identiteettipalvelun ylläpitäjään, ja sisällytä yllä oleva virheilmoitus." -msgid "Logging out..." -msgstr "Kirjautuu ulos..." +msgid "Title" +msgstr "Titteli" -msgid "Primary affiliation" -msgstr "Ensisijainen suhde organisaatioon" +msgid "Tracking number" +msgstr "" -msgid "Telephone number" -msgstr "Puhelinnumero" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "" msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." msgstr "Uloskirjautuminen yhdestä tai useammasta palvelusta epäonnistui. Sulje web-selaimesi varmistaaksesi, että kaikki istuntosi sulkeutuvat." -msgid "Group membership" -msgstr "Ryhmän jäsenyys" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Entitlement regarding the service" -msgstr "Organisaationoikeudet" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Käsittelemätön poikkeus" -msgid "Remember" -msgstr "Muista" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Tuntematon sertifikaatti" -msgid "Distinguished name (DN) of person's home organization" -msgstr "DN-osio organisaation nimestä" +msgid "User ID" +msgstr "uid" -msgid "Organizational unit" -msgstr "Organisaation yksikkö" +msgid "User's password hash" +msgstr "Käyttäjän salasanatiiviste" -msgid "Local identity number" -msgstr "Henkilönumero" +msgid "Username" +msgstr "Tunnus" -msgid "Change your home organization" -msgstr "Muuta kotiorganisaatiotasi" +msgid "WS-Fed SP Demo Example" +msgstr "WS-FED SP esimerkki" -msgid "User's password hash" -msgstr "Käyttäjän salasanatiiviste" +msgid "Warning" +msgstr "" -msgid "Completed" -msgstr "Valmis" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Emme hyväksyneet identiteetintarjoajan vastausta." -msgid "On hold" -msgstr "Odota" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Virhe tapahtui kun identiteetintarjoaja pyrki luomaan vastauksen tunnistautumiseen." -msgid "Help! I don't remember my password." -msgstr "Apua! En muista salasanaani" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Pahus! - Ilman tunnusta ja salasanaa et voi kirjautua palveluun. Voi olla, että joku voi auttaa sinua. Ole hyvä ja ota yhteyttä korkeakoulusi tukeen!" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp virhe" +msgid "World" +msgstr "" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Yksi tai useampi palvelu johon olet kirjautunut ei tue uloskirjautumista. Varmistaaksesi, että kaikki istuntosi sulkeutuvat, olet velvollinen sulkemaan web-selaimesi." +msgid "Yes, all services" +msgstr "Kyllä, kaikista palveluista" -msgid "Organization's legal name" -msgstr "Organisaation virallinen nimi" +msgid "Yes, continue" +msgstr "Kyllä" -msgid "Street" -msgstr "Katu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Contact information:" -msgstr "Yhteystiedot" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Yritit Assertion Consumer Service-liittymään, mutta et tarjonnut SAML tunnistautumisvastausta." -msgid "Legal name" -msgstr "Virallinen nimi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You have previously chosen to authenticate at" -msgstr "Olet aikaisemmin valinnut identiteettilähteeksesi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Yritit kertauloskirjautumisliittymään, mutta et tarjonnut SAML LogoutRequest:iä tai LogoutRespons:ia." -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Lähetit jotain kirjautumissivulle, mutta jostain syystä salasanaa ei lähetetty. Ole hyvä ja yritä uudestaan." +msgid "You are also logged in on these services:" +msgstr "Olet kirjautunut seuraaviin palveluihin:" -msgid "Fax number" -msgstr "Faksinumero" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Olet siirtymässä testijärjestelmään. Käyttäjätunnistus on tarkoitettu vain testaukseen. Jos sait linkin järjestelmään ja et ole testikäyttäjä, sait todennäköisesti väärän linkin ja sinun ei pitäisi olla täällä." -msgid "Shibboleth demo" -msgstr "Shibboleth esimerkki" +msgid "You are now successfully logged out from %SP%." +msgstr "Olet kirjautunut ulos palvelusta %SP%." -msgid "Session size: %SIZE%" -msgstr "Istunnon koko: %SIZE%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Et tarjonnut voimassaolevaa sertifikaattia" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Pahus! - Ilman tunnusta ja salasanaa et voi kirjautua palveluun. Voi olla, että joku voi auttaa sinua. Ole hyvä ja ota yhteyttä korkeakoulusi tukeen!" +msgid "You have been logged out." +msgstr "Olet kirjautunut ulos" -msgid "Choose your home organization" -msgstr "Valitse kotiorganisaatiosi" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Olet valinnut kotiorganisaatioksesi %HOMEORG% . Voit muuttaa asetusta valitsemalla toisen." -msgid "Send e-mail to help desk" -msgstr "Lähetä sähköposti helpdeskille." +msgid "You have previously chosen to authenticate at" +msgstr "Olet aikaisemmin valinnut identiteettilähteeksesi" -msgid "Title" -msgstr "Titteli" +msgid "You have successfully logged out from all services listed above." +msgstr "Olet onnistuneesti kirjautunut ulos kaikista yllä listatuista palveluista." -msgid "Manager" -msgstr "Manager" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Lähetit jotain kirjautumissivulle, mutta jostain syystä salasanaa ei lähetetty. Ole hyvä ja yritä uudestaan." -msgid "Affiliation at home organization" -msgstr "Henkilön rooli kotiorganisaatiossa" +msgid "Your attributes" +msgstr "Attribuuttisi" -msgid "Help desk homepage" -msgstr "Helpdeskin kotisivu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Organizational homepage" -msgstr "Organisaation kotisivu" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Istuntosi on vielä voimassa %remaining% sekuntia" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Olet siirtymässä testijärjestelmään. Käyttäjätunnistus on tarkoitettu vain testaukseen. Jos sait linkin järjestelmään ja et ole testikäyttäjä, sait todennäköisesti väärän linkin ja sinun ei pitäisi olla täällä." +msgid "[Preferred choice]" +msgstr "[Oletusvalinta]" + +msgid "not set" +msgstr "" diff --git a/locales/fr/LC_MESSAGES/messages.po b/locales/fr/LC_MESSAGES/messages.po index 14b5f9b2c2..b39379f65c 100644 --- a/locales/fr/LC_MESSAGES/messages.po +++ b/locales/fr/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Aucune réponse SAML fournie" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Aucun message SAML fourni" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Un service a demandé à ce que vous vous authentifiez. Cela signifie que vous devez entrer votre identifiant et votre mot de passe dans le formulaire ci-dessous." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Affiliation" + +msgid "Affiliation at home organization" +msgstr "Rôles pour ce service" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Une erreur s'est produite lors de la tentative de créer la requête SAML." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Une erreur s'est produite lors de la tentative de traiter la demande de déconnexion." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Une exception non gérée a été levée." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Le mode de débogage est activé, le contenu du message envoyé est affiché :" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Authentification abandonnée" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Erreur d'authentification pour la source %AUTHSOURCE%. La raison était %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Échec de l'authentification : le certificat présenté par votre navigateur est invalide ou illisible" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Échec de l'authentification : le certificat présenté par votre navigateur n'est pas connu" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Échec de l'authentification : votre navigateur n'a pas présenté de certificat" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Erreur sur la source d'authentification" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Requête invalide" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Mauvaise requête au service de découverte automatique (discovery service)" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "Erreur CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Certificats" + +msgid "Change your home organization" +msgstr "Changez votre fournisseur" + +msgid "Choose home organization" +msgstr "Choisissez votre fournisseur." + +msgid "Choose your home organization" +msgstr "Choisissez votre fournisseur." + +msgid "Common name" +msgstr "Nom usuel" + +msgid "Completed" +msgstr "Fait" + +msgid "Configuration check" +msgstr "Vérification de la configuration" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Erreur dans la configuration" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Erreur lors de la création d'une requête" +msgid "Contact information:" +msgstr "Coordonnées :" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Mauvaise requête au service de découverte automatique (discovery service)" +msgid "Converted metadata" +msgstr "Métadonnées converties" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Ne peut pas créer une réponse d'authentification" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Certificat invalide" +msgid "Date of birth" +msgstr "Date de naissance" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Erreur LDAP" +msgid "Debug information" +msgstr "Information de déboguage" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Information de déconnexion perdue" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Erreur lors du traitement de la requête de déconnexion" +msgid "Display name" +msgstr "Nom pour affichage" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Erreur lors du chargement des métadonnées (metadata)" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Nom unique (DN) de l'institution d'origine" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Métadonnées non trouvées" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Nom unique (DN) de la section d'origine" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Pas d'accès" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Nom unique (DN) de la section d'origine" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Aucun certificat présenté" +msgid "Do you want to logout from all the services above?" +msgstr "Voulez vous réellement terminer les connexions à tout ces services?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Pas d'information RelayState" +msgid "Domain component (DC)" +msgstr "Fragment de domaine (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Information d'état perdue" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Télécharger les certificats X509 en tant que fichiers encodés PEM." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Page introuvable" +msgid "E-mail address:" +msgstr "Adresse de courriel :" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Le mot de passe n'a pas été renseigné" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Utilisateur inexistant, ou mot de passe incorrect. Vérifiez le nom d'utilisateur, et ré-essayez." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Erreur lors du traitement de la réponse de l'IdP" +msgid "Enter your username and password" +msgstr "Entrez votre identifiant et votre mot de passe" + +msgid "Entitlement regarding the service" +msgstr "Appartenance à un groupe" + +msgid "Error" +msgstr "Erreur" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Erreur lors de la création d'une requête" + +msgid "Error in this metadata entry" +msgstr "Erreur dans les métadonnées de cet élément" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Erreur lors du chargement des métadonnées (metadata)" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Erreur lors du traitement de la requête du fournisseur d'identité" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Erreur lors du traitement de la réponse de l'IdP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Erreur lors du traitement de la requête de déconnexion" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Erreur levée par le fournisseur d'identité" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Exception non gérée" +msgid "Error report sent" +msgstr "Rapport d'erreur envoyé" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Certificat inconnu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Erreur de communication avec le serveur CAS" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Authentification abandonnée" +msgid "Explain what you did when this error occurred..." +msgstr "Expliquez ce que vous faisiez lorsque cette erreur est apparue..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Nom d'utilisateur ou mot de passe incorrect" +msgid "Fax number" +msgstr "Numéro de fax" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Vous avez accédé à l'interface du service de traitement des assertions, mais vous n'avez pas fourni de réponse d'authentification SAML." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Erreur d'authentification pour la source %AUTHSOURCE%. La raison était %REASON%" +msgid "Given name" +msgstr "Prénom" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Erreur dans la requête de cette page. Motif : %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Retournez à la page d'installation de SimpleSAML." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Erreur de communication avec le serveur CAS" +msgid "Go back to the file list" +msgstr "Retour à la liste des fichiers" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Il semble que SimpleSAMLphp soit mal configuré." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Une erreur s'est produite lors de la tentative de créer la requête SAML." +msgid "Help desk homepage" +msgstr "Page web de l'assistance technique" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Les paramètres envoyés au service de découverte automatique (discovery service) ne respectent pas les spécifications." +msgid "Help! I don't remember my password." +msgstr "À l'aide! Je ne me souviens plus de mon mot de passe." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Une erreur s'est produite lorsque ce fournisseur d'identité a essayé de créer une réponse d'authentification." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Voici les métadonnées générées par SimpleSAMLphp. Vous pouvez les envoyer à vos partenaires de confiances pour construire une fédération d'identité." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Échec de l'authentification : le certificat présenté par votre navigateur est invalide ou illisible" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Bonjour, vous êtes sur la page de statut de SimpleSAMLphp. Vous pouvez consulter ici le temps restant sur votre session, ainsi que les attributs qui y sont attachés." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "La base de données utilisateur est un annuaire LDAP, et quand vous essayez de vous connecter, nous avons besoin de prendre contact avec cet annuaire LDAP. Lorsque nous avons essayé cette fois une erreur s'est produite." +msgid "Home organization domain name" +msgstr "Identifiant unique de l'organisation de rattachement" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Information de déconnexion perdue. Les informations afférentes à la procédure de déconnexion en cours ont été perdues. Tentez de retourner au service depuis lequel vous avez tenté de lancer la déconnexion, et essayez encore. Cette erreur peut être causée par un problème d'obsolescence des information de déconnexion, qui ne sont conservées que durant un temps limité, de l'ordre de quelques heures. Cette durée est bien plus longue qu'une opération de déconnexion typique, ce qui suggère une autre erreur dans la configuration. Si le problème persiste, contactez l'administrateur du fournisseur de service." +msgid "Home postal address" +msgstr "Adresse postale personnelle" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Une erreur s'est produite lors de la tentative de traiter la demande de déconnexion." +msgid "Home telephone" +msgstr "Téléphone personnel" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Quelque chose n'est pas configuré correctement dans votre installation de SimpleSAMLphp. Si vous êtes l'administrateur de ce service, vous devez vous assurer que votre configuration des métadonnées est correctement réalisée." +msgid "How to get help" +msgstr "Envoyer le rapport d'erreur" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Impossible de localiser les métadonnées pour %ENTITYID%" +msgid "Identity assurance profile" +msgstr "Profil d'assertion d'identité" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Cette terminaison (ou endpoint) n'est pas activée. Vérifiez les options d'activation dans la configuration de SimpleSAMLphp." +msgid "Identity number assigned by public authorities" +msgstr "Numéro de sécurité sociale" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Échec de l'authentification : votre navigateur n'a pas présenté de certificat" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Si vous signalez cette erreur, veuillez aussi signaler l'identifiant de suivi qui permet de trouver votre session dans les logs accessibles à l'administrateur système :" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "L'émetteur de cette requête n'a pas fourni de paramètre RelayState indiquant quelle page afficher ensuite." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Au format XML de métadonnées SAML 2.0" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Information d'état perdue, et aucun moyen de relancer la requête" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "Au format à plat SimpleSAMLphp - à utiliser si vous avez une installation SimpleSAMLphp sur la partie adverse :" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "La page requise est introuvable. L'URL était : %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Nom d'utilisateur ou mot de passe incorrect" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "La page demandée est introuvable. Motif : %REASON% L'url était : %URL%" +msgid "Incorrect username or password." +msgstr "Mauvais identifiant ou mot de passe." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Le mot de passe dans la configuration (auth.adminpassword) n'a pas été changé par rapport à la valeur par défaut. Veuillez modifier la configuration." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Vous n'avez pas présenté de certificat valide" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Certificat invalide" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Nous n'avons pas accepté la réponse envoyée par le fournisseur d'identité." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Ce fournisseur de service a reçu une requête d'authentification d'un fournisseur d'identité, mais une erreur s'est produite lors du traitement de cette requête." +msgid "JPEG Photo" +msgstr "Photo JPEG" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Le fournisseur d'identité a renvoyé une erreur (le code de statut de la réponse SAML n'indiquait pas le succès)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Erreur LDAP" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Vous avez accédé à l'interface SingleLogoutService, mais vous n'avez pas fourni de LogoutRequest ou LogoutResponse SAML." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "La base de données utilisateur est un annuaire LDAP, et quand vous essayez de vous connecter, nous avons besoin de prendre contact avec cet annuaire LDAP. Lorsque nous avons essayé cette fois une erreur s'est produite." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Une exception non gérée a été levée." +msgid "Labeled URI" +msgstr "URI" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Échec de l'authentification : le certificat présenté par votre navigateur n'est pas connu" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "L'authentification a été abandonnée par l'usager" +msgid "Legal name" +msgstr "État civil" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Utilisateur inexistant, ou mot de passe incorrect. Vérifiez le nom d'utilisateur, et ré-essayez." +msgid "Local identity number" +msgstr "Immatriculation territoriale" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Bonjour, vous êtes sur la page de statut de SimpleSAMLphp. Vous pouvez consulter ici le temps restant sur votre session, ainsi que les attributs qui y sont attachés." +msgid "Locality" +msgstr "Lieu" -msgid "Logout" -msgstr "Déconnexion" +msgid "Logged out" +msgstr "Déconnecté" -msgid "Your attributes" -msgstr "Vos attributs" +msgid "Logging out of the following services:" +msgstr "Déconnexion des services suivants :" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Votre session est encore valide pour %remaining% secondes." +msgid "Logging out..." +msgstr "Déconnexion..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Sélectionnez le fournisseur d'identité auprès duquel vous souhaitez vous authentifier :" +msgid "Login" +msgstr "S'identifier" -msgid "Remember my choice" -msgstr "Retenir ce choix" +msgid "Login at" +msgstr "S'authentifier sur" -msgid "Select" -msgstr "Sélectionner" +msgid "Logout" +msgstr "Déconnexion" -msgid "Select your identity provider" -msgstr "Sélectionnez votre fournisseur d'identité" +msgid "Logout failed" +msgstr "Échec de la déconnexion" -msgid "Sending message" -msgstr "Envoi du message" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Information de déconnexion perdue" -msgid "Yes, continue" -msgstr "Oui" +msgid "Mail" +msgstr "Courriel" -msgid "Debug information" -msgstr "Information de déboguage" +msgid "Manager" +msgstr "Gestionnaire" -msgid "E-mail address:" -msgstr "Adresse de courriel :" +msgid "Message" +msgstr "Message" -msgid "Explain what you did when this error occurred..." -msgstr "Expliquez ce que vous faisiez lorsque cette erreur est apparue..." +msgid "Metadata" +msgstr "Métadonnées" -msgid "How to get help" -msgstr "Envoyer le rapport d'erreur" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Métadonnées non trouvées" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Si vous signalez cette erreur, veuillez aussi signaler l'identifiant de suivi qui permet de trouver votre session dans les logs accessibles à l'administrateur système :" +msgid "Metadata overview" +msgstr "Vue d'ensemble des métadonnées" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "De manière optionnelle, vous pouvez entrer votre courriel, afin que les administrateurs puissent vous contacter par la suite à propos de votre problème :" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "Signaler les erreurs" +msgid "Mobile" +msgstr "Mobile" -msgid "Send error report" -msgstr "Envoyer le rapport d'erreur" +msgid "Next" +msgstr "Suivant" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "L'information de déboguage ci-dessous peut être intéressante pour l'administrateur ou le help desk :" +msgid "Nickname" +msgstr "Pseudonyme" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Cette erreur est probablement causée par un comportement imprévu ou une mauvaise configuration de SimpleSAMLphp. Contactez l'administrateur de ce service d'identification et envoyez lui le message d'erreur." +msgid "No" +msgstr "Non" -msgid "[Preferred choice]" -msgstr "[Choix préféré]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Pas d'information RelayState" -msgid "Person's principal name at home organization" -msgstr "Nom de l'utilisateur dans l'organisation de rattachement" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Aucun message SAML fourni" -msgid "Superfluous options in config file" -msgstr "Options superflues dans le fichier de configuration" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "Mobile" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Aucune réponse SAML fournie" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Fournisseur de service Shib 1.3 local" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Pas d'accès" -msgid "Display name" -msgstr "Nom pour affichage" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Aucun certificat présenté" -msgid "SAML 2.0 SP Metadata" -msgstr "Métadonnées de SP SAML 2.0" +msgid "No errors found." +msgstr "Aucune erreur." + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Non" + +msgid "No, only %SP%" +msgstr "Non, seulement de %SP%" msgid "Notices" msgstr "A noter" -msgid "Home telephone" -msgstr "Téléphone personnel" +msgid "On hold" +msgstr "En cours" -msgid "Service Provider" -msgstr "Fournisseur de service" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Un ou plusieurs des services auxquels vous êtes connecté ne gèrent pas la déconnexion. Pour terminer les sessions sur ces services, vous devrez fermer votre navigateur." + +msgid "Optional fields" +msgstr "Champs optionnels" -msgid "Incorrect username or password." -msgstr "Mauvais identifiant ou mot de passe." +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "De manière optionnelle, vous pouvez entrer votre courriel, afin que les administrateurs puissent vous contacter par la suite à propos de votre problème :" -msgid "Submit message" -msgstr "Envoi du message" +msgid "Options missing from config file" +msgstr "Options manquantes dans le fichier de configuration" -msgid "Locality" -msgstr "Lieu" +msgid "Organization" +msgstr "Fournisseur" -msgid "The following required fields was not found" -msgstr "Les champs suivants n'existent pas et sont requis" +msgid "Organization name" +msgstr "Rôles pour ce service" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Télécharger les certificats X509 en tant que fichiers encodés PEM." +msgid "Organization's legal name" +msgstr "Nom légal de l'institution" + +msgid "Organizational homepage" +msgstr "Site web institutionnel" msgid "Organizational number" msgstr "Immatriculation de l'institution" -msgid "Post office box" -msgstr "Boite postale" +msgid "Organizational unit" +msgstr "Section" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Un service a demandé à ce que vous vous authentifiez. Cela signifie que vous devez entrer votre identifiant et votre mot de passe dans le formulaire ci-dessous." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Page introuvable" -msgid "Error" -msgstr "Erreur" +msgid "Parse" +msgstr "Analyser" -msgid "Next" -msgstr "Suivant" +msgid "Password" +msgstr "Mot de passe" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Nom unique (DN) de la section d'origine" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Le mot de passe n'a pas été renseigné" -msgid "Converted metadata" -msgstr "Métadonnées converties" +msgid "Persistent pseudonymous ID" +msgstr "Identifiant persistant anonyme" -msgid "Mail" -msgstr "Courriel" +msgid "Person's principal name at home organization" +msgstr "Nom de l'utilisateur dans l'organisation de rattachement" -msgid "No, cancel" -msgstr "Non" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Sélectionnez le fournisseur d'identité auprès duquel vous souhaitez vous authentifier :" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Vous avez choisi %HOMEORG% comme votre fournisseur. Si ce n'est pas correct, vous pouvez le changer." +msgid "Post office box" +msgstr "Boite postale" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Nom unique (DN) de la section d'origine" +msgid "Postal address" +msgstr "Adresse postale" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Pour examiner les détails d'une entité SAML, cliquez sur son en-tête." +msgid "Postal code" +msgstr "Code postal" -msgid "Enter your username and password" -msgstr "Entrez votre identifiant et votre mot de passe" +msgid "Preferred language" +msgstr "Langue préférée" -msgid "Login at" -msgstr "S'authentifier sur" +msgid "Primary affiliation" +msgstr "Affiliation primaire" -msgid "No" -msgstr "Non" +msgid "Private information elements" +msgstr "Éléments d'informations privées" -msgid "Home postal address" -msgstr "Adresse postale personnelle" +msgid "Remember" +msgstr "Se souvenir du consentement" -msgid "WS-Fed SP Demo Example" -msgstr "Exemple de démonstration de WS-Fed SP" +msgid "Remember my choice" +msgstr "Retenir ce choix" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "Fournisseur d'identité SAML 2.0 distant" +msgid "Report errors" +msgstr "Signaler les erreurs" -msgid "Do you want to logout from all the services above?" -msgstr "Voulez vous réellement terminer les connexions à tout ces services?" +msgid "Required fields" +msgstr "Champs requis" -msgid "Given name" -msgstr "Prénom" +msgid "Return to service" +msgstr "Retour au service" -msgid "Identity assurance profile" -msgstr "Profil d'assertion d'identité" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "Fournisseur d'identité SAML 2.0 local" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "Fournisseur d'identité SAML 2.0 distant" msgid "SAML 2.0 SP Demo Example" msgstr "Exemple de démonstration de SP SAML 2.0" -msgid "Organization name" -msgstr "Rôles pour ce service" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Vous allez envoyer un message. Cliquez sur le bouton d'envoi pour continuer." +msgid "SAML 2.0 SP Metadata" +msgstr "Métadonnées de SP SAML 2.0" -msgid "Home organization domain name" -msgstr "Identifiant unique de l'organisation de rattachement" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "Fournisseur de service SAML 2.0 local" -msgid "Go back to the file list" -msgstr "Retour à la liste des fichiers" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Rapport d'erreur envoyé" +msgid "Select" +msgstr "Sélectionner" -msgid "Common name" -msgstr "Nom usuel" +msgid "Select configuration file to check:" +msgstr "Sélectionnez le fichier de configuration à vérifier :" -msgid "Logout failed" -msgstr "Échec de la déconnexion" +msgid "Select your identity provider" +msgstr "Sélectionnez votre fournisseur d'identité" -msgid "Identity number assigned by public authorities" -msgstr "Numéro de sécurité sociale" +msgid "Send e-mail to help desk" +msgstr "Assistance technique par courriel" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "Fournisseur d'identité Shib 1.3 distant" +msgid "Send error report" +msgstr "Envoyer le rapport d'erreur" -msgid "Some error occurred" -msgstr "Une erreur est survenue" +msgid "Sending message" +msgstr "Envoi du message" -msgid "Organization" -msgstr "Fournisseur" +msgid "Service Provider" +msgstr "Fournisseur de service" -msgid "Choose home organization" -msgstr "Choisissez votre fournisseur." +msgid "Session size: %SIZE%" +msgstr "Taille de la session : %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Identifiant persistant anonyme" +msgid "Shib 1.3 IdP Metadata" +msgstr "Métadonnées d'IdP Shib 1.3" -msgid "No errors found." -msgstr "Aucune erreur." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Fournisseur d'identité Shib 1.3 local" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "Fournisseur de service SAML 2.0 local" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Fournisseur d'identité Shib 1.3 distant" -msgid "Required fields" -msgstr "Champs requis" +msgid "Shib 1.3 SP Metadata" +msgstr "Métadonnées de SP Shib 1.3" -msgid "Domain component (DC)" -msgstr "Fragment de domaine (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Fournisseur de service Shib 1.3 local" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Fournisseur de service Shib 1.3 distant" -msgid "Password" -msgstr "Mot de passe" - -msgid "Nickname" -msgstr "Pseudonyme" - -msgid "The error report has been sent to the administrators." -msgstr "Le rapport d'erreur a été envoyé aux administrateurs." - -msgid "Date of birth" -msgstr "Date de naissance" - -msgid "Private information elements" -msgstr "Éléments d'informations privées" - -msgid "You are also logged in on these services:" -msgstr "Vous êtes actuellement connecté aux services suivants:" +msgid "Shibboleth demo" +msgstr "Exemple de démonstration de Shibboleth" msgid "SimpleSAMLphp Diagnostics" msgstr "Diagnostics SimpleSAMLphp" -msgid "No, only %SP%" -msgstr "Non, seulement de %SP%" - -msgid "Username" -msgstr "Identifiant" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Il semble que SimpleSAMLphp soit mal configuré." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Retournez à la page d'installation de SimpleSAML." +msgid "SimpleSAMLphp error" +msgstr "erreur de SimpleSAMLphp" -msgid "You have successfully logged out from all services listed above." -msgstr "Vous avez été déconnecté avec succès des services listés ci dessus" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Vous avez été déconnecté de %SP%." +msgid "Some error occurred" +msgstr "Une erreur est survenue" -msgid "Affiliation" -msgstr "Affiliation" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Information d'état perdue" -msgid "You have been logged out." -msgstr "Vous avez été déconnecté. Merci d'avoir utilisé ce service." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Information d'état perdue, et aucun moyen de relancer la requête" -msgid "Return to service" -msgstr "Retour au service" +msgid "Street" +msgstr "Rue" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "Fournisseur de service WS-federation local" +msgid "Submit message" +msgstr "Envoi du message" -msgid "Preferred language" -msgstr "Langue préférée" +msgid "Superfluous options in config file" +msgstr "Options superflues dans le fichier de configuration" msgid "Surname" msgstr "Nom" -msgid "The following fields was not recognized" -msgstr "Les champs suivants n'ont pas été reconnus" - -msgid "User ID" -msgstr "ID Utilisateur" +msgid "Telephone number" +msgstr "Numéro de téléphone" -msgid "JPEG Photo" -msgstr "Photo JPEG" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Le fournisseur d'identité a renvoyé une erreur (le code de statut de la réponse SAML n'indiquait pas le succès)" -msgid "Postal address" -msgstr "Adresse postale" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "L'authentification a été abandonnée par l'usager" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Au format XML de métadonnées SAML 2.0" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "L'information de déboguage ci-dessous peut être intéressante pour l'administrateur ou le help desk :" -msgid "Logging out of the following services:" -msgstr "Déconnexion des services suivants :" +msgid "The error report has been sent to the administrators." +msgstr "Le rapport d'erreur a été envoyé aux administrateurs." -msgid "Labeled URI" -msgstr "URI" +msgid "The following fields was not recognized" +msgstr "Les champs suivants n'ont pas été reconnus" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Fournisseur d'identité Shib 1.3 local" +msgid "The following optional fields was not found" +msgstr "Les champs optionnels suivants n'ont pas été trouvés" -msgid "Metadata" -msgstr "Métadonnées" +msgid "The following required fields was not found" +msgstr "Les champs suivants n'existent pas et sont requis" -msgid "Login" -msgstr "S'identifier" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "La page requise est introuvable. L'URL était : %URL%" -msgid "Yes, all services" -msgstr "Oui, de tous les services" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "La page demandée est introuvable. Motif : %REASON% L'url était : %URL%" -msgid "Logged out" -msgstr "Déconnecté" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Information de déconnexion perdue. Les informations afférentes à la procédure de déconnexion en cours ont été perdues. Tentez de retourner au service depuis lequel vous avez tenté de lancer la déconnexion, et essayez encore. Cette erreur peut être causée par un problème d'obsolescence des information de déconnexion, qui ne sont conservées que durant un temps limité, de l'ordre de quelques heures. Cette durée est bien plus longue qu'une opération de déconnexion typique, ce qui suggère une autre erreur dans la configuration. Si le problème persiste, contactez l'administrateur du fournisseur de service." -msgid "Postal code" -msgstr "Code postal" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "L'émetteur de cette requête n'a pas fourni de paramètre RelayState indiquant quelle page afficher ensuite." -msgid "Logging out..." -msgstr "Déconnexion..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Les paramètres envoyés au service de découverte automatique (discovery service) ne respectent pas les spécifications." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "Fournisseur d'identité SAML 2.0 local" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Affiliation primaire" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Le mot de passe dans la configuration (auth.adminpassword) n'a pas été changé par rapport à la valeur par défaut. Veuillez modifier la configuration." -msgid "XML metadata" -msgstr "Métadonnées XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Erreur dans la requête de cette page. Motif : %REASON%" -msgid "Telephone number" -msgstr "Numéro de téléphone" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Quelque chose n'est pas configuré correctement dans votre installation de SimpleSAMLphp. Si vous êtes l'administrateur de ce service, vous devez vous assurer que votre configuration des métadonnées est correctement réalisée." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Impossible de se déconnecter d'un ou plusieurs services. Pour être certain de clore vos sessions, il vous est recommandé de fermer votre navigateur." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Ce fournisseur de service a reçu une requête d'authentification d'un fournisseur d'identité, mais une erreur s'est produite lors du traitement de cette requête." -msgid "Entitlement regarding the service" -msgstr "Appartenance à un groupe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Cette terminaison (ou endpoint) n'est pas activée. Vérifiez les options d'activation dans la configuration de SimpleSAMLphp." -msgid "Shib 1.3 SP Metadata" -msgstr "Métadonnées de SP Shib 1.3" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Cette erreur est probablement causée par un comportement imprévu ou une mauvaise configuration de SimpleSAMLphp. Contactez l'administrateur de ce service d'identification et envoyez lui le message d'erreur." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Le mode de débogage est activé, le contenu du message envoyé est affiché :" +msgid "Title" +msgstr "Titre" -msgid "Certificates" -msgstr "Certificats" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Pour examiner les détails d'une entité SAML, cliquez sur son en-tête." -msgid "Remember" -msgstr "Se souvenir du consentement" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Nom unique (DN) de l'institution d'origine" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Impossible de localiser les métadonnées pour %ENTITYID%" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Vous allez envoyer un message. Cliquez sur le lien d'envoi pour continuer." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Impossible de se déconnecter d'un ou plusieurs services. Pour être certain de clore vos sessions, il vous est recommandé de fermer votre navigateur." -msgid "Organizational unit" -msgstr "Section" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Immatriculation territoriale" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Exception non gérée" -msgid "Shib 1.3 IdP Metadata" -msgstr "Métadonnées d'IdP Shib 1.3" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Certificat inconnu" -msgid "Change your home organization" -msgstr "Changez votre fournisseur" +msgid "User ID" +msgstr "ID Utilisateur" msgid "User's password hash" msgstr "Mot de passe chiffré" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "Au format à plat SimpleSAMLphp - à utiliser si vous avez une installation SimpleSAMLphp sur la partie adverse :" - -msgid "Completed" -msgstr "Fait" - -msgid "Select configuration file to check:" -msgstr "Sélectionnez le fichier de configuration à vérifier :" - -msgid "On hold" -msgstr "En cours" +msgid "Username" +msgstr "Identifiant" -msgid "Help! I don't remember my password." -msgstr "À l'aide! Je ne me souviens plus de mon mot de passe." +msgid "WS-Fed SP Demo Example" +msgstr "Exemple de démonstration de WS-Fed SP" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Vous pouvez désactivez le mode débogage dans le fichier de configuration globale de SimpleSAMLphp (config/config.php)." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "Fournisseur d'identité Shib 1.3 distant" -msgid "SimpleSAMLphp error" -msgstr "erreur de SimpleSAMLphp" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "Fournisseur de service WS-federation local" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Un ou plusieurs des services auxquels vous êtes connecté ne gèrent pas la déconnexion. Pour terminer les sessions sur ces services, vous devrez fermer votre navigateur." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Nom légal de l'institution" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Nous n'avons pas accepté la réponse envoyée par le fournisseur d'identité." -msgid "Options missing from config file" -msgstr "Options manquantes dans le fichier de configuration" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Une erreur s'est produite lorsque ce fournisseur d'identité a essayé de créer une réponse d'authentification." -msgid "The following optional fields was not found" -msgstr "Les champs optionnels suivants n'ont pas été trouvés" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Pas de chance! Sans votre identifiant et votre mot de passe vous ne pouvez pas vous authentifier et accéder au service. Il y a peut-être quelqu'un pour vous aider. Contactez le help desk de votre université!" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Vous pouvez obtenir ces métadonnées XML depuis une URL dédiée:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Rue" +msgid "XML metadata" +msgstr "Métadonnées XML" -msgid "Message" -msgstr "Message" +msgid "Yes, all services" +msgstr "Oui, de tous les services" -msgid "Contact information:" -msgstr "Coordonnées :" +msgid "Yes, continue" +msgstr "Oui" -msgid "Legal name" -msgstr "État civil" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Champs optionnels" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Vous avez accédé à l'interface du service de traitement des assertions, mais vous n'avez pas fourni de réponse d'authentification SAML." -msgid "You have previously chosen to authenticate at" -msgstr "Précédemment, vous aviez choisi de vous authentifier sur" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Vous avez envoyé quelque chose sur la page d'identification mais pour une raison inconnue votre mot de passe n'a pas été transmis. Veuillez réessayer." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Vous avez accédé à l'interface SingleLogoutService, mais vous n'avez pas fourni de LogoutRequest ou LogoutResponse SAML." -msgid "Fax number" -msgstr "Numéro de fax" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Vous allez envoyer un message. Cliquez sur le bouton d'envoi pour continuer." -msgid "Shibboleth demo" -msgstr "Exemple de démonstration de Shibboleth" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Vous allez envoyer un message. Cliquez sur le lien d'envoi pour continuer." -msgid "Error in this metadata entry" -msgstr "Erreur dans les métadonnées de cet élément" +msgid "You are also logged in on these services:" +msgstr "Vous êtes actuellement connecté aux services suivants:" -msgid "Session size: %SIZE%" -msgstr "Taille de la session : %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Ceci est un système en pré-production. La configuration d'authentification n'est destinée qu'aux tests. Si vous n'êtes pas un testeur, vous ne devriez pas être là." -msgid "Parse" -msgstr "Analyser" +msgid "You are now successfully logged out from %SP%." +msgstr "Vous avez été déconnecté de %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Pas de chance! Sans votre identifiant et votre mot de passe vous ne pouvez pas vous authentifier et accéder au service. Il y a peut-être quelqu'un pour vous aider. Contactez le help desk de votre université!" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Vous pouvez obtenir ces métadonnées XML depuis une URL dédiée:" -msgid "Choose your home organization" -msgstr "Choisissez votre fournisseur." +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Vous pouvez désactivez le mode débogage dans le fichier de configuration globale de SimpleSAMLphp (config/config.php)." -msgid "Send e-mail to help desk" -msgstr "Assistance technique par courriel" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Vous n'avez pas présenté de certificat valide" -msgid "Metadata overview" -msgstr "Vue d'ensemble des métadonnées" +msgid "You have been logged out." +msgstr "Vous avez été déconnecté. Merci d'avoir utilisé ce service." -msgid "Title" -msgstr "Titre" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Vous avez choisi %HOMEORG% comme votre fournisseur. Si ce n'est pas correct, vous pouvez le changer." -msgid "Manager" -msgstr "Gestionnaire" +msgid "You have previously chosen to authenticate at" +msgstr "Précédemment, vous aviez choisi de vous authentifier sur" -msgid "Affiliation at home organization" -msgstr "Rôles pour ce service" +msgid "You have successfully logged out from all services listed above." +msgstr "Vous avez été déconnecté avec succès des services listés ci dessus" -msgid "Help desk homepage" -msgstr "Page web de l'assistance technique" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Vous avez envoyé quelque chose sur la page d'identification mais pour une raison inconnue votre mot de passe n'a pas été transmis. Veuillez réessayer." -msgid "Configuration check" -msgstr "Vérification de la configuration" +msgid "Your attributes" +msgstr "Vos attributs" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Fournisseur d'identité Shib 1.3 distant" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Voici les métadonnées générées par SimpleSAMLphp. Vous pouvez les envoyer à vos partenaires de confiances pour construire une fédération d'identité." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Votre session est encore valide pour %remaining% secondes." -msgid "Organizational homepage" -msgstr "Site web institutionnel" +msgid "[Preferred choice]" +msgstr "[Choix préféré]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Ceci est un système en pré-production. La configuration d'authentification n'est destinée qu'aux tests. Si vous n'êtes pas un testeur, vous ne devriez pas être là." +msgid "not set" +msgstr "" diff --git a/locales/he/LC_MESSAGES/messages.po b/locales/he/LC_MESSAGES/messages.po index 5629c624b4..89e7a4d20f 100644 --- a/locales/he/LC_MESSAGES/messages.po +++ b/locales/he/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "לא סופקה תגובת SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "לא סופקו הודעות SAML" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "שירות ביקש שתזדהה. אנא הכנס את שם המשתמש והסיסמה שלך בטופס מתחת." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "השתייכות" + +msgid "Affiliation at home organization" +msgstr "שייכות באירגון הבית" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "שגיאה אירעה בניסיון ליצור את בקשת ה- SAML." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "שגיאה בזמן הניסיון לעבד את בקשת התנתקות." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "הושלכה חריגה ללא טיפול" + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "כיוון שאתה במצב מבדיקת באגים, אתה רואה את תוכן ההודעה שאתה שולח:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "ההיזדהות בוטלה" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "שגיאה במקור הזדהות %AUTHSOURCE%. הסיבה הייתה: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "ההיזדהות נכשלה: התעודה שהדפדפן שלח לא חוקית או לא ניתנת לקריאה" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "ההיזדהות נכשלה: התעודה שהדפדפן שלח לא ידועה" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "ההיזדהות נכשלה: הדפדפן לא שלח תעודה" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "שגיאה במקור ההזדהות" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "התקבלה בקשה לא חוקית" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "בקשה שגויה לשירות גילוי" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "שגיאת שהם" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "תעודות" + +msgid "Change your home organization" +msgstr "החלף את אירגון הבית שלך" + +msgid "Choose home organization" +msgstr "החלף אירגון בית" + +msgid "Choose your home organization" +msgstr "בחר את אירגון הבית שלך" + +msgid "Common name" +msgstr "שם רווח " + +msgid "Completed" +msgstr "הסתיים" + +msgid "Configuration check" +msgstr "בדיקת הגדרות" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "שגיאה בהגדרות" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "שגיאה ביצירת הבקשה" +msgid "Contact information:" +msgstr "צור קשר" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "בקשה שגויה לשירות גילוי" +msgid "Converted metadata" +msgstr "מטא-מידע מומר" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "אין אפשרות ליצור תגובת הזדהות" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "תעודה לא-חוקית" +msgid "Date of birth" +msgstr "תאריך לידה" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "שגיאת LDAP" +msgid "Debug information" +msgstr "מידע דבאג" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "מידע ההתנתקות אבד" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "שגיאה בעיבוד בקשת התנתקות" +msgid "Display name" +msgstr "הראה שם" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "שגיאה בטעינת המטא-מידע" +msgid "Distinguished name (DN) of person's home organization" +msgstr "שם מזהה (DN) של אירגון הבית" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "לא נמצא מטא-מידע" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "שם מזהה (DN) של היחידה העיקרית באירגון הבית" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "אין גישה" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "שם מזהה (DN) של היחידה באירגון הבית" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "אין תעודה" +msgid "Do you want to logout from all the services above?" +msgstr "האם אתה רוצה להתנתק מכל השרותים המוזכרים למעלה?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "אין RelayState" +msgid "Domain component (DC)" +msgstr "מרכיב מתחם (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "אבד מידע המצב" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "הורד את תעודות X509 כקבצי PEM-מקודד." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "דף לא נמצא" +msgid "E-mail address:" +msgstr "כתובת דואל:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "סיסמה לא מוגדרת" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "או שלא נמצא משתמש בשם זה, או שהסיסמה לא הייתה נכונה. בדוק בבקשה את שם המשתמש ונסה שוב. " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "שגיאה בעיבוד תגובה מספק הזהות" +msgid "Enter your username and password" +msgstr "הכנס שם משתמש וסיסמה" + +msgid "Entitlement regarding the service" +msgstr "אישור הקשור לשירות" + +msgid "Error" +msgstr "שגיאה" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "שגיאה ביצירת הבקשה" + +msgid "Error in this metadata entry" +msgstr "שגיאה ברשומת מטא-מידע זו" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "שגיאה בטעינת המטא-מידע" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "שגיאה בעיבוד תגובה מספק השרות" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "שגיאה בעיבוד תגובה מספק הזהות" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "שגיאה בעיבוד בקשת התנתקות" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "התקבלה שגיאה מספק הזיהות" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "חריגה לא מטופלת " +msgid "Error report sent" +msgstr "נשלח דוח שגיאה" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "תעודה לא ידועה" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "שגיאה בהתקשרות עם שרת שהם." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "ההיזדהות בוטלה" +msgid "Explain what you did when this error occurred..." +msgstr "הסבר מה עשית כשהתרחשה השגיאה..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "שם משתמש או סיסמה לא נכונים" +msgid "Fax number" +msgstr "מס' פקס" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "ניגשת לממשק הכרזת שירות ללקוח, אבל לא סיפקת תגובת הזדהות SAML. " +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "שגיאה במקור הזדהות %AUTHSOURCE%. הסיבה הייתה: %REASON%" +msgid "Given name" +msgstr "שם פרטי" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "ישנה שגיאה בבקשה לדף זה. הסיבה הייתה: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "חזור לדף ההתקנה של SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "שגיאה בהתקשרות עם שרת שהם." +msgid "Go back to the file list" +msgstr "חזור אל רשימת הקבצים" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "נראה ש SimpleSAMLphp לא מוגדר נכון" +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "שגיאה אירעה בניסיון ליצור את בקשת ה- SAML." +msgid "Help desk homepage" +msgstr "תמיכה טכנית" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "הפרמטרים שנשלחו לשירות גילוי לא היו על פי מפרט." +msgid "Help! I don't remember my password." +msgstr "הצילו! שכחתי את הסיסמה." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "כאשר ספק הזהות ניסה ליצור תגובת הזדהות, אירעה שגיאה." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "הנה המטא-מידע ש SimpleSAMLphp ייצר עבורך. אתה יכול לשלוח את מסמך המטא-מידע לשותפים מהימנים כדי ליצור איחוד מאובטח. " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "ההיזדהות נכשלה: התעודה שהדפדפן שלח לא חוקית או לא ניתנת לקריאה" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "שלום, זהו דף המצב של SimpleSAMLphp. כאן אפשר לראות אם השיחה הופסקה, כמה זמן היא תמשיך עד להפסקתה וכל התכונות המצורפות לשיחה." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP הוא מסד הנתונים המכיל את המשתמשים, וכאשר אתה מנסה להתחבר, צריך להתחבר אליו. שגיאה קרתה בזמן ניסיון החיבור הנוכחי." +msgid "Home organization domain name" +msgstr "שם המתחם של אירגון הבית" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "המידע על פעולת ההתנתקות הנוכחית אבד. אתה צריך לחזור לשירות ממנו ניסית להתנתק ולנסות שוב. שגיאה זו יכולה להיגרם על ידי מידע התנתקות שפג תוקפו. מידע ההתנתקות מאוכסן לזמן מוגבל - בדרך כלל כמה שעות. פרק זמן ארוך בהרבה מכל בקשת התנתקות נורמלית, לכן שגיאה זו יכולה להגרם מהגדרות לא נכונות. אם הבעייה ממשיכה, צור קשר עם ספק השרות." +msgid "Home postal address" +msgstr "כתובת דואר בבית" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "שגיאה בזמן הניסיון לעבד את בקשת התנתקות." +msgid "Home telephone" +msgstr "טלפון בבית" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "ישנה בעייה בהגדרות של התקנת ה SimpleSAMLphp שלך. אם אתה מנהל המערכת של שירות זה, כדי שתוודא שהגדרות מהמטא-מידע שלך נכונות." +msgid "How to get help" +msgstr "איך לקבל עזרה" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "לא ניתן לאתר מטא-מידע עבור %ENTITYID%" +msgid "Identity assurance profile" +msgstr "פרופיל הבטחת זהות" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "קצה זה אינו מופעל. בדוק את אפשריות ההפעלה בהגדרות SimpleSAMLphp שלך." +msgid "Identity number assigned by public authorities" +msgstr "מספר מזהה שניתן על ידי הרשויות הציבוריות" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "ההיזדהות נכשלה: הדפדפן לא שלח תעודה" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "אם אתה מדווח על התקלה, אנא דווח גם את מספר המעקב המאפשר לאתר את השיחה שלך ביומנים העומדים לרשות מנהל המערכת: " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "יוזם הבקשה לא סיפק פרמטר RelayState המציין לאן ללכת ." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "מטא-מידע עבור SAML 2.0 בתבנית XML:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "אבד מידע המצב, ואי אפשר להתחל מחדש את הבקשה" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "בתבנית קובץ SimpleSAMLphp שטוח - למקרים בהם אתה משתמש בישות SimpleSAMLphp בצד השני: " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "הדף ההמבוקש לא נמצא. הכתובת היית: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "שם משתמש או סיסמה לא נכונים" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "הדף הניתן לא נמצא. הסיבה הייתה %REASON% והכתובת הייתה %URL%" +msgid "Incorrect username or password." +msgstr "סיסמה או שם משתמש לא נכונים." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "הסיסמה בהגדרות (auth.adminpassword) לא שונתה מהערך ההתחלתי. אנא ערוך את קובץ ההגדרות." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "לא הצגת תעודה חוקית " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "תעודה לא-חוקית" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "לא קיבלנו את התגובה שנשלחה מספק הזהות." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "ספק זהות זה קיבל בקשת הזדהות מספק שירות, אולם קרתה שגיאה בזמן עיבוד הבקשה." +msgid "JPEG Photo" +msgstr "תמונה" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "ספק הזיהות החזיר שגיאה. (קוד המצב בתגובת ה SAML שונה מהצלחה)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "שגיאת LDAP" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "ניגשת לממשק שירות ההתנתקות הכללית, אבל לא סיפקת בקשת או תגובת התנתקות של SAML." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP הוא מסד הנתונים המכיל את המשתמשים, וכאשר אתה מנסה להתחבר, צריך להתחבר אליו. שגיאה קרתה בזמן ניסיון החיבור הנוכחי." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "הושלכה חריגה ללא טיפול" +msgid "Labeled URI" +msgstr "סיווג URI" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "ההיזדהות נכשלה: התעודה שהדפדפן שלח לא ידועה" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "ההיזדהות בוטלה על ידי המשתמש" +msgid "Legal name" +msgstr "שם רשמי" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "או שלא נמצא משתמש בשם זה, או שהסיסמה לא הייתה נכונה. בדוק בבקשה את שם המשתמש ונסה שוב. " +msgid "Local identity number" +msgstr "מספר זהות מקומי" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "שלום, זהו דף המצב של SimpleSAMLphp. כאן אפשר לראות אם השיחה הופסקה, כמה זמן היא תמשיך עד להפסקתה וכל התכונות המצורפות לשיחה." +msgid "Locality" +msgstr "איזור" -msgid "Logout" -msgstr "התנתקות" +msgid "Logged out" +msgstr "התנתקות מהמערכת" -msgid "Your attributes" -msgstr "התכונות שלך" +msgid "Logging out of the following services:" +msgstr "מתנתק מהשרותים הבאים:" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "השיחה שלך ברת-תוקף לעוד %remaining% שניות מעכשיו." +msgid "Logging out..." +msgstr "מתנתק מהמערכת..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "בחר את ספק הזיהות אליו אתה רוצה להיזדהות:" +msgid "Login" +msgstr "כניסה" -msgid "Remember my choice" -msgstr "זכור את הבחירה שלי" +msgid "Login at" +msgstr "כנס ל-" -msgid "Select" -msgstr "בחר" +msgid "Logout" +msgstr "התנתקות" -msgid "Select your identity provider" -msgstr "בחר את ספק הזהות שלך" +msgid "Logout failed" +msgstr "התנתקות נכשלה" -msgid "Sending message" -msgstr "שולח הודעה" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "מידע ההתנתקות אבד" -msgid "Yes, continue" -msgstr "כן, המשך" +msgid "Mail" +msgstr "דואר" -msgid "Debug information" -msgstr "מידע דבאג" +msgid "Manager" +msgstr "מנהל" -msgid "E-mail address:" -msgstr "כתובת דואל:" +msgid "Message" +msgstr "הודעה" -msgid "Explain what you did when this error occurred..." -msgstr "הסבר מה עשית כשהתרחשה השגיאה..." +msgid "Metadata" +msgstr "מטא-מידע" -msgid "How to get help" -msgstr "איך לקבל עזרה" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "לא נמצא מטא-מידע" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "אם אתה מדווח על התקלה, אנא דווח גם את מספר המעקב המאפשר לאתר את השיחה שלך ביומנים העומדים לרשות מנהל המערכת: " +msgid "Metadata overview" +msgstr "סקירת מטא-מידע" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "לחלופין הזין את כתובת הדוא\"ל שלך, כדי שמנהל המערכת יוכל ליצור איתך קשר ולשאול שאלות נוספות על הבעייה:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "דווח טעויות" +msgid "Mobile" +msgstr "נייד" -msgid "Send error report" -msgstr "שלך דוח שגיאות" +msgid "Next" +msgstr "הבא" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "יכול להיות שמידע הדבאג למטה יעניין את מנהל המערכת / תמיכה טכנית:" +msgid "Nickname" +msgstr "כינוי" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "שגיאה זו היא ככל הנראה בשל התנהגות בלתי צפויה או שגויה של SimpleSAMLphp. צור קשר עם מנהל המערכת של שירות ההתחברות הזה, ושלח לו את השגיאה למעלה." +msgid "No" +msgstr "לא" -msgid "[Preferred choice]" -msgstr "[בחירה מעודפת]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "אין RelayState" -msgid "Person's principal name at home organization" -msgstr "השם העיקרי באירגון הבית" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "לא סופקו הודעות SAML" -msgid "Superfluous options in config file" -msgstr "אפשרויות מיותרות בקובץ ההגדרות" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "נייד" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "לא סופקה תגובת SAML" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "ספק שירות מקומי מסוג Shib 1.3" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "אין גישה" -msgid "Display name" -msgstr "הראה שם" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "אין תעודה" -msgid "SAML 2.0 SP Metadata" -msgstr "מטא-מידע של סש מסוג SAML 2.0 " +msgid "No errors found." +msgstr "לא נמצאו שגיאות." + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "לא" + +msgid "No, only %SP%" +msgstr "לא, רק %SP%" msgid "Notices" msgstr "הודעות" -msgid "Home telephone" -msgstr "טלפון בבית" +msgid "On hold" +msgstr "בהשעייה" -msgid "Service Provider" -msgstr "ספק שירות" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "אחד או יותר מן השרותים שאתה מחובר אליהם לא תומכים בהתנתקות .כדי לוודא שהתנתקת מכל השירותים ממולץ שתסגור את הדפדפן" + +msgid "Optional fields" +msgstr "שדות רשות" -msgid "Incorrect username or password." -msgstr "סיסמה או שם משתמש לא נכונים." +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "לחלופין הזין את כתובת הדוא\"ל שלך, כדי שמנהל המערכת יוכל ליצור איתך קשר ולשאול שאלות נוספות על הבעייה:" -msgid "Submit message" -msgstr "שלח הודעה" +msgid "Options missing from config file" +msgstr "אפשרויות חסרות מקובץ ההגדרות" -msgid "Locality" -msgstr "איזור" +msgid "Organization" +msgstr "אירגון" -msgid "The following required fields was not found" -msgstr "השדות הדרושים הבאים לא נמצאו" +msgid "Organization name" +msgstr "שם אירגון" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "הורד את תעודות X509 כקבצי PEM-מקודד." +msgid "Organization's legal name" +msgstr "השם הרשמי של האירגון" + +msgid "Organizational homepage" +msgstr "דף-בית של האירגון" msgid "Organizational number" msgstr "מספר אירגוני" -msgid "Post office box" -msgstr "תא דואר" +msgid "Organizational unit" +msgstr "יחידה בארגון" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "שירות ביקש שתזדהה. אנא הכנס את שם המשתמש והסיסמה שלך בטופס מתחת." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "דף לא נמצא" -msgid "Error" -msgstr "שגיאה" +msgid "Parse" +msgstr "נתח" -msgid "Next" -msgstr "הבא" +msgid "Password" +msgstr "סיסמה" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "שם מזהה (DN) של היחידה באירגון הבית" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "סיסמה לא מוגדרת" -msgid "Converted metadata" -msgstr "מטא-מידע מומר" +msgid "Persistent pseudonymous ID" +msgstr "מזהה משתמש גלובלי" -msgid "Mail" -msgstr "דואר" +msgid "Person's principal name at home organization" +msgstr "השם העיקרי באירגון הבית" -msgid "No, cancel" -msgstr "לא" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "בחר את ספק הזיהות אליו אתה רוצה להיזדהות:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "בחרת את %HOMEORG% כאירגון הבית שלך. אם המידע מוטעה אתה יכול לבחור אירגון אחר." +msgid "Post office box" +msgstr "תא דואר" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "שם מזהה (DN) של היחידה העיקרית באירגון הבית" +msgid "Postal address" +msgstr "כתובת דואר" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "כדי להסתכל על הפרטים של ישות SAML, לחץ על כותרת ישות הSAML " +msgid "Postal code" +msgstr "מיקוד" -msgid "Enter your username and password" -msgstr "הכנס שם משתמש וסיסמה" +msgid "Preferred language" +msgstr "שפה מועדפת" -msgid "Login at" -msgstr "כנס ל-" +msgid "Primary affiliation" +msgstr "השתייכות עיקרית" -msgid "No" -msgstr "לא" +msgid "Private information elements" +msgstr "רכיבי המידע האישי" -msgid "Home postal address" -msgstr "כתובת דואר בבית" +msgid "Remember" +msgstr "זכור" -msgid "WS-Fed SP Demo Example" -msgstr "הדגמת דוגמה לס\"ש מסוג WS-Fed" +msgid "Remember my choice" +msgstr "זכור את הבחירה שלי" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "ספק זהות מרוחק מסוג SAML 2.0" +msgid "Report errors" +msgstr "דווח טעויות" -msgid "Do you want to logout from all the services above?" -msgstr "האם אתה רוצה להתנתק מכל השרותים המוזכרים למעלה?" +msgid "Required fields" +msgstr "שדות נדרשים" -msgid "Given name" -msgstr "שם פרטי" +msgid "Return to service" +msgstr "חזרה לשרות" -msgid "Identity assurance profile" -msgstr "פרופיל הבטחת זהות" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "ספק זהות מקומי מסוג SAML 2.0" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "ספק זהות מרוחק מסוג SAML 2.0" msgid "SAML 2.0 SP Demo Example" msgstr "הדגמת דוגמה לס\"ש מסוג SAML 2.0" -msgid "Organization name" -msgstr "שם אירגון" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "אתה עומד לשלוח הודעה. לחץ על כפתור השליחה כדי להמשיך." +msgid "SAML 2.0 SP Metadata" +msgstr "מטא-מידע של סש מסוג SAML 2.0 " -msgid "Home organization domain name" -msgstr "שם המתחם של אירגון הבית" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "ספק שירות מקומי מסוג SAML 2.0" -msgid "Go back to the file list" -msgstr "חזור אל רשימת הקבצים" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "נשלח דוח שגיאה" +msgid "Select" +msgstr "בחר" -msgid "Common name" -msgstr "שם רווח " +msgid "Select configuration file to check:" +msgstr "בחר קובץ הגדרות לבדיקה:" -msgid "Logout failed" -msgstr "התנתקות נכשלה" +msgid "Select your identity provider" +msgstr "בחר את ספק הזהות שלך" -msgid "Identity number assigned by public authorities" -msgstr "מספר מזהה שניתן על ידי הרשויות הציבוריות" +msgid "Send e-mail to help desk" +msgstr "שלח דואל לתיכה הטכנית" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "ספק זהות מרוחק מסוג איחוד-WS" +msgid "Send error report" +msgstr "שלך דוח שגיאות" -msgid "Some error occurred" -msgstr "התרחשה שגיאה" +msgid "Sending message" +msgstr "שולח הודעה" -msgid "Organization" -msgstr "אירגון" +msgid "Service Provider" +msgstr "ספק שירות" -msgid "Choose home organization" -msgstr "החלף אירגון בית" +msgid "Session size: %SIZE%" +msgstr "גודל שיחה: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "מזהה משתמש גלובלי" +msgid "Shib 1.3 IdP Metadata" +msgstr "מטא-מידע של סז מסוג Shib 1.3" -msgid "No errors found." -msgstr "לא נמצאו שגיאות." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "ספק זהות מקומי מסוג Shib 1.3" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "ספק שירות מקומי מסוג SAML 2.0" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "ספק זהות מרוחק מסוג Shib 1.3" -msgid "Required fields" -msgstr "שדות נדרשים" +msgid "Shib 1.3 SP Metadata" +msgstr "מטא-מידע של סש מסוג Shib 1.3" -msgid "Domain component (DC)" -msgstr "מרכיב מתחם (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "ספק שירות מקומי מסוג Shib 1.3" msgid "Shib 1.3 Service Provider (Remote)" msgstr "ספק שירות מרוחק מסוג Shib 1.3" -msgid "Password" -msgstr "סיסמה" - -msgid "Nickname" -msgstr "כינוי" - -msgid "The error report has been sent to the administrators." -msgstr "דוח השגיאה נשלח למנהל המערכת." - -msgid "Date of birth" -msgstr "תאריך לידה" - -msgid "Private information elements" -msgstr "רכיבי המידע האישי" - -msgid "You are also logged in on these services:" -msgstr "אתה מחובר גם לשרותים הבאים:" +msgid "Shibboleth demo" +msgstr "הדגמה ל- Shibboleth" msgid "SimpleSAMLphp Diagnostics" msgstr "איבחון SimpleSAMLphp" -msgid "No, only %SP%" -msgstr "לא, רק %SP%" - -msgid "Username" -msgstr "שם משתמש" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "נראה ש SimpleSAMLphp לא מוגדר נכון" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "חזור לדף ההתקנה של SimpleSAMLphp" +msgid "SimpleSAMLphp error" +msgstr "שגיאה ב SimpleSAMLphp" -msgid "You have successfully logged out from all services listed above." -msgstr "התנתקת בהצלחה מכל השרותים הכתובים למעלה" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "%SP%-נותקת בהצלחה מ" +msgid "Some error occurred" +msgstr "התרחשה שגיאה" -msgid "Affiliation" -msgstr "השתייכות" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "אבד מידע המצב" -msgid "You have been logged out." -msgstr "התנתקת מן המערכת" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "אבד מידע המצב, ואי אפשר להתחל מחדש את הבקשה" -msgid "Return to service" -msgstr "חזרה לשרות" +msgid "Street" +msgstr "רחוב" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "ספק שירות מקומי מסוג איחוד-WS" +msgid "Submit message" +msgstr "שלח הודעה" -msgid "Preferred language" -msgstr "שפה מועדפת" +msgid "Superfluous options in config file" +msgstr "אפשרויות מיותרות בקובץ ההגדרות" msgid "Surname" msgstr "שם משפחה" -msgid "The following fields was not recognized" -msgstr "השדות הבאים לא זוהו" - -msgid "User ID" -msgstr "מזהה משתמש" +msgid "Telephone number" +msgstr "מספר טלפון" -msgid "JPEG Photo" -msgstr "תמונה" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "ספק הזיהות החזיר שגיאה. (קוד המצב בתגובת ה SAML שונה מהצלחה)" -msgid "Postal address" -msgstr "כתובת דואר" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "ההיזדהות בוטלה על ידי המשתמש" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "מטא-מידע עבור SAML 2.0 בתבנית XML:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "יכול להיות שמידע הדבאג למטה יעניין את מנהל המערכת / תמיכה טכנית:" -msgid "Logging out of the following services:" -msgstr "מתנתק מהשרותים הבאים:" +msgid "The error report has been sent to the administrators." +msgstr "דוח השגיאה נשלח למנהל המערכת." -msgid "Labeled URI" -msgstr "סיווג URI" +msgid "The following fields was not recognized" +msgstr "השדות הבאים לא זוהו" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "ספק זהות מקומי מסוג Shib 1.3" +msgid "The following optional fields was not found" +msgstr "שדות הרשות הבאים לא נמצאו" -msgid "Metadata" -msgstr "מטא-מידע" +msgid "The following required fields was not found" +msgstr "השדות הדרושים הבאים לא נמצאו" -msgid "Login" -msgstr "כניסה" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "הדף ההמבוקש לא נמצא. הכתובת היית: %URL%" -msgid "Yes, all services" -msgstr "כן, כל השרותים" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "הדף הניתן לא נמצא. הסיבה הייתה %REASON% והכתובת הייתה %URL%" -msgid "Logged out" -msgstr "התנתקות מהמערכת" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "המידע על פעולת ההתנתקות הנוכחית אבד. אתה צריך לחזור לשירות ממנו ניסית להתנתק ולנסות שוב. שגיאה זו יכולה להיגרם על ידי מידע התנתקות שפג תוקפו. מידע ההתנתקות מאוכסן לזמן מוגבל - בדרך כלל כמה שעות. פרק זמן ארוך בהרבה מכל בקשת התנתקות נורמלית, לכן שגיאה זו יכולה להגרם מהגדרות לא נכונות. אם הבעייה ממשיכה, צור קשר עם ספק השרות." -msgid "Postal code" -msgstr "מיקוד" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "יוזם הבקשה לא סיפק פרמטר RelayState המציין לאן ללכת ." -msgid "Logging out..." -msgstr "מתנתק מהמערכת..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "הפרמטרים שנשלחו לשירות גילוי לא היו על פי מפרט." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "ספק זהות מקומי מסוג SAML 2.0" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "השתייכות עיקרית" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "הסיסמה בהגדרות (auth.adminpassword) לא שונתה מהערך ההתחלתי. אנא ערוך את קובץ ההגדרות." -msgid "XML metadata" -msgstr "מטא-מידע בתבנית XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "ישנה שגיאה בבקשה לדף זה. הסיבה הייתה: %REASON%" -msgid "Telephone number" -msgstr "מספר טלפון" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "ישנה בעייה בהגדרות של התקנת ה SimpleSAMLphp שלך. אם אתה מנהל המערכת של שירות זה, כדי שתוודא שהגדרות מהמטא-מידע שלך נכונות." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "אי אפשר להתנתק מאחד או יותר מהשרותים. כדי לוודא שהתנתקת מומלץ לסגור את .הדפדפן שלך" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "ספק זהות זה קיבל בקשת הזדהות מספק שירות, אולם קרתה שגיאה בזמן עיבוד הבקשה." -msgid "Entitlement regarding the service" -msgstr "אישור הקשור לשירות" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "קצה זה אינו מופעל. בדוק את אפשריות ההפעלה בהגדרות SimpleSAMLphp שלך." -msgid "Shib 1.3 SP Metadata" -msgstr "מטא-מידע של סש מסוג Shib 1.3" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "שגיאה זו היא ככל הנראה בשל התנהגות בלתי צפויה או שגויה של SimpleSAMLphp. צור קשר עם מנהל המערכת של שירות ההתחברות הזה, ושלח לו את השגיאה למעלה." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "כיוון שאתה במצב מבדיקת באגים, אתה רואה את תוכן ההודעה שאתה שולח:" +msgid "Title" +msgstr "תואר" -msgid "Certificates" -msgstr "תעודות" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "כדי להסתכל על הפרטים של ישות SAML, לחץ על כותרת ישות הSAML " -msgid "Remember" -msgstr "זכור" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "שם מזהה (DN) של אירגון הבית" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "לא ניתן לאתר מטא-מידע עבור %ENTITYID%" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "אתה עומד לשלוח הודעה. לחץ על כפתור השליחה כדי להמשיך." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "אי אפשר להתנתק מאחד או יותר מהשרותים. כדי לוודא שהתנתקת מומלץ לסגור את .הדפדפן שלך" -msgid "Organizational unit" -msgstr "יחידה בארגון" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "מספר זהות מקומי" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "חריגה לא מטופלת " -msgid "Shib 1.3 IdP Metadata" -msgstr "מטא-מידע של סז מסוג Shib 1.3" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "תעודה לא ידועה" -msgid "Change your home organization" -msgstr "החלף את אירגון הבית שלך" +msgid "User ID" +msgstr "מזהה משתמש" msgid "User's password hash" msgstr "הגיבוב של סיסמת המשתמש" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "בתבנית קובץ SimpleSAMLphp שטוח - למקרים בהם אתה משתמש בישות SimpleSAMLphp בצד השני: " - -msgid "Completed" -msgstr "הסתיים" - -msgid "Select configuration file to check:" -msgstr "בחר קובץ הגדרות לבדיקה:" - -msgid "On hold" -msgstr "בהשעייה" +msgid "Username" +msgstr "שם משתמש" -msgid "Help! I don't remember my password." -msgstr "הצילו! שכחתי את הסיסמה." +msgid "WS-Fed SP Demo Example" +msgstr "הדגמת דוגמה לס\"ש מסוג WS-Fed" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "אתה יכול לכבות את מצב בדיקת הבאגים בקובץ בההגדרות הגלובלי של SimpleSAMLphp config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "ספק זהות מרוחק מסוג איחוד-WS" -msgid "SimpleSAMLphp error" -msgstr "שגיאה ב SimpleSAMLphp" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "ספק שירות מקומי מסוג איחוד-WS" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "אחד או יותר מן השרותים שאתה מחובר אליהם לא תומכים בהתנתקות .כדי לוודא שהתנתקת מכל השירותים ממולץ שתסגור את הדפדפן" +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "השם הרשמי של האירגון" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "לא קיבלנו את התגובה שנשלחה מספק הזהות." -msgid "Options missing from config file" -msgstr "אפשרויות חסרות מקובץ ההגדרות" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "כאשר ספק הזהות ניסה ליצור תגובת הזדהות, אירעה שגיאה." -msgid "The following optional fields was not found" -msgstr "שדות הרשות הבאים לא נמצאו" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "חבל! - בלי שם המשתמש והסיסמה שלך אתה לא יכול להזדהות בכדי לגשת לשירות. יכול להיות שיש מישהו שיכול לעזור לך. פנה לתמיכה הטכנית באוניברסיטה שלך!" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "אתה יכול לקבל את המטא מידע בכתובת נפרדת:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "רחוב" +msgid "XML metadata" +msgstr "מטא-מידע בתבנית XML" -msgid "Message" -msgstr "הודעה" +msgid "Yes, all services" +msgstr "כן, כל השרותים" -msgid "Contact information:" -msgstr "צור קשר" +msgid "Yes, continue" +msgstr "כן, המשך" -msgid "Legal name" -msgstr "שם רשמי" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "שדות רשות" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "ניגשת לממשק הכרזת שירות ללקוח, אבל לא סיפקת תגובת הזדהות SAML. " -msgid "You have previously chosen to authenticate at" -msgstr "בעבר בחרת להזדהות ב-" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "שלחת משהו לדף הכניסה למערכת, אבל בגלל סיבה כל שהיא הסיסמה לא נשלחה. בבקשה נסה שוב." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "ניגשת לממשק שירות ההתנתקות הכללית, אבל לא סיפקת בקשת או תגובת התנתקות של SAML." -msgid "Fax number" -msgstr "מס' פקס" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "אתה עומד לשלוח הודעה. לחץ על כפתור השליחה כדי להמשיך." -msgid "Shibboleth demo" -msgstr "הדגמה ל- Shibboleth" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "אתה עומד לשלוח הודעה. לחץ על כפתור השליחה כדי להמשיך." -msgid "Error in this metadata entry" -msgstr "שגיאה ברשומת מטא-מידע זו" +msgid "You are also logged in on these services:" +msgstr "אתה מחובר גם לשרותים הבאים:" -msgid "Session size: %SIZE%" -msgstr "גודל שיחה: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "אתה נגש למערכת קדם-ייצור. תצורת ההיזדהות הזו היא לבדיקה ולאימות מערכת הקדם-ייצור בלבד. אם מישהו שלח לך קישור שהצביע לכאן, ואתה לא בודק כנראה קיבלת קידור לא נכון, ואתה לא אמור להיות כאן " -msgid "Parse" -msgstr "נתח" +msgid "You are now successfully logged out from %SP%." +msgstr "%SP%-נותקת בהצלחה מ" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "חבל! - בלי שם המשתמש והסיסמה שלך אתה לא יכול להזדהות בכדי לגשת לשירות. יכול להיות שיש מישהו שיכול לעזור לך. פנה לתמיכה הטכנית באוניברסיטה שלך!" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "אתה יכול לקבל את המטא מידע בכתובת נפרדת:" -msgid "Choose your home organization" -msgstr "בחר את אירגון הבית שלך" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "אתה יכול לכבות את מצב בדיקת הבאגים בקובץ בההגדרות הגלובלי של SimpleSAMLphp config/config.php." -msgid "Send e-mail to help desk" -msgstr "שלח דואל לתיכה הטכנית" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "לא הצגת תעודה חוקית " -msgid "Metadata overview" -msgstr "סקירת מטא-מידע" +msgid "You have been logged out." +msgstr "התנתקת מן המערכת" -msgid "Title" -msgstr "תואר" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "בחרת את %HOMEORG% כאירגון הבית שלך. אם המידע מוטעה אתה יכול לבחור אירגון אחר." -msgid "Manager" -msgstr "מנהל" +msgid "You have previously chosen to authenticate at" +msgstr "בעבר בחרת להזדהות ב-" -msgid "Affiliation at home organization" -msgstr "שייכות באירגון הבית" +msgid "You have successfully logged out from all services listed above." +msgstr "התנתקת בהצלחה מכל השרותים הכתובים למעלה" -msgid "Help desk homepage" -msgstr "תמיכה טכנית" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "שלחת משהו לדף הכניסה למערכת, אבל בגלל סיבה כל שהיא הסיסמה לא נשלחה. בבקשה נסה שוב." -msgid "Configuration check" -msgstr "בדיקת הגדרות" +msgid "Your attributes" +msgstr "התכונות שלך" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "ספק זהות מרוחק מסוג Shib 1.3" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "הנה המטא-מידע ש SimpleSAMLphp ייצר עבורך. אתה יכול לשלוח את מסמך המטא-מידע לשותפים מהימנים כדי ליצור איחוד מאובטח. " +msgid "Your session is valid for %remaining% seconds from now." +msgstr "השיחה שלך ברת-תוקף לעוד %remaining% שניות מעכשיו." -msgid "Organizational homepage" -msgstr "דף-בית של האירגון" +msgid "[Preferred choice]" +msgstr "[בחירה מעודפת]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "אתה נגש למערכת קדם-ייצור. תצורת ההיזדהות הזו היא לבדיקה ולאימות מערכת הקדם-ייצור בלבד. אם מישהו שלח לך קישור שהצביע לכאן, ואתה לא בודק כנראה קיבלת קידור לא נכון, ואתה לא אמור להיות כאן " +msgid "not set" +msgstr "" diff --git a/locales/hr/LC_MESSAGES/messages.po b/locales/hr/LC_MESSAGES/messages.po index 6748b4c83d..af9e3428ba 100644 --- a/locales/hr/LC_MESSAGES/messages.po +++ b/locales/hr/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Nije dostavljen nikakav SAML odgovor" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Nije dostavljena nikakva SAML poruka" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Aplikacija zahtjeva od vas da se autentificirate. Unesite vašu korisničku oznaku i zaporku u dolje navedena polja." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Povezanost s ustanovom" + +msgid "Affiliation at home organization" +msgstr "Povezanost s matičnom ustanovom" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Pojavila se greška prilikom kreiranja SAML zahtjeva." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Došlo je do greške prilikom obrade zahtjeva za odjavljivanjem." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Pojavila se iznimka koja ne može do kraja biti obrađena." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Obzirom da ste u modu za otkrivanje grešaka, imate mogućnost vidjeti sadržaj poruke koju šaljete:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Proces autentifikacije je prekinut" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Došlo je do greške u autentifikacijskom modulu %AUTHSOURCE%. Razlog: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Neuspješna autentifikacija: digitalni certifikat koji je poslao vaš web preglednik nije ispravan ili se ne može pročitati" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Neuspješna autentifikacija: digitalni certifikat kojeg je poslao vaš web preglednik je nepoznat" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Neuspješna autentifikacija: vaš web preglednik nije poslao digitalni certifikat" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Greška u autentifikacijskom modulu" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Dobiveni zahtjev nije ispravan" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Lokacijskom servisu poslan je neispravan upit" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS greška" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Certifikati" + +msgid "Change your home organization" +msgstr "Promjenite odabir vaše matične ustanove" + +msgid "Choose home organization" +msgstr "Odaberite matičnu ustanovu" + +msgid "Choose your home organization" +msgstr "Odaberite vašu matičnu ustanovu" + +msgid "Common name" +msgstr "Ime i prezime" + +msgid "Completed" +msgstr "Završeno" + +msgid "Configuration check" +msgstr "Provjera konfiguracije" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Greška u konfiguraciji" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Greška prilikom kreiranja zahtjeva" +msgid "Contact information:" +msgstr "Kontakt podaci:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Lokacijskom servisu poslan je neispravan upit" +msgid "Converted metadata" +msgstr "Pretvoreni metapodaci" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Ne mogu kreirati autentifikacijski odgovor" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Certifikat nije valjan" +msgid "Date of birth" +msgstr "Datum rođenja" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP greška" +msgid "Debug information" +msgstr "Informacije o greški" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Informacija o odjavljivanju je izgubljena" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Greška prilikom odjavljivanja" +msgid "Display name" +msgstr "Mrežno ime" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Greška prilikom učitavanja metapodataka" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Jedinstveni naziv (DN) korisnikove matične ustanove" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metapodaci nisu pronađeni" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Jedinstveni naziv (DN) korisnikove primarne organizacijske jedinice" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Pristup nije dozvoljen" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Jedinstveni naziv (DN) korisnikove organizacijske jedinice" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Nema digitalnog certifikata" +msgid "Do you want to logout from all the services above?" +msgstr "Želite li se odjaviti iz svih gore navedenih servisa?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Parametar RelayState nije zadan" +msgid "Domain component (DC)" +msgstr "Domenska komponenta (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Podaci o stanju su izgubljeni" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Preuzmite X509 certifikate u PEM formatu." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Stranica nije pronađena" +msgid "E-mail address:" +msgstr "E-mail adresa:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Zaporka nije postavljena" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Korisnik s navedenom korisničkom oznakom ne može biti pronađen ili je zaporka koju ste unijeli neispravna. Molimo provjerite korisničku oznaku i pokušajte ponovo." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Greška prilikom obrade odgovora pristiglog od autentifikacijskog servisa" +msgid "Enter your username and password" +msgstr "Unesite korisničku oznaku i zaporku" + +msgid "Entitlement regarding the service" +msgstr "Pripadnost grupi" + +msgid "Error" +msgstr "Greška" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Greška prilikom kreiranja zahtjeva" + +msgid "Error in this metadata entry" +msgstr "Ovaj zapis metapodataka sadrži grešku" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Greška prilikom učitavanja metapodataka" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Greška prilikom obrade autentifikacijskog zahtjeva" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Greška prilikom obrade odgovora pristiglog od autentifikacijskog servisa" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Greška prilikom odjavljivanja" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Autentifikacijski servis je prijavio grešku" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Neobrađena iznimka" +msgid "Error report sent" +msgstr "Prijava greške poslana" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Nepoznat digitalni certifikat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Greška u komunikaciji sa CAS poslužiteljem." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Proces autentifikacije je prekinut" +msgid "Explain what you did when this error occurred..." +msgstr "Opišite što ste radili kad se pojavila greška..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Neispravna korisnička oznaka ili zaporka" +msgid "Fax number" +msgstr "Broj telefaksa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Pristupili ste sučelju za obradu SAML potvrda, ali niste dostavili SAML autentifikacijski odgovor." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Došlo je do greške u autentifikacijskom modulu %AUTHSOURCE%. Razlog: %REASON%" +msgid "Given name" +msgstr "Ime" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Dogodila se greška prilikom dohvaćanja ove stranice. Razlog: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Natrag na početnu stranicu SimpleSAMLphp instalacije" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Greška u komunikaciji sa CAS poslužiteljem." +msgid "Go back to the file list" +msgstr "Vrati se natrag na popis datoteka" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Čini se da je SimpleSAMLphp pogrešno iskonfiguriran." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Pojavila se greška prilikom kreiranja SAML zahtjeva." +msgid "Help desk homepage" +msgstr "Stranice službe za podršku korisnicima" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Parametri poslani lokacijskom servisu nisu u ispravnom formatu." +msgid "Help! I don't remember my password." +msgstr "Upomoć! Zaboravio/la sam svoju zaporku." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Došlo je do greške prilikom kreiranja odgovora na autentifikacijski zahtjev." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Ovo su metapodaci koje je SimpleSAMLphp izgenerirao za vas. Te metapodatke možete poslati davateljima usluga ili elektroničkih identiteta u koje imate povjerenja i s kojima želite uspostaviti federaciju." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Neuspješna autentifikacija: digitalni certifikat koji je poslao vaš web preglednik nije ispravan ili se ne može pročitati" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Ovo je stranica s prikazom aktualnog stanja Single Sign-On sjednice. Na ovoj stranici možete vidjeti je li vam istekla sjednica, koliko će još dugo vaša sjednica trajati te sve atribute koji su vezani uz vašu sjednicu." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "Došlo je do greške prilikom spajanja na LDAP poslužitelj. Vaši podaci pohranjeni su u LDAP imeniku i autentifikacijski servis se mora moći spojiti na LDAP poslužitelj da bi provjerio ispravnost unesene korisničke oznake i zaporke." +msgid "Home organization domain name" +msgstr "Oznaka matične ustanove" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Informacija o aktualnom zahtjevu za odjavljivanjem se izgubila. Preporučamo da se vratite u aplikaciju iz koje ste se htjeli odjaviti i pokušate se odjaviti ponovo. Ova greška može biti uzrokovana istekom valjanosti zahtjeva za odjavom. Zahtjev se pohranjuje određeno vrijeme - u pravilu nekoliko sati. Obzirom da je to dulje nego što bi bilo koja operacija odjavljivanja trebala trajati, greška koja se pojavila može upućivati na grešku u konfiguraciji. Ako se problem nastavi, kontaktirajte administratora aplikacije. " +msgid "Home postal address" +msgstr "Kućna poštanska adresa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Došlo je do greške prilikom obrade zahtjeva za odjavljivanjem." +msgid "Home telephone" +msgstr "Kućni telefonski broj" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Programski alat SimpleSAMLphp je pogrešno iskonfiguriran. Ako ste administrator ovog servisa, provjerite jesu li svi metapodaci u konfiguraciji ispravni." +msgid "How to get help" +msgstr "Kome se obratiti za pomoć" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Metapodaci za %ENTITYID% nisu pronađeni" +msgid "Identity assurance profile" +msgstr "Usklađenost sa standardima zaštite korisničkih podataka" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Ova odredišna adresa nije omogućena. Provjerite dozvole u konfiguraciji vaše instalacije programskog alata SimpleSAMLphp." +msgid "Identity number assigned by public authorities" +msgstr "Brojčani identifikator osobe" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Neuspješna autentifikacija: vaš web preglednik nije poslao digitalni certifikat" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Molimo da prilikom prijavljivanja greške pošaljete i ovaj identifikator koji će administratorima omogućiti pronalaženje dodatnih informacija u dnevničkim zapisima:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Aplikacija koja je inicirala ovaj zahtjev nije poslala RelayState parametar koji sadrži adresu na koju treba preusmjeriti korisnikov web preglednik nakon uspješne autentifikacije." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Metapodaci u SAML 2.0 XML formatu:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Podaci o stanju su izgubljeni i zahtjev se ne može reproducirati" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "U SimpleSAMLphp formatu - koristite ovu opciju ako se na drugoj strani također nalazi SimpleSAMLphp entitet:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Tražena stranica nije pronađena. Adresa stranice je: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Neispravna korisnička oznaka ili zaporka" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Tražena stranica nije pronađena. Razlog: %REASON% Adresa stranice je: %URL%" +msgid "Incorrect username or password." +msgstr "Neispravna korisnička oznaka ili zaporka." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Izvorna vrijednost administratorske zaporke (parametar auth.adminpassword) u konfiguraciji nije promjenjena. Molimo promjenite administratorsku zaporku u konfiguracijskoj datoteci." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Niste predočili valjani certifikat." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Certifikat nije valjan" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Nije prihvaćen odgovor koji je poslao autentifikacijski servis." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Autentifikacijski servis je dobio zahtjev od davatelja usluge, ali se pojavila greška prilikom obrade zahtjeva." +msgid "JPEG Photo" +msgstr "Slika u JPEG formatu" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Autentifikacijski servis je poslao odgovor koji sadrži informaciju o pojavi greške. (Šifra statusa dostavljena u SAML odgovoru ne odgovara šifri uspješno obrađenog zahtjeva)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP greška" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Pristupili ste sučelju za odjavljivanje iz sustava jedinstvene autentifikacije, ali niste dostavili SAML LogoutRequest ili LogoutResponse poruku." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "Došlo je do greške prilikom spajanja na LDAP poslužitelj. Vaši podaci pohranjeni su u LDAP imeniku i autentifikacijski servis se mora moći spojiti na LDAP poslužitelj da bi provjerio ispravnost unesene korisničke oznake i zaporke." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Pojavila se iznimka koja ne može do kraja biti obrađena." +msgid "Labeled URI" +msgstr "URI adresa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Neuspješna autentifikacija: digitalni certifikat kojeg je poslao vaš web preglednik je nepoznat" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Korisnik je prekinuo proces autentifikacie" +msgid "Legal name" +msgstr "Službeni naziv" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Korisnik s navedenom korisničkom oznakom ne može biti pronađen ili je zaporka koju ste unijeli neispravna. Molimo provjerite korisničku oznaku i pokušajte ponovo." +msgid "Local identity number" +msgstr "Lokalni brojčani identifikator osobe u ustanovi (LOCAL_NO)" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Ovo je stranica s prikazom aktualnog stanja Single Sign-On sjednice. Na ovoj stranici možete vidjeti je li vam istekla sjednica, koliko će još dugo vaša sjednica trajati te sve atribute koji su vezani uz vašu sjednicu." +msgid "Locality" +msgstr "Mjesto (lokalitet)" -msgid "Logout" -msgstr "Odjava" +msgid "Logged out" +msgstr "Odjavljeni ste" -msgid "Your attributes" -msgstr "Vaši atributi" +msgid "Logging out of the following services:" +msgstr "Odjavljujete se iz sljedećih servisa:" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Vaša sjednica bit će valjana još %remaining% sekundi." +msgid "Logging out..." +msgstr "Odjava u tijeku..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Molimo odaberite servis preko kojeg se želite autentificirati:" +msgid "Login" +msgstr "Prijavi se" -msgid "Remember my choice" -msgstr "Zapamti moj odabir" +msgid "Login at" +msgstr "Prijavi se kroz" -msgid "Select" -msgstr "Odaberi" +msgid "Logout" +msgstr "Odjava" -msgid "Select your identity provider" -msgstr "Odaberite autentifikacijski servis" +msgid "Logout failed" +msgstr "Odjava nije uspjela" -msgid "Sending message" -msgstr "Šaljem poruku" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Informacija o odjavljivanju je izgubljena" -msgid "Yes, continue" -msgstr "Da, nastavi" +msgid "Mail" +msgstr "Elektronička adresa" -msgid "Debug information" -msgstr "Informacije o greški" +msgid "Manager" +msgstr "Voditelj" -msgid "E-mail address:" -msgstr "E-mail adresa:" +msgid "Message" +msgstr "Poruka" -msgid "Explain what you did when this error occurred..." -msgstr "Opišite što ste radili kad se pojavila greška..." +msgid "Metadata" +msgstr "Metapodaci" -msgid "How to get help" -msgstr "Kome se obratiti za pomoć" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metapodaci nisu pronađeni" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Molimo da prilikom prijavljivanja greške pošaljete i ovaj identifikator koji će administratorima omogućiti pronalaženje dodatnih informacija u dnevničkim zapisima:" +msgid "Metadata overview" +msgstr "Pregled metapodataka" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Ako želite, unesite svoju elektroničku adresu kako bi vas administratori mogli kontaktirati u slučaju da su im potrebne dodatne informacije:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "Prijavi grešku" +msgid "Mobile" +msgstr "Broj mobilnog telefona" -msgid "Send error report" -msgstr "Pošalji prijavu greške" +msgid "Next" +msgstr "Dalje" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Sljedeće informacije mogu biti zanimljive administratorima ili službi za podršku korisnicima:" +msgid "Nickname" +msgstr "Nadimak" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Ova greška se vjerojatno javila zbog neočekivanog ponašanja ili neispravne konfiguracije programskog alata SimpleSAMLphp. Kontaktirajte administratore ovog servisa i pošaljite im gore navedenu poruku o greški." +msgid "No" +msgstr "Ne" -msgid "[Preferred choice]" -msgstr "[Primarni odabir]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Parametar RelayState nije zadan" -msgid "Person's principal name at home organization" -msgstr "Korisnička oznaka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Nije dostavljena nikakva SAML poruka" -msgid "Superfluous options in config file" -msgstr "Suvišni parametri u konfiguracijskoj datoteci" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "Broj mobilnog telefona" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Nije dostavljen nikakav SAML odgovor" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 davatelj usluge (lokalni)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Pristup nije dozvoljen" -msgid "Display name" -msgstr "Mrežno ime" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Nema digitalnog certifikata" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 metapodaci o davatelju usluge" +msgid "No errors found." +msgstr "Nije pronađena niti jedna greška." + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Ne" + +msgid "No, only %SP%" +msgstr "Ne, samo iz %SP%" msgid "Notices" msgstr "Napomene" -msgid "Home telephone" -msgstr "Kućni telefonski broj" +msgid "On hold" +msgstr "Na čekanju" -msgid "Service Provider" -msgstr "Davatelj usluge" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Jedan ili više servisa na koje ste prijavljeni ne podržava odjavljivanje. Da biste bili sigurni da su sve vaše sjednice završene, preporučamo da zatvorite web preglednik." + +msgid "Optional fields" +msgstr "Opcionalna polja" -msgid "Incorrect username or password." -msgstr "Neispravna korisnička oznaka ili zaporka." +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Ako želite, unesite svoju elektroničku adresu kako bi vas administratori mogli kontaktirati u slučaju da su im potrebne dodatne informacije:" -msgid "Submit message" -msgstr "Pošalji poruku" +msgid "Options missing from config file" +msgstr "Parametri koji nedostaju u konfiguracijskoj datoteci" -msgid "Locality" -msgstr "Mjesto (lokalitet)" +msgid "Organization" +msgstr "Ustanova" -msgid "The following required fields was not found" -msgstr "Nisu pronađena sljedeća obavezna polja" +msgid "Organization name" +msgstr "Naziv matične ustanove" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Preuzmite X509 certifikate u PEM formatu." +msgid "Organization's legal name" +msgstr "Službeni naziv ustanove" + +msgid "Organizational homepage" +msgstr "Web stranice ustanove" msgid "Organizational number" msgstr "Brojčani identifikator ustanove" -msgid "Post office box" -msgstr "Broj poštanskog pretinca" +msgid "Organizational unit" +msgstr "Organizacijska jedinica" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Aplikacija zahtjeva od vas da se autentificirate. Unesite vašu korisničku oznaku i zaporku u dolje navedena polja." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Stranica nije pronađena" -msgid "Error" -msgstr "Greška" +msgid "Parse" +msgstr "Analiziraj" -msgid "Next" -msgstr "Dalje" +msgid "Password" +msgstr "Zaporka" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Jedinstveni naziv (DN) korisnikove organizacijske jedinice" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Zaporka nije postavljena" -msgid "Converted metadata" -msgstr "Pretvoreni metapodaci" +msgid "Persistent pseudonymous ID" +msgstr "Trajni anonimni identifikator" -msgid "Mail" -msgstr "Elektronička adresa" +msgid "Person's principal name at home organization" +msgstr "Korisnička oznaka" -msgid "No, cancel" -msgstr "Ne" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Molimo odaberite servis preko kojeg se želite autentificirati:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Odabrali ste %HOMEORG% kao vašu matičnu ustanovu. Ako to nije točno možete odabrati drugu ustanovu." +msgid "Post office box" +msgstr "Broj poštanskog pretinca" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Jedinstveni naziv (DN) korisnikove primarne organizacijske jedinice" +msgid "Postal address" +msgstr "Poštanska adresa" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Da biste vidjeli detalje o SAML entitetu, kliknite na njegovo zaglavlje." +msgid "Postal code" +msgstr "Broj pošte" -msgid "Enter your username and password" -msgstr "Unesite korisničku oznaku i zaporku" +msgid "Preferred language" +msgstr "Primarni jezik" -msgid "Login at" -msgstr "Prijavi se kroz" +msgid "Primary affiliation" +msgstr "Temeljna povezanost s ustanovom" -msgid "No" -msgstr "Ne" +msgid "Private information elements" +msgstr "Postavke privatnosti" -msgid "Home postal address" -msgstr "Kućna poštanska adresa" +msgid "Remember" +msgstr "Zapamti moj odabir" -msgid "WS-Fed SP Demo Example" -msgstr "Primjer WS-Fed davatelja usluge" +msgid "Remember my choice" +msgstr "Zapamti moj odabir" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 autentifikacijski servis (udaljeni)" +msgid "Report errors" +msgstr "Prijavi grešku" -msgid "Do you want to logout from all the services above?" -msgstr "Želite li se odjaviti iz svih gore navedenih servisa?" +msgid "Required fields" +msgstr "Obavezna polja" -msgid "Given name" -msgstr "Ime" +msgid "Return to service" +msgstr "Povratak u aplikaciju" -msgid "Identity assurance profile" -msgstr "Usklađenost sa standardima zaštite korisničkih podataka" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 autentifikacijski servis (lokalni)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 autentifikacijski servis (udaljeni)" msgid "SAML 2.0 SP Demo Example" msgstr "Primjer SAML 2.0 davatelja usluge" -msgid "Organization name" -msgstr "Naziv matične ustanove" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Kliknite na gumb \"Pošalji poruku\" da biste poslali poruku." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 metapodaci o davatelju usluge" -msgid "Home organization domain name" -msgstr "Oznaka matične ustanove" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 davatelj usluge (lokalni)" -msgid "Go back to the file list" -msgstr "Vrati se natrag na popis datoteka" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Prijava greške poslana" +msgid "Select" +msgstr "Odaberi" -msgid "Common name" -msgstr "Ime i prezime" +msgid "Select configuration file to check:" +msgstr "Odaberite konfiguracijsku datoteku koju želite provjeriti:" -msgid "Logout failed" -msgstr "Odjava nije uspjela" +msgid "Select your identity provider" +msgstr "Odaberite autentifikacijski servis" -msgid "Identity number assigned by public authorities" -msgstr "Brojčani identifikator osobe" +msgid "Send e-mail to help desk" +msgstr "Pošaljite e-mail službi za podršku korisnicima" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation autentifikacijski servis (udaljeni)" +msgid "Send error report" +msgstr "Pošalji prijavu greške" -msgid "Some error occurred" -msgstr "Pojavila se greška" +msgid "Sending message" +msgstr "Šaljem poruku" -msgid "Organization" -msgstr "Ustanova" +msgid "Service Provider" +msgstr "Davatelj usluge" -msgid "Choose home organization" -msgstr "Odaberite matičnu ustanovu" +msgid "Session size: %SIZE%" +msgstr "Veličina sjednice: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Trajni anonimni identifikator" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 metapodaci o autentifikacijskom servisu" -msgid "No errors found." -msgstr "Nije pronađena niti jedna greška." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 autentifikacijski servis (lokalni)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 davatelj usluge (lokalni)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 autentifikacijski servis (udaljeni)" -msgid "Required fields" -msgstr "Obavezna polja" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 metapodaci o davatelju usluge" -msgid "Domain component (DC)" -msgstr "Domenska komponenta (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 davatelj usluge (lokalni)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 davatelj usluge (udaljeni)" -msgid "Password" -msgstr "Zaporka" - -msgid "Nickname" -msgstr "Nadimak" - -msgid "The error report has been sent to the administrators." -msgstr "Prijava greške poslana je administratorima." - -msgid "Date of birth" -msgstr "Datum rođenja" - -msgid "Private information elements" -msgstr "Postavke privatnosti" - -msgid "You are also logged in on these services:" -msgstr "Također ste prijavljeni u sljedećim servisima:" +msgid "Shibboleth demo" +msgstr "Shibboleth primjer" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp dijagnostika" -msgid "No, only %SP%" -msgstr "Ne, samo iz %SP%" - -msgid "Username" -msgstr "Korisnička oznaka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Čini se da je SimpleSAMLphp pogrešno iskonfiguriran." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Natrag na početnu stranicu SimpleSAMLphp instalacije" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp greška" -msgid "You have successfully logged out from all services listed above." -msgstr "Uspješno ste se odjavili iz svih gore navedenih servisa." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Uspješno ste odjavljeni iz %SP%." +msgid "Some error occurred" +msgstr "Pojavila se greška" -msgid "Affiliation" -msgstr "Povezanost s ustanovom" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Podaci o stanju su izgubljeni" -msgid "You have been logged out." -msgstr "Uspješno ste se odjavili." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Podaci o stanju su izgubljeni i zahtjev se ne može reproducirati" -msgid "Return to service" -msgstr "Povratak u aplikaciju" +msgid "Street" +msgstr "Ulica" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation davatelj usluge (lokalni)" +msgid "Submit message" +msgstr "Pošalji poruku" -msgid "Preferred language" -msgstr "Primarni jezik" +msgid "Superfluous options in config file" +msgstr "Suvišni parametri u konfiguracijskoj datoteci" msgid "Surname" msgstr "Prezime" -msgid "The following fields was not recognized" -msgstr "Sljedeća polja nisu prepoznata" - -msgid "User ID" -msgstr "Identifikator korisnika u ustanovi" +msgid "Telephone number" +msgstr "Broj telefona" -msgid "JPEG Photo" -msgstr "Slika u JPEG formatu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Autentifikacijski servis je poslao odgovor koji sadrži informaciju o pojavi greške. (Šifra statusa dostavljena u SAML odgovoru ne odgovara šifri uspješno obrađenog zahtjeva)" -msgid "Postal address" -msgstr "Poštanska adresa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Korisnik je prekinuo proces autentifikacie" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Metapodaci u SAML 2.0 XML formatu:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Sljedeće informacije mogu biti zanimljive administratorima ili službi za podršku korisnicima:" -msgid "Logging out of the following services:" -msgstr "Odjavljujete se iz sljedećih servisa:" +msgid "The error report has been sent to the administrators." +msgstr "Prijava greške poslana je administratorima." -msgid "Labeled URI" -msgstr "URI adresa" +msgid "The following fields was not recognized" +msgstr "Sljedeća polja nisu prepoznata" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 autentifikacijski servis (lokalni)" +msgid "The following optional fields was not found" +msgstr "Nisu pronađena sljedeća opcionalna polja" -msgid "Metadata" -msgstr "Metapodaci" +msgid "The following required fields was not found" +msgstr "Nisu pronađena sljedeća obavezna polja" -msgid "Login" -msgstr "Prijavi se" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Tražena stranica nije pronađena. Adresa stranice je: %URL%" -msgid "Yes, all services" -msgstr "Da, iz svih servisa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Tražena stranica nije pronađena. Razlog: %REASON% Adresa stranice je: %URL%" -msgid "Logged out" -msgstr "Odjavljeni ste" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Informacija o aktualnom zahtjevu za odjavljivanjem se izgubila. Preporučamo da se vratite u aplikaciju iz koje ste se htjeli odjaviti i pokušate se odjaviti ponovo. Ova greška može biti uzrokovana istekom valjanosti zahtjeva za odjavom. Zahtjev se pohranjuje određeno vrijeme - u pravilu nekoliko sati. Obzirom da je to dulje nego što bi bilo koja operacija odjavljivanja trebala trajati, greška koja se pojavila može upućivati na grešku u konfiguraciji. Ako se problem nastavi, kontaktirajte administratora aplikacije. " -msgid "Postal code" -msgstr "Broj pošte" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Aplikacija koja je inicirala ovaj zahtjev nije poslala RelayState parametar koji sadrži adresu na koju treba preusmjeriti korisnikov web preglednik nakon uspješne autentifikacije." -msgid "Logging out..." -msgstr "Odjava u tijeku..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Parametri poslani lokacijskom servisu nisu u ispravnom formatu." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 autentifikacijski servis (lokalni)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Temeljna povezanost s ustanovom" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Izvorna vrijednost administratorske zaporke (parametar auth.adminpassword) u konfiguraciji nije promjenjena. Molimo promjenite administratorsku zaporku u konfiguracijskoj datoteci." -msgid "XML metadata" -msgstr "Metapodaci u XML formatu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Dogodila se greška prilikom dohvaćanja ove stranice. Razlog: %REASON%" -msgid "Telephone number" -msgstr "Broj telefona" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Programski alat SimpleSAMLphp je pogrešno iskonfiguriran. Ako ste administrator ovog servisa, provjerite jesu li svi metapodaci u konfiguraciji ispravni." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Odjavljivanje iz jednog ili više servisa nije uspjelo. Da biste bili sigurni da su sve vaše sjednice završene, preporučamo da zatvorite web preglednik." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Autentifikacijski servis je dobio zahtjev od davatelja usluge, ali se pojavila greška prilikom obrade zahtjeva." -msgid "Entitlement regarding the service" -msgstr "Pripadnost grupi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Ova odredišna adresa nije omogućena. Provjerite dozvole u konfiguraciji vaše instalacije programskog alata SimpleSAMLphp." -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 metapodaci o davatelju usluge" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Ova greška se vjerojatno javila zbog neočekivanog ponašanja ili neispravne konfiguracije programskog alata SimpleSAMLphp. Kontaktirajte administratore ovog servisa i pošaljite im gore navedenu poruku o greški." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Obzirom da ste u modu za otkrivanje grešaka, imate mogućnost vidjeti sadržaj poruke koju šaljete:" +msgid "Title" +msgstr "Naziv" -msgid "Certificates" -msgstr "Certifikati" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Da biste vidjeli detalje o SAML entitetu, kliknite na njegovo zaglavlje." -msgid "Remember" -msgstr "Zapamti moj odabir" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Jedinstveni naziv (DN) korisnikove matične ustanove" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Metapodaci za %ENTITYID% nisu pronađeni" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Kliknite na poveznicu \"Pošalji poruku\" da biste poslali poruku." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Odjavljivanje iz jednog ili više servisa nije uspjelo. Da biste bili sigurni da su sve vaše sjednice završene, preporučamo da zatvorite web preglednik." -msgid "Organizational unit" -msgstr "Organizacijska jedinica" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Lokalni brojčani identifikator osobe u ustanovi (LOCAL_NO)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Neobrađena iznimka" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 metapodaci o autentifikacijskom servisu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Nepoznat digitalni certifikat" -msgid "Change your home organization" -msgstr "Promjenite odabir vaše matične ustanove" +msgid "User ID" +msgstr "Identifikator korisnika u ustanovi" msgid "User's password hash" msgstr "Kriptirana zaporka" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "U SimpleSAMLphp formatu - koristite ovu opciju ako se na drugoj strani također nalazi SimpleSAMLphp entitet:" - -msgid "Completed" -msgstr "Završeno" - -msgid "Select configuration file to check:" -msgstr "Odaberite konfiguracijsku datoteku koju želite provjeriti:" - -msgid "On hold" -msgstr "Na čekanju" +msgid "Username" +msgstr "Korisnička oznaka" -msgid "Help! I don't remember my password." -msgstr "Upomoć! Zaboravio/la sam svoju zaporku." +msgid "WS-Fed SP Demo Example" +msgstr "Primjer WS-Fed davatelja usluge" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Mod za otkrivanje grešaka možete isključiti u glavnoj SimpleSAMLphp konfiguracijskoj datoteci config/config.php. " +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation autentifikacijski servis (udaljeni)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp greška" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation davatelj usluge (lokalni)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Jedan ili više servisa na koje ste prijavljeni ne podržava odjavljivanje. Da biste bili sigurni da su sve vaše sjednice završene, preporučamo da zatvorite web preglednik." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Službeni naziv ustanove" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Nije prihvaćen odgovor koji je poslao autentifikacijski servis." -msgid "Options missing from config file" -msgstr "Parametri koji nedostaju u konfiguracijskoj datoteci" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Došlo je do greške prilikom kreiranja odgovora na autentifikacijski zahtjev." -msgid "The following optional fields was not found" -msgstr "Nisu pronađena sljedeća opcionalna polja" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Šteta! - Bez ispravne korisničke oznake i zaporke ne možete pristupiti aplikaciji. Da biste saznali vašu zaporku kontaktirajte administratora elektroničkog (LDAP) imenika vaše ustanove." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Metapodaci su dostupni na ovoj adresi:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Ulica" +msgid "XML metadata" +msgstr "Metapodaci u XML formatu" -msgid "Message" -msgstr "Poruka" +msgid "Yes, all services" +msgstr "Da, iz svih servisa" -msgid "Contact information:" -msgstr "Kontakt podaci:" +msgid "Yes, continue" +msgstr "Da, nastavi" -msgid "Legal name" -msgstr "Službeni naziv" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Opcionalna polja" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Pristupili ste sučelju za obradu SAML potvrda, ali niste dostavili SAML autentifikacijski odgovor." -msgid "You have previously chosen to authenticate at" -msgstr "Prethodno ste odabrali autentifikaciju kroz" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Iz nekog razloga autentifikacijskom servisu nije proslijeđena vaša zaporka. Molimo pokušajte ponovo." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Pristupili ste sučelju za odjavljivanje iz sustava jedinstvene autentifikacije, ali niste dostavili SAML LogoutRequest ili LogoutResponse poruku." -msgid "Fax number" -msgstr "Broj telefaksa" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Kliknite na gumb \"Pošalji poruku\" da biste poslali poruku." -msgid "Shibboleth demo" -msgstr "Shibboleth primjer" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Kliknite na poveznicu \"Pošalji poruku\" da biste poslali poruku." -msgid "Error in this metadata entry" -msgstr "Ovaj zapis metapodataka sadrži grešku" +msgid "You are also logged in on these services:" +msgstr "Također ste prijavljeni u sljedećim servisima:" -msgid "Session size: %SIZE%" -msgstr "Veličina sjednice: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Pristupate sustavu koji se nalazi u pretprodukcijskoj fazi. Ove autentifikacijske postavke služe za testiranje i provjeru ispravnosti rada pretprodukcijskog sustava. Ako vam je netko poslao adresu koja pokazuje na ovu stranicu, a vi niste osoba zadužena za testiranje, vjerojatno ste na ovu stranicu došli greškom." -msgid "Parse" -msgstr "Analiziraj" +msgid "You are now successfully logged out from %SP%." +msgstr "Uspješno ste odjavljeni iz %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Šteta! - Bez ispravne korisničke oznake i zaporke ne možete pristupiti aplikaciji. Da biste saznali vašu zaporku kontaktirajte administratora elektroničkog (LDAP) imenika vaše ustanove." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Metapodaci su dostupni na ovoj adresi:" -msgid "Choose your home organization" -msgstr "Odaberite vašu matičnu ustanovu" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Mod za otkrivanje grešaka možete isključiti u glavnoj SimpleSAMLphp konfiguracijskoj datoteci config/config.php. " -msgid "Send e-mail to help desk" -msgstr "Pošaljite e-mail službi za podršku korisnicima" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Niste predočili valjani certifikat." -msgid "Metadata overview" -msgstr "Pregled metapodataka" +msgid "You have been logged out." +msgstr "Uspješno ste se odjavili." -msgid "Title" -msgstr "Naziv" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Odabrali ste %HOMEORG% kao vašu matičnu ustanovu. Ako to nije točno možete odabrati drugu ustanovu." -msgid "Manager" -msgstr "Voditelj" +msgid "You have previously chosen to authenticate at" +msgstr "Prethodno ste odabrali autentifikaciju kroz" -msgid "Affiliation at home organization" -msgstr "Povezanost s matičnom ustanovom" +msgid "You have successfully logged out from all services listed above." +msgstr "Uspješno ste se odjavili iz svih gore navedenih servisa." -msgid "Help desk homepage" -msgstr "Stranice službe za podršku korisnicima" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Iz nekog razloga autentifikacijskom servisu nije proslijeđena vaša zaporka. Molimo pokušajte ponovo." -msgid "Configuration check" -msgstr "Provjera konfiguracije" +msgid "Your attributes" +msgstr "Vaši atributi" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 autentifikacijski servis (udaljeni)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Ovo su metapodaci koje je SimpleSAMLphp izgenerirao za vas. Te metapodatke možete poslati davateljima usluga ili elektroničkih identiteta u koje imate povjerenja i s kojima želite uspostaviti federaciju." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Vaša sjednica bit će valjana još %remaining% sekundi." -msgid "Organizational homepage" -msgstr "Web stranice ustanove" +msgid "[Preferred choice]" +msgstr "[Primarni odabir]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Pristupate sustavu koji se nalazi u pretprodukcijskoj fazi. Ove autentifikacijske postavke služe za testiranje i provjeru ispravnosti rada pretprodukcijskog sustava. Ako vam je netko poslao adresu koja pokazuje na ovu stranicu, a vi niste osoba zadužena za testiranje, vjerojatno ste na ovu stranicu došli greškom." +msgid "not set" +msgstr "" diff --git a/locales/hu/LC_MESSAGES/messages.po b/locales/hu/LC_MESSAGES/messages.po index aab4c08dc4..aac0ecfc7b 100644 --- a/locales/hu/LC_MESSAGES/messages.po +++ b/locales/hu/LC_MESSAGES/messages.po @@ -1,726 +1,816 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Nincs SAML válasz" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Hiányzó SAML üzenet" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Ez a szolgáltatás megköveteli, hogy azonosítsa magát. Kérjük, adja meg felhasználónevét és jelszavát az alábbi űrlapon." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Viszony" + +msgid "Affiliation at home organization" +msgstr "Saját intézményhez való viszony" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Hiba történt a SAML kérés létrehozása közben." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "A kijelentkezési kérés (logout request) feldolgozása során hiba történt." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Kezeletlen kivétel (exception) keletkezett." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Mivel hibakereső módban van, láthatja az elküldendő üzenet tartalmát" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Azonosítás megszakítva" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "A(z) %AUTHSOURCE% azonosítási forrásban hiba van. A ok: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Azonosítási hiba: a böngésző által küldött tanúsítvány hibás." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Azonosítási hiba: a böngésző által küldött tanúsítványt ismeretlen típusú." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Azonosítási hiba: a böngésző nem küldött tanúsítványt." #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Azonosítási forrás hiba" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Hibás kérés" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Érvénytelen kérés érkezett a felfedező szolgáltatáshoz (discovery service)" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS hiba" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Tanúsítványok." + +msgid "Change your home organization" +msgstr "Válasszon másik szervezetet" + +msgid "Choose home organization" +msgstr "Válassza ki a szervezetét" + +msgid "Choose your home organization" +msgstr "Válassza ki az ön szervezetét" + +msgid "Common name" +msgstr "Teljes név" + +msgid "Completed" +msgstr "Befejezve" + +msgid "Configuration check" +msgstr "Beállítások ellenőrzése" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Beállítási hiba" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Hiba történt" +msgid "Contact information:" +msgstr "Elérési információk" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Érvénytelen kérés érkezett a felfedező szolgáltatáshoz (discovery service)" +msgid "Converted metadata" +msgstr "Konvertált metaadatok" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Nem lehet az azonosítást végrehajtani" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Érvénytelen tanúsítvány" +msgid "Date of birth" +msgstr "Születési dátum" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP hiba" +msgid "Debug information" +msgstr "Bővebb információ a hibáról" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Elveszett kijelentkezési információk" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Feldolgozhatatlan kijelentkezési kérés" +msgid "Display name" +msgstr "Megjeleníthető név" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Metaadat betöltési hiba" +msgid "Distinguished name (DN) of person's home organization" +msgstr "A felhasználó munkahelyének azonosító neve (DN-je)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadata nem található" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "A személy elsődleges szervezeti egységének azonosító neve (DN-je)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Hozzáférés megtagadva" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "A felhasználó szervezeti egység azonosító neve (DN-je)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Hiányzó tanúsítvány." +msgid "Do you want to logout from all the services above?" +msgstr "Ki akar jelentkezni az összes fenti alkalmazásból?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Nincs RelayState paraméter" +msgid "Domain component (DC)" +msgstr "Domain összetevő (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Elveszett az állapotinformáció" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "PEM formátumú X509 tanúsítvány letöltése." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Oldal nem található" +msgid "E-mail address:" +msgstr "E-mail címek:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Jelszó nincs beállítva" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Nem létezik ilyen felhasználó vagy a jelszó hibás. Kérjük, próbálja újra!" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "IdP válasz feldolgozási hiba" +msgid "Enter your username and password" +msgstr "Felhasználónév és jelszó" + +msgid "Entitlement regarding the service" +msgstr "Ezekre a szolgáltatásokra jogosult" + +msgid "Error" +msgstr "Hiba" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Hiba történt" + +msgid "Error in this metadata entry" +msgstr "Hiba ebben a metaadat bejegyzésben" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Metaadat betöltési hiba" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Hibás SP üzenet" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "IdP válasz feldolgozási hiba" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Feldolgozhatatlan kijelentkezési kérés" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Hiba történt az azonosító szervezet (IdP) oldalán" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Kezeletlen kivétel" +msgid "Error report sent" +msgstr "Elküldött hibabejelentés" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Ismeretlen tanúsítvány" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Hiba történt a CAS kiszolgálóval való kommunikáció közben." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Azonosítás megszakítva" +msgid "Explain what you did when this error occurred..." +msgstr "Írja le milyen lépéseket hajtott végre, aminek végén hiba történt..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Hibás felhasználónév vagy jelszó" +msgid "Fax number" +msgstr "Fax" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Az Assertion Consumer Service interfészen SAML Authentication Response üzenetet kell megadni." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "A(z) %AUTHSOURCE% azonosítási forrásban hiba van. A ok: %REASON%" +msgid "Given name" +msgstr "Keresztnév" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Hiba történt az oldal lekérdezése közben. A hibaüzenet: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Vissza a SimpleSAMLphp telepítő oldalára" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Hiba történt a CAS kiszolgálóval való kommunikáció közben." +msgid "Go back to the file list" +msgstr "Vissza az fájlok listájához" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Valószínűleg helytelenül lett konfigurálva a SimpleSAMLphp" +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Hiba történt a SAML kérés létrehozása közben." +msgid "Help desk homepage" +msgstr "Ügyfélszolgálat weboldala" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "A felfedező szolgáltatás (discovery service) olyan paramétereket kapott, amelyek nem felelnek meg a specifikációnak." +msgid "Help! I don't remember my password." +msgstr "Segítség! Elfelejtettem a jelszavam." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Hiba történt az azonosítási válaszüzenet összeállítása során." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Ezeket a metaadatokat a SimpleSAMLphp generálta. Ezt a dokumentumot küldheti el föderációs partnerei számára." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Azonosítási hiba: a böngésző által küldött tanúsítvány hibás." +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Üdvözöljük, ez a SimpleSAMLphp státus oldala. Itt láthatja, ha lejárt a munkamenete, mikor lépett be utoljára és a munkamenethez tartozó attribútumokat." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "A felhasználói adatbázis LDAP alapú, ezért bejelentkezéshez szükség van egy LDAP adatbázisra. Ezúttal hiba történt az LDAP-hoz kapcsolódás során." +msgid "Home organization domain name" +msgstr "Saját intézmény domain neve" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "A kijelentkezési művelettel kapcsolatos információk valahol elvesztek. Kérjük, térjen vissza ahhoz a szolgáltatáshoz, ahonnan ki akart jelentkezni, és próbálja újra! Lehetséges, hogy a hibát az okozza, hogy a kijelentkezéshez szükséges információ elévült. A kijelentkezési információ csak korlátozott ideig érvényes - általában néhány óráig. Ez hosszabb, mint amennyi normális esetben a kijelentkezéshez szükséges, ezért ez a hibaüzenet konfigurációs hibát jelenthet. Ha a probléma továbbra is fennáll, kérjük, forduljon az alkalmazásszolgáltatóhoz (SP)!" +msgid "Home postal address" +msgstr "Otthoni levelezési cím" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "A kijelentkezési kérés (logout request) feldolgozása során hiba történt." +msgid "Home telephone" +msgstr "Otthoni telefon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "SimpleSAMLphp konfigurációs hiba. Ha Ön ennek a szolgáltatásnak az adminisztrátora, bizonyosodjon meg arról, hogy a metaadatok helyesen vannak beállítva!" +msgid "How to get help" +msgstr "Hogyan kaphat segítséget" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "%ENTITYID% entitáshoz nem található metadataA" +msgid "Identity number assigned by public authorities" +msgstr "Társadalombiztosítási azonosító szám" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Ez a hozzáférési pont nincs engedélyezve. Engedélyezze a SimpleSAMLphp beállításai között." +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Ha bejelentést küld a hibával kapcsolatban, kérjük, küldje el ezt az azonosítót, mert csak ennek segítségével tudja a rendszeradminisztrátor a naplóállományokból azokat az adatokat megtalálni, amelyek ehhez a munkamenethez tartoznak." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Azonosítási hiba: a böngésző nem küldött tanúsítványt." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "SAML 2.0 XML formátumban:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "A kérés összeállítója nem adta meg a RelayState paramétert, amely azt határozza meg, hogy hová irányítsuk tovább." +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "SimpleSAMLphp fájl formátumban - akkor használható, ha a másik oldalon SimpleSAMLphp van:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Állapotinformáció elveszett, a kérést nem lehet újraindítani" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Hibás felhasználónév vagy jelszó" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Az alábbi oldal nem található: %URL%" +msgid "Incorrect username or password." +msgstr "Hibás felhasználói név vagy jelszó!" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "%URL% oldal nem található, a következő ok miatt: %REASON% " +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Még nem lett megváltoztatva a karbantartói jelszó (auth.adminpassword) a konfigurációs fájlban, kérjük, változtassa meg most! " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Érvénytelen tanúsítvány" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Nem található hiteles tanúsítvány" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Nem fogadtuk el a személyazonosság-szolgáltató (IdP) által küldött válaszüzenetet." +msgid "JPEG Photo" +msgstr "Fotó JPEG formátumban" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Az IdP azonosítási kérést kapott az SP-től, de ennek feldolgozása során hiba történt." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP hiba" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Hiba történt az azonosító szervezet (IdP) oldalán. Ismeretlen állapotkód." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "A felhasználói adatbázis LDAP alapú, ezért bejelentkezéshez szükség van egy LDAP adatbázisra. Ezúttal hiba történt az LDAP-hoz kapcsolódás során." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "A Single Logout interfészen vagy SAML LogoutRequest vagy LogoutResponse üzenetet kell megadni." +msgid "Labeled URI" +msgstr "Honlap cím" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Kezeletlen kivétel (exception) keletkezett." +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Azonosítási hiba: a böngésző által küldött tanúsítványt ismeretlen típusú." +msgid "Legal name" +msgstr "Hivatalos név (noreduperson)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Az azonosítást a felhasználó megszakította" +msgid "Local identity number" +msgstr "Helyi azonosító szám" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Nem létezik ilyen felhasználó vagy a jelszó hibás. Kérjük, próbálja újra!" +msgid "Locality" +msgstr "Település" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Üdvözöljük, ez a SimpleSAMLphp státus oldala. Itt láthatja, ha lejárt a munkamenete, mikor lépett be utoljára és a munkamenethez tartozó attribútumokat." +msgid "Logged out" +msgstr "Sikeres kilépés" -msgid "Logout" -msgstr "Kilépés" +msgid "Logging out of the following services:" +msgstr "Kilépés az alábbi szolgáltatásokból:" -msgid "Your attributes" -msgstr "Az ön attribútumai" +msgid "Logging out..." +msgstr "Kijelentkezés..." -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Az ön munkamenete még %remaining% másodpercig érvényes" +msgid "Login" +msgstr "Bejelentkezés" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Kérjük, válassza ki azt a személyazonosság-szolgáltatót (IdP), ahol azonosítani kívánja magát:" +msgid "Login at" +msgstr "Belépés ide:" -msgid "Remember my choice" -msgstr "Emlékezzen erre" +msgid "Logout" +msgstr "Kilépés" -msgid "Select" -msgstr "Választ" +msgid "Logout failed" +msgstr "Kijelentkezés nem sikerült" -msgid "Select your identity provider" -msgstr "Válasszon személyazonosság-szolgáltatót (IdP)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Elveszett kijelentkezési információk" -msgid "Sending message" -msgstr "Üzenet küldése" +msgid "Mail" +msgstr "E-mail" -msgid "Yes, continue" -msgstr "Igen, elfogadom" +msgid "Manager" +msgstr "Manager" -msgid "Debug information" -msgstr "Bővebb információ a hibáról" +msgid "Message" +msgstr "Üzenet" -msgid "E-mail address:" -msgstr "E-mail címek:" +msgid "Metadata" +msgstr "Metaadatok" -msgid "Explain what you did when this error occurred..." -msgstr "Írja le milyen lépéseket hajtott végre, aminek végén hiba történt..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadata nem található" -msgid "How to get help" -msgstr "Hogyan kaphat segítséget" +msgid "Metadata overview" +msgstr "Metaadat áttekintés" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Ha bejelentést küld a hibával kapcsolatban, kérjük, küldje el ezt az azonosítót, mert csak ennek segítségével tudja a rendszeradminisztrátor a naplóállományokból azokat az adatokat megtalálni, amelyek ehhez a munkamenethez tartoznak." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Opcionálisan megadhatja az e-mail címét, így az adminisztrátorok a hibával kapcsolatban esetleg további kérdéseket tehetnek fel:" +msgid "Mobile" +msgstr "Mobil" -msgid "Report errors" -msgstr "Mutassa a hibaüzeneteket" +msgid "Next" +msgstr "Következő" -msgid "Send error report" -msgstr "Hibabejelentés küldése" +msgid "Nickname" +msgstr "Becenév" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Az alábbi információ esetleg érdekes lehet a rendszergazda / helpdesk számára:" +msgid "No" +msgstr "Nem" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Ez a hiba valószínűleg a SimpleSAMLphp nem várt működésével vagy félrekonfigurálásával kapcsolatos. Kérjük, keresse meg a bejelentkező szolgáltatás adminisztrátorát, és küldje el neki a fenti hibaüzenetet!" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Nincs RelayState paraméter" -msgid "[Preferred choice]" -msgstr "[Kívánt választás]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Hiányzó SAML üzenet" -msgid "Person's principal name at home organization" -msgstr "Állandó azonosító a saját intézményben" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Superfluous options in config file" -msgstr "Felesleges opciók a konfigurációs állományban" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Nincs SAML válasz" -msgid "Mobile" -msgstr "Mobil" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Hozzáférés megtagadva" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 alkalmazásszolgálató (helyi)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Hiányzó tanúsítvány." -msgid "Display name" -msgstr "Megjeleníthető név" +msgid "No errors found." +msgstr "Nincs hiba." -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP Metaadatok" +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Nem" + +msgid "No, only %SP%" +msgstr "Nem, csak innen: %SP%" msgid "Notices" msgstr "Megjegyzések" -msgid "Home telephone" -msgstr "Otthoni telefon" +msgid "On hold" +msgstr "Felfüggesztve" + +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Egy vagy több alkalmazás nem támogatja a kijelenkezést. Hogy biztosítani lehessen, hogy nem maradt bejelentkezve, kérjük, lépjen ki a böngészőből!" + +msgid "Optional fields" +msgstr "Opcionális mező" + +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Opcionálisan megadhatja az e-mail címét, így az adminisztrátorok a hibával kapcsolatban esetleg további kérdéseket tehetnek fel:" + +msgid "Options missing from config file" +msgstr "Hiányzó opciók a konfigurációs állományban" + +msgid "Organization" +msgstr "Szervezet" + +msgid "Organization name" +msgstr "Szervezet neve" + +msgid "Organization's legal name" +msgstr "Szervezet hivatalos neve" + +msgid "Organizational homepage" +msgstr "Szervezet weboldala" + +msgid "Organizational number" +msgstr "Szervezeti szám" + +msgid "Organizational unit" +msgstr "Szervezeti egység" -msgid "Service Provider" -msgstr "Alkalmazásszolgáltató" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Oldal nem található" -msgid "Incorrect username or password." -msgstr "Hibás felhasználói név vagy jelszó!" +msgid "Parse" +msgstr "Értelmez" -msgid "Submit message" -msgstr "Üzenet küldése" +msgid "Password" +msgstr "Jelszó" -msgid "Locality" -msgstr "Település" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Jelszó nincs beállítva" -msgid "The following required fields was not found" -msgstr "A következő kötelező mezők hiányoznak" +msgid "Persistent pseudonymous ID" +msgstr "Állandó anonim azonosító" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "PEM formátumú X509 tanúsítvány letöltése." +msgid "Person's principal name at home organization" +msgstr "Állandó azonosító a saját intézményben" -msgid "Organizational number" -msgstr "Szervezeti szám" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Kérjük, válassza ki azt a személyazonosság-szolgáltatót (IdP), ahol azonosítani kívánja magát:" msgid "Post office box" msgstr "Postafiók" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Ez a szolgáltatás megköveteli, hogy azonosítsa magát. Kérjük, adja meg felhasználónevét és jelszavát az alábbi űrlapon." - -msgid "Error" -msgstr "Hiba" - -msgid "Next" -msgstr "Következő" +msgid "Postal address" +msgstr "Levelezési cím" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "A felhasználó szervezeti egység azonosító neve (DN-je)" +msgid "Postal code" +msgstr "Irányítószám" -msgid "Converted metadata" -msgstr "Konvertált metaadatok" +msgid "Preferred language" +msgstr "Elsődleges nyelv" -msgid "Mail" -msgstr "E-mail" +msgid "Primary affiliation" +msgstr "Elsődleges viszony" -msgid "No, cancel" -msgstr "Nem" +msgid "Private information elements" +msgstr "Védett adatokat tartalmazó attribútumok" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "A %HOMEORG% szervezetet választotta ki. Ha a választás nem volt helyes, kérem válasszon másikat." +msgid "Remember" +msgstr "Emlékezzen a hozzájárulásra" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "A személy elsődleges szervezeti egységének azonosító neve (DN-je)" +msgid "Remember me" +msgstr "Emlékezzen rám" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "A SAML entitások részleteiért kattintson a SAML entitás fejlécére" +msgid "Remember my choice" +msgstr "Emlékezzen erre" -msgid "Enter your username and password" -msgstr "Felhasználónév és jelszó" +msgid "Remember my username" +msgstr "Emlékezzen a felhasználónevemre" -msgid "Login at" -msgstr "Belépés ide:" +msgid "Report errors" +msgstr "Mutassa a hibaüzeneteket" -msgid "No" -msgstr "Nem" +msgid "Required fields" +msgstr "Kötelező mezők" -msgid "Home postal address" -msgstr "Otthoni levelezési cím" +msgid "Return to service" +msgstr "Vissza a szolgáltatáshoz" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP próba példa" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 személyazonosság-szolgáltató (helyi)" msgid "SAML 2.0 Identity Provider (Remote)" msgstr "SAML 2.0 személyazonosság-szolgáltató (távoli)" -msgid "Do you want to logout from all the services above?" -msgstr "Ki akar jelentkezni az összes fenti alkalmazásból?" - -msgid "Given name" -msgstr "Keresztnév" - msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP próba példa" -msgid "Organization name" -msgstr "Szervezet neve" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Üzenetet küldhet. Kattintson az Üzenet küldése gombra a folytatáshoz." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP Metaadatok" -msgid "Home organization domain name" -msgstr "Saját intézmény domain neve" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 alkalmazásszolgáltató (helyi)" -msgid "Go back to the file list" -msgstr "Vissza az fájlok listájához" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Elküldött hibabejelentés" +msgid "Select" +msgstr "Választ" -msgid "Common name" -msgstr "Teljes név" +msgid "Select configuration file to check:" +msgstr "Válassza ki az ellenőrizendő konfigurációs állományt" -msgid "Logout failed" -msgstr "Kijelentkezés nem sikerült" +msgid "Select your identity provider" +msgstr "Válasszon személyazonosság-szolgáltatót (IdP)" -msgid "Identity number assigned by public authorities" -msgstr "Társadalombiztosítási azonosító szám" +msgid "Send e-mail to help desk" +msgstr "Küldjön e-mailt az ügyfélszolgálatnak" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation alkalmazásszolgáltató (távoli)" +msgid "Send error report" +msgstr "Hibabejelentés küldése" -msgid "Some error occurred" -msgstr "Hiba történt" +msgid "Sending message" +msgstr "Üzenet küldése" -msgid "Organization" -msgstr "Szervezet" +msgid "Service Provider" +msgstr "Alkalmazásszolgáltató" -msgid "Choose home organization" -msgstr "Válassza ki a szervezetét" +msgid "Session size: %SIZE%" +msgstr "Munkamenet mérete: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Állandó anonim azonosító" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metaadatok" -msgid "No errors found." -msgstr "Nincs hiba." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 személyazonosság-szolgáltató (helyi)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 alkalmazásszolgáltató (helyi)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 személyazonosság-szolgáltató (távoli)" -msgid "Required fields" -msgstr "Kötelező mezők" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metaadatok" -msgid "Domain component (DC)" -msgstr "Domain összetevő (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 alkalmazásszolgálató (helyi)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 alkalmazásszolgáltató (távoli)" -msgid "Password" -msgstr "Jelszó" - -msgid "Nickname" -msgstr "Becenév" - -msgid "The error report has been sent to the administrators." -msgstr "A hibabejelentést elküldtük az adminisztrátoroknak." - -msgid "Date of birth" -msgstr "Születési dátum" - -msgid "Private information elements" -msgstr "Védett adatokat tartalmazó attribútumok" - -msgid "You are also logged in on these services:" -msgstr "Ezen alkalmazásokban van még bejelentkezve:" +msgid "Shibboleth demo" +msgstr "Shibboleth próba" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp hibakeresés" -msgid "No, only %SP%" -msgstr "Nem, csak innen: %SP%" - -msgid "Username" -msgstr "Felhasználónév" - -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Vissza a SimpleSAMLphp telepítő oldalára" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Valószínűleg helytelenül lett konfigurálva a SimpleSAMLphp" -msgid "You have successfully logged out from all services listed above." -msgstr "Sikeresen kijelentkezett az fent felsorolt összes alkalmazásból." +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp hiba" -msgid "You are now successfully logged out from %SP%." -msgstr "Sikeresen kilépett a(z) %SP% szolgáltatásból" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "Affiliation" -msgstr "Viszony" +msgid "Some error occurred" +msgstr "Hiba történt" -msgid "You have been logged out." -msgstr "Sikeresen kijelentkezett. Köszönjük, hogy használta a szolgáltatást." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Elveszett az állapotinformáció" -msgid "Return to service" -msgstr "Vissza a szolgáltatáshoz" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Állapotinformáció elveszett, a kérést nem lehet újraindítani" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation alkalmazásszolgáltató (helyi)" +msgid "Street" +msgstr "Utca" -msgid "Remember my username" -msgstr "Emlékezzen a felhasználónevemre" +msgid "Submit message" +msgstr "Üzenet küldése" -msgid "Preferred language" -msgstr "Elsődleges nyelv" +msgid "Superfluous options in config file" +msgstr "Felesleges opciók a konfigurációs állományban" msgid "Surname" msgstr "Vezetéknév" -msgid "The following fields was not recognized" -msgstr "A következő mezők nem értelmezhetők" - -msgid "User ID" -msgstr "Felhasználói azonosító" - -msgid "JPEG Photo" -msgstr "Fotó JPEG formátumban" - -msgid "Postal address" -msgstr "Levelezési cím" - -msgid "In SAML 2.0 Metadata XML format:" -msgstr "SAML 2.0 XML formátumban:" - -msgid "Logging out of the following services:" -msgstr "Kilépés az alábbi szolgáltatásokból:" +msgid "Telephone number" +msgstr "Telefonszám" -msgid "Labeled URI" -msgstr "Honlap cím" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Hiba történt az azonosító szervezet (IdP) oldalán. Ismeretlen állapotkód." -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 személyazonosság-szolgáltató (helyi)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Az azonosítást a felhasználó megszakította" -msgid "Metadata" -msgstr "Metaadatok" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Az alábbi információ esetleg érdekes lehet a rendszergazda / helpdesk számára:" -msgid "Login" -msgstr "Bejelentkezés" +msgid "The error report has been sent to the administrators." +msgstr "A hibabejelentést elküldtük az adminisztrátoroknak." -msgid "Yes, all services" -msgstr "Igen, minden alkalmazásból" +msgid "The following fields was not recognized" +msgstr "A következő mezők nem értelmezhetők" -msgid "Logged out" -msgstr "Sikeres kilépés" +msgid "The following optional fields was not found" +msgstr "A következő opcionális mezők nem találhatók" -msgid "Postal code" -msgstr "Irányítószám" +msgid "The following required fields was not found" +msgstr "A következő kötelező mezők hiányoznak" -msgid "Logging out..." -msgstr "Kijelentkezés..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Az alábbi oldal nem található: %URL%" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 személyazonosság-szolgáltató (helyi)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "%URL% oldal nem található, a következő ok miatt: %REASON% " -msgid "Primary affiliation" -msgstr "Elsődleges viszony" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "A kijelentkezési művelettel kapcsolatos információk valahol elvesztek. Kérjük, térjen vissza ahhoz a szolgáltatáshoz, ahonnan ki akart jelentkezni, és próbálja újra! Lehetséges, hogy a hibát az okozza, hogy a kijelentkezéshez szükséges információ elévült. A kijelentkezési információ csak korlátozott ideig érvényes - általában néhány óráig. Ez hosszabb, mint amennyi normális esetben a kijelentkezéshez szükséges, ezért ez a hibaüzenet konfigurációs hibát jelenthet. Ha a probléma továbbra is fennáll, kérjük, forduljon az alkalmazásszolgáltatóhoz (SP)!" -msgid "XML metadata" -msgstr "XML metaadat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "A kérés összeállítója nem adta meg a RelayState paramétert, amely azt határozza meg, hogy hová irányítsuk tovább." -msgid "Telephone number" -msgstr "Telefonszám" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "A felfedező szolgáltatás (discovery service) olyan paramétereket kapott, amelyek nem felelnek meg a specifikációnak." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Legalább egy szolgáltatásból nem sikerült kilépni. Ahhoz, hogy biztosan lezárja a megkezdett munkamenetet, kérjük, zárja be böngészőjét." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Entitlement regarding the service" -msgstr "Ezekre a szolgáltatásokra jogosult" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Még nem lett megváltoztatva a karbantartói jelszó (auth.adminpassword) a konfigurációs fájlban, kérjük, változtassa meg most! " -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Metaadatok" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Hiba történt az oldal lekérdezése közben. A hibaüzenet: %REASON%" -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Mivel hibakereső módban van, láthatja az elküldendő üzenet tartalmát" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "SimpleSAMLphp konfigurációs hiba. Ha Ön ennek a szolgáltatásnak az adminisztrátora, bizonyosodjon meg arról, hogy a metaadatok helyesen vannak beállítva!" -msgid "Certificates" -msgstr "Tanúsítványok." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Az IdP azonosítási kérést kapott az SP-től, de ennek feldolgozása során hiba történt." -msgid "Remember" -msgstr "Emlékezzen a hozzájárulásra" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Ez a hozzáférési pont nincs engedélyezve. Engedélyezze a SimpleSAMLphp beállításai között." -msgid "Distinguished name (DN) of person's home organization" -msgstr "A felhasználó munkahelyének azonosító neve (DN-je)" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Ez a hiba valószínűleg a SimpleSAMLphp nem várt működésével vagy félrekonfigurálásával kapcsolatos. Kérjük, keresse meg a bejelentkező szolgáltatás adminisztrátorát, és küldje el neki a fenti hibaüzenetet!" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Üzenetet küldhet. Kattintson az Üzenet küldése linkre a folytatáshoz." +msgid "Title" +msgstr "Cím" -msgid "Organizational unit" -msgstr "Szervezeti egység" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "A SAML entitások részleteiért kattintson a SAML entitás fejlécére" -msgid "Local identity number" -msgstr "Helyi azonosító szám" +msgid "Tracking number" +msgstr "" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Metaadatok" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "%ENTITYID% entitáshoz nem található metadataA" -msgid "Change your home organization" -msgstr "Válasszon másik szervezetet" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Legalább egy szolgáltatásból nem sikerült kilépni. Ahhoz, hogy biztosan lezárja a megkezdett munkamenetet, kérjük, zárja be böngészőjét." -msgid "User's password hash" -msgstr "A felhasználó jelszava (kódolva)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "SimpleSAMLphp fájl formátumban - akkor használható, ha a másik oldalon SimpleSAMLphp van:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Kezeletlen kivétel" -msgid "Completed" -msgstr "Befejezve" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Ismeretlen tanúsítvány" -msgid "Select configuration file to check:" -msgstr "Válassza ki az ellenőrizendő konfigurációs állományt" +msgid "User ID" +msgstr "Felhasználói azonosító" -msgid "On hold" -msgstr "Felfüggesztve" +msgid "User's password hash" +msgstr "A felhasználó jelszava (kódolva)" -msgid "Help! I don't remember my password." -msgstr "Segítség! Elfelejtettem a jelszavam." +msgid "Username" +msgstr "Felhasználónév" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "A SimpleSAMLphp config/config.php fájljában kikapcsolhatja a hibakereső módot." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP próba példa" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp hiba" +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation alkalmazásszolgáltató (távoli)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Egy vagy több alkalmazás nem támogatja a kijelenkezést. Hogy biztosítani lehessen, hogy nem maradt bejelentkezve, kérjük, lépjen ki a böngészőből!" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation alkalmazásszolgáltató (helyi)" -msgid "Remember me" -msgstr "Emlékezzen rám" +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Szervezet hivatalos neve" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Nem fogadtuk el a személyazonosság-szolgáltató (IdP) által küldött válaszüzenetet." -msgid "Options missing from config file" -msgstr "Hiányzó opciók a konfigurációs állományban" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Hiba történt az azonosítási válaszüzenet összeállítása során." -msgid "The following optional fields was not found" -msgstr "A következő opcionális mezők nem találhatók" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Ajaj! - Felhasználói neve és jelszava nélkül nem tudja azonosítani magát, így nem férhet hozzá a szolgáltatáshoz. Biztosan van valaki, aki tud önnek segíteni. Vegye fel a kapcsolatot az ügyfélszolgálattal!" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "A következő címről töltheti le a metaadatokat:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Utca" +msgid "XML metadata" +msgstr "XML metaadat" -msgid "Message" -msgstr "Üzenet" +msgid "Yes, all services" +msgstr "Igen, minden alkalmazásból" -msgid "Contact information:" -msgstr "Elérési információk" +msgid "Yes, continue" +msgstr "Igen, elfogadom" -msgid "Legal name" -msgstr "Hivatalos név (noreduperson)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Opcionális mező" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Az Assertion Consumer Service interfészen SAML Authentication Response üzenetet kell megadni." -msgid "You have previously chosen to authenticate at" -msgstr "Korábban ezt a személyazonosság-szolgáltatót (IdP) választotta: " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Valamilyen oknál fogva a jelszó nem olvasható. Kérjük, próbálja újra!" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "A Single Logout interfészen vagy SAML LogoutRequest vagy LogoutResponse üzenetet kell megadni." -msgid "Fax number" -msgstr "Fax" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Üzenetet küldhet. Kattintson az Üzenet küldése gombra a folytatáshoz." -msgid "Shibboleth demo" -msgstr "Shibboleth próba" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Üzenetet küldhet. Kattintson az Üzenet küldése linkre a folytatáshoz." -msgid "Error in this metadata entry" -msgstr "Hiba ebben a metaadat bejegyzésben" +msgid "You are also logged in on these services:" +msgstr "Ezen alkalmazásokban van még bejelentkezve:" -msgid "Session size: %SIZE%" -msgstr "Munkamenet mérete: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Egy teszt, vagy fejlesztői oldalra jutottál. Az azonosítás csak próba miatt történik. Ha valaki olyan linket küldött, amire kattintva ide jutottál, és nem vagy tesztelő, valószínűleg elrontott valamit, és amit keresel, azt itt nem találod." -msgid "Parse" -msgstr "Értelmez" +msgid "You are now successfully logged out from %SP%." +msgstr "Sikeresen kilépett a(z) %SP% szolgáltatásból" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Ajaj! - Felhasználói neve és jelszava nélkül nem tudja azonosítani magát, így nem férhet hozzá a szolgáltatáshoz. Biztosan van valaki, aki tud önnek segíteni. Vegye fel a kapcsolatot az ügyfélszolgálattal!" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "A következő címről töltheti le a metaadatokat:" -msgid "Choose your home organization" -msgstr "Válassza ki az ön szervezetét" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "A SimpleSAMLphp config/config.php fájljában kikapcsolhatja a hibakereső módot." -msgid "Send e-mail to help desk" -msgstr "Küldjön e-mailt az ügyfélszolgálatnak" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Nem található hiteles tanúsítvány" -msgid "Metadata overview" -msgstr "Metaadat áttekintés" +msgid "You have been logged out." +msgstr "Sikeresen kijelentkezett. Köszönjük, hogy használta a szolgáltatást." -msgid "Title" -msgstr "Cím" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "A %HOMEORG% szervezetet választotta ki. Ha a választás nem volt helyes, kérem válasszon másikat." -msgid "Manager" -msgstr "Manager" +msgid "You have previously chosen to authenticate at" +msgstr "Korábban ezt a személyazonosság-szolgáltatót (IdP) választotta: " -msgid "Affiliation at home organization" -msgstr "Saját intézményhez való viszony" +msgid "You have successfully logged out from all services listed above." +msgstr "Sikeresen kijelentkezett az fent felsorolt összes alkalmazásból." -msgid "Help desk homepage" -msgstr "Ügyfélszolgálat weboldala" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Valamilyen oknál fogva a jelszó nem olvasható. Kérjük, próbálja újra!" -msgid "Configuration check" -msgstr "Beállítások ellenőrzése" +msgid "Your attributes" +msgstr "Az ön attribútumai" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 személyazonosság-szolgáltató (távoli)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Ezeket a metaadatokat a SimpleSAMLphp generálta. Ezt a dokumentumot küldheti el föderációs partnerei számára." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Az ön munkamenete még %remaining% másodpercig érvényes" -msgid "Organizational homepage" -msgstr "Szervezet weboldala" +msgid "[Preferred choice]" +msgstr "[Kívánt választás]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Egy teszt, vagy fejlesztői oldalra jutottál. Az azonosítás csak próba miatt történik. Ha valaki olyan linket küldött, amire kattintva ide jutottál, és nem vagy tesztelő, valószínűleg elrontott valamit, és amit keresel, azt itt nem találod." +msgid "not set" +msgstr "" diff --git a/locales/id/LC_MESSAGES/attributes.po b/locales/id/LC_MESSAGES/attributes.po index ff63bab785..0d2c4ee330 100644 --- a/locales/id/LC_MESSAGES/attributes.po +++ b/locales/id/LC_MESSAGES/attributes.po @@ -135,15 +135,15 @@ msgstr "urn:oid:2.5.4.39" # English string: Common name msgid "cn" -msgstr "Common Name" +msgstr "Nama umum" # English string: Common name msgid "urn:mace:dir:attribute-def:cn" -msgstr "Common Name" +msgstr "Nama umum" # English string: Common name msgid "urn:oid:2.5.4.3" -msgstr "Common Name" +msgstr "Nama umum" msgid "co" msgstr "co" @@ -351,15 +351,15 @@ msgstr "urn:oid:0.9.2342.19200300.100.1.5" # English string: Organizational homepage msgid "eduOrgHomePageURI" -msgstr "Homepage organisasi" +msgstr "Organisasi Halaman Beranda" # English string: Organizational homepage msgid "urn:mace:dir:attribute-def:eduOrgHomePageURI" -msgstr "Homepage organisasi" +msgstr "Organisasi Halaman Beranda" # English string: Organizational homepage msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.2" -msgstr "Homepage organisasi" +msgstr "Organisasi Halaman Beranda" msgid "eduOrgIdentityAuthNPolicyURI" msgstr "eduOrgIdentityAuthNPolicyURI" @@ -588,15 +588,15 @@ msgstr "urn:oid:2.5.4.47" # English string: Fax number msgid "facsimileTelephoneNumber" -msgstr "No Fax" +msgstr "Nomor Fax" # English string: Fax number msgid "urn:mace:dir:attribute-def:facsimileTelephoneNumber" -msgstr "No Fax" +msgstr "Nomor Fax" # English string: Fax number msgid "urn:oid:2.5.4.23" -msgstr "No Fax" +msgstr "Nomor Fax" msgid "favouriteDrink" msgstr "favouriteDrink" @@ -771,15 +771,15 @@ msgstr "Lokalitas" # English string: Labeled URI msgid "labeledURI" -msgstr "Berlabel URL" +msgstr "URL terlabel" # English string: Labeled URI msgid "urn:mace:dir:attribute-def:labeledURI" -msgstr "Berlabel URL" +msgstr "URL terlabel" # English string: Labeled URI msgid "urn:oid:1.3.6.1.4.1.250.1.57" -msgstr "Berlabel URL" +msgstr "URL terlabel" msgid "localityName" msgstr "localityName" @@ -807,15 +807,15 @@ msgstr "urn:oid:0.9.2342.19200300.100.1.28" # English string: Mail msgid "mail" -msgstr "Mail" +msgstr "Surat" # English string: Mail msgid "urn:mace:dir:attribute-def:mail" -msgstr "Mail" +msgstr "Surat" # English string: Mail msgid "urn:oid:0.9.2342.19200300.100.1.3" -msgstr "Mail" +msgstr "Surat" msgid "mailPreferenceOption" msgstr "mailPreferenceOption" @@ -828,15 +828,15 @@ msgstr "urn:oid:0.9.2342.19200300.100.1.47" # English string: Manager msgid "manager" -msgstr "Manager" +msgstr "Manajer" # English string: Manager msgid "urn:mace:dir:attribute-def:manager" -msgstr "Manager" +msgstr "Manajer" # English string: Manager msgid "urn:oid:0.9.2342.19200300.100.1.10" -msgstr "Manager" +msgstr "Manajer" msgid "member" msgstr "member" @@ -975,15 +975,15 @@ msgstr "Nomor identitas lokal" # English string: Identity number assigned by public authorities msgid "norEduPersonNIN" -msgstr "Identity number assigned by public authorities" +msgstr "Nomor identitas yang diberikan oleh otoritas publik" # English string: Identity number assigned by public authorities msgid "urn:mace:dir:attribute-def:norEduPersonNIN" -msgstr "Identity number assigned by public authorities" +msgstr "Nomor identitas yang diberikan oleh otoritas publik" # English string: Identity number assigned by public authorities msgid "urn:oid:1.3.6.1.4.1.2428.90.1.5" -msgstr "Identity number assigned by public authorities" +msgstr "Nomor identitas yang diberikan oleh otoritas publik" # English string: Organization name msgid "o" @@ -1136,15 +1136,15 @@ msgstr "PO Box" # English string: Postal address msgid "postalAddress" -msgstr "Alamat pos" +msgstr "Alamat Pengiriman" # English string: Postal address msgid "urn:mace:dir:attribute-def:postalAddress" -msgstr "Alamat pos" +msgstr "Alamat Pengiriman" # English string: Postal address msgid "urn:oid:2.5.4.16" -msgstr "Alamat pos" +msgstr "Alamat Pengiriman" # English string: Postal code msgid "postalCode" @@ -1470,19 +1470,19 @@ msgstr "urn:schac:attribute-def:schacUserPresenceID" # English string: Private information elements msgid "schacUserPrivateAttribute" -msgstr "Elemen-elemen informasi personal" +msgstr "Elemen-elemen informasi pribadi" # English string: Private information elements msgid "urn:mace:terena.org:attribute-def:schacUserPrivateAttribute" -msgstr "Elemen-elemen informasi personal" +msgstr "Elemen-elemen informasi pribadi" # English string: Private information elements msgid "urn:oid:1.3.6.1.4.1.25178.1.2.18" -msgstr "Elemen-elemen informasi personal" +msgstr "Elemen-elemen informasi pribadi" # English string: Private information elements msgid "urn:schac:attribute-def:schacUserPrivateAttribute" -msgstr "Elemen-elemen informasi personal" +msgstr "Elemen-elemen informasi pribadi" msgid "schacUserStatus" msgstr "schacUserStatus" @@ -1776,15 +1776,15 @@ msgstr "urn:oid:2.16.840.1.113730.3.1.216" # English string: User's password hash msgid "userPassword" -msgstr "Hash password user" +msgstr "Hash kata sandi pengguna" # English string: User's password hash msgid "urn:mace:dir:attribute-def:userPassword" -msgstr "Hash password user" +msgstr "Hash kata sandi pengguna" # English string: User's password hash msgid "urn:oid:2.5.4.35" -msgstr "Hash password user" +msgstr "Hash kata sandi pengguna" msgid "userSMIMECertificate" msgstr "userSMIMECertificate" @@ -1821,7 +1821,7 @@ msgstr "urn:oid:2.5.4.45" # English string: Common name msgid "facebook_cn" -msgstr "Common Name" +msgstr "Nama umum" msgid "http://axschema.org/contact/country/home" msgstr "http://axschema.org/contact/country/home" @@ -1944,23 +1944,23 @@ msgstr "Berlabel URL" # English string: Mail msgid "facebook.email" -msgstr "Mail" +msgstr "Surat" # English string: Mail msgid "http://axschema.org/contact/email" -msgstr "Mail" +msgstr "Surat" # English string: Mail msgid "openid.sreg.email" -msgstr "Mail" +msgstr "Surat" # English string: Mail msgid "windowslive_mail" -msgstr "Mail" +msgstr "Surat" # English string: Mail msgid "windowslive.mail" -msgstr "Mail" +msgstr "Surat" # English string: Mobile msgid "http://axschema.org/contact/phone/cell" diff --git a/locales/id/LC_MESSAGES/messages.po b/locales/id/LC_MESSAGES/messages.po index 6d65e0d60c..2f606e204a 100644 --- a/locales/id/LC_MESSAGES/messages.po +++ b/locales/id/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Tidak ada response SAML yang disediakan" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "%MESSAGE%" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Tidak pesan SAML yang disediakan" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Sebuah layanan telah meminta Anda untuk melakukan autentifikasi. Silahkan masukkan username dan password Anda pada form dibawah." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "Kata sandi admin tidak disetel ke nilai hash" + +msgid "Affiliation" +msgstr "Afiliasi" + +msgid "Affiliation at home organization" +msgstr "Afiliasi di organisasi asal" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Sebuah error telah terjadi ketika membuat request SAML." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Sebuah error telah terjadi ketika memproses Request Logout." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Pengecualian yang tidak tertangani telah dilempar." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Karena anda berada pada mode debug, anda dapat melihat isi pesan yang anda kirim:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Otentikasi dibatalkan" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Error otentikasi di sumber %AUTHSOURCE%. Alasannya adalah: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Otentikasi gagal: Sertifikat yang browser Anda kirimkan invalid atau tidak dapat dibaca" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Otentikasi gagal: sertifikat yang browser anda kirimkan tidak dikenal" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Otentikasi gagal: Browser anada tidak mengirim sertifikat" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Error sumber autentifikasi" +msgid "Authentication status" +msgstr "Status otentikasi" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" -msgstr "Request buruk diterima" +msgstr "Pengajuan yang buruk ke layanan penemuan" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Request yang buruk ke layanan penemuan" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" -msgstr "Error CAS" +msgstr "Kesalahan CAS" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "Tidak dapat mengambil data sesi" + +msgid "Certificates" +msgstr "Sertifikat" + +msgid "Change your home organization" +msgstr "Ubah basis organisasi anda" + +msgid "Choose home organization" +msgstr "Pilih basis organisasi" + +msgid "Choose your home organization" +msgstr "Pilih Basis Organisasi Anda" + +msgid "Common name" +msgstr "Nama umum" + +msgid "Completed" +msgstr "Selesai" + +msgid "Configuration check" +msgstr "Pemeriksaan konfigurasi" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Error konfigurasi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Error membuat request." +msgid "Contact information:" +msgstr "Informasi Kontak:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Request yang buruk ke layanan penemuan" +msgid "Converted metadata" +msgstr "Metadata yang telah dikonvesi" + +msgid "Copy to clipboard" +msgstr "Salin ke papan klip" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Tidak dapat membuat respon autentifikasi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Sertifikat invalid" +msgid "Date of birth" +msgstr "Tanggal lahir" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Error LDAP" +msgid "Debug information" +msgstr "Informasi debug" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Informasi logout hilang" +msgid "Debug information to be used by your support staff" +msgstr "Informasi debug yang akan digunakan oleh staf pendukung Anda" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Error memproses Request Logout" +msgid "Display name" +msgstr "Nama yang ditampilkan" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Error meload metadata" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Distinguished name (DN) dari basis organisasi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadata tidak ditemukan" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Distinguished name (DN) dari basis utama unit organisasi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Tiaak ada akses" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Distinguished name (DN) dari unit basis organisasi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Tidak ada sertifikat" +msgid "Do you want to logout from all the services above?" +msgstr "Apakah anda ingin keluar dari semua layanan diatas?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Tidak ada RelayState" +msgid "Domain component (DC)" +msgstr "Domain component(DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Informasi state hilang" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Download sertifikat X509 sebagai file dikodekan-PEM." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Halaman tidak ditemukan" +msgid "E-mail address:" +msgstr "Alamat E-mail:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Password tidak diset" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Username yang diberikan tidak dapat ditemukan, atau password yang Anda berikan salah. Silahkan periksa username dan coba lagi." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Error memproses response dari Identity Provider." +msgid "Enter your username and password" +msgstr "Masukkan username dan password Anda" + +msgid "Entitlement regarding the service" +msgstr "Hak mengenai layanan ini" + +msgid "Error" +msgstr "Error" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Error membuat pengajuan" + +msgid "Error in this metadata entry" +msgstr "Error pada entri metadata ini" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Error memproses metadata" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" -msgstr "Error memproses request dari Service Provider" +msgstr "Error memproses pengajuan dari Service Provider" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Error memproses respon dari Identity Provider" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Error memproses pengajuan keluar" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" -msgstr "Error diterima dari Identity Provider" +msgstr "Error diterima dari Pemberi identitas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Exception yang tidak tertangani" +msgid "Error report sent" +msgstr "Laporan error dikirimkan" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Sertifikat tidak dikenal" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Error ketika berkomunikasi dengans server CAS." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Autentifikasi dibatalkan" +msgid "Explain what you did when this error occurred..." +msgstr "Jelaskan apa yang Anda lakukan ketika error ini terjadi..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Username atau password salah" +msgid "Fax number" +msgstr "Nomor Fax" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Anda mengakses antarnyka Assertion Consumer Service, tetapi tidak menyediakan Response Autentifikasi SAML. " +msgid "Format" +msgstr "Format" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Error autentifikasi di sumber %AUTHSOURCE%. Alasannya adalah: %REASON%" +msgid "Given name" +msgstr "Nama" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Terjadi error pada request ke halaman ini. Alasannya adalah: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Kembali ke halaman instalasi SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Error ketika berkomunikasi dengans server CAS." +msgid "Go back to the file list" +msgstr "Kembali ke daftar file" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp sepertinya telah salah dikonfigurasi" +msgid "Hello, Untranslated World!" +msgstr "Halo, Dunia yang Tidak Diterjemahkan!" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Sebuah error telah terjadi ketika membuat request SAML." +msgid "Help desk homepage" +msgstr "Homepage Help desk" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Parameter-parameter yang dikirimkan ke layanan penemuan tidak sesuai dengan spesifikasi" +msgid "Help! I don't remember my password." +msgstr "Tolong! Saya tidak ingat password saya." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Ketika identity provider ini mencoba untuk membuat response autentifikasi, error terjadi." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Berikut ini adalah SimpleSAMLphp metadata yang telah digenerate untuk Anda. Anda dapat mengirim dokumen metadata ini kepada rekan yang dipercayai untuk menyusun federasi terpercaya." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Autentifikasi gagal: Sertifikat yang browser Anda kirimkan invalid atau tidak dapat dibaca" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Hai, ini adalah halaman status dari SimpleSAMLphp. Disini anda dapat melihat jika sesi anda telah berakhir, berapa lama ia berlaku sampai berakhir dan semua attribut yang menempel pada sesi anda." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP adalah database user, dan ketika Anda mencoba login, Kami perlu menghubungi database LDAP. Sebuah error terjadi ketika Kami mencobanya saat ini. " +msgid "Home organization domain name" +msgstr "Nama domain basis organisasi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Informasi tentang operasi logout saat ini telah hilang. Anda harus kembali ke layanan tempat Anda mencoba logout dan mencoba melakukan proses logout kembali. Error ini dapat disebabakan oleh informasi logout yang telah kadaluarsa. Informasi logout disimpan untuk waktu yang terbatas - biasanya dalam bilangan jam. Waktu ini lebih lama dari operasi logout normal umumnya, jadi error ini mungkin mengindikasikan beberapa erro lain pada konfigurasi. Jika masalah tetap terjadi, hubungi service provider Anda." +msgid "Home postal address" +msgstr "Alamat pos rumah" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Sebuah error telah terjadi ketika memproses Request Logout." +msgid "Home telephone" +msgstr "Telepon rumah" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Ada beberapa kesalahan konfigurasi pada instalasi SimpleSAMLphp Anda. Jika Anda adalah administrator dari layanan ini, Anda harus memastikan konfigurasi metdata Anda telah disetup dengan benar. " +msgid "How to get help" +msgstr "Bagaimana mendapatkan pertolongan" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Tidak dapat menemukan metadata untuk %ENTITYID%" +msgid "Identity assurance profile" +msgstr "Profil penjamin identitas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Endpoint ini tidak diaktifkan. Periksalah opsi enable pada konfigurasi SimpleSAMLphp Anda." +msgid "Identity number assigned by public authorities" +msgstr "No identitas yang diberikan oleh otoritas publik" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Autentifikasi gagal: Browser anada tidak mengirim sertifikat" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Jika Anda melaporkan error ini, tolong laporkan juga nomor pelacakan sehingga memungkinkan untuk menemukan lokasi sesi anda pada log tersedia untuk administrator sistem:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Inisiator dari request ini tidak menyediakan parameter RelayState yang mengindikasikan kemana selanjutnya pergi." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Dalam format XML Metadata SAML 2.0:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Informasi state hilang, dan tidak ada cara untuk me-restat request" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "Dalam format file biasa SimpleSAMLphp - gunakan ini jika Anda menggunakan entiti SimpleSAMLphp pada sisi lain:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Halaman yang diminta tidak dapat ditemukan. URL nya adalah %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Username atau password salah" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Halaman yang diminta tidak ditemykan, Error-nya adalah: %REASON% URL-nya adalah: %URL%" +msgid "Incorrect username or password." +msgstr "Username atau password salah." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Password di konfigurasi (auth.adminspassword) tidak berubah dari nilai default. Silahkan edit file konfigurasi." +msgid "Information about your current session" +msgstr "Informasi tentang sesi Anda saat ini" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Anda tidak menyediakan sertifikat yang valid." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Sertifikat invalid" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Kami tidak menerima response yang dikirimlan dari Identity Provider." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Identity Provider ini menerima Request Autentifikasi dari sebuah Service Provider, tetapi error terjadi ketika memproses request." +msgid "JPEG Photo" +msgstr "Foto JPEG" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Identity Provider merespon dengan error. (Kode status di Response SAML adalah tidak berhasil)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Kesalahan LDAP" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Anda mengakses antarmuka SingleLogout, tetapi tidak menyediakan LogoutRequest SAML atau LogoutResponse." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP adalah database user, dan ketika Anda mencoba login, kami perlu menghubungi database LDAP. Sebuah error terjadi ketika kami mencobanya saat ini." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Exception yang tidak tertangani telah di-thrown" +msgid "Labeled URI" +msgstr "Berlabel URL" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Autentifikasi gagal: sertifikat yang browser anda kirimkan tidak dikenal" +msgid "Language" +msgstr "Bahasa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Autentifikasi dibatalkan oleh user" +msgid "Legal name" +msgstr "Nama legal" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Username yang diberikan tidak dapat ditemukan, atau password yang Anda berikan salah. Silahkan periksa username dan coba lagi." +msgid "Local identity number" +msgstr "Nomor identitas lokal" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Hai, ini adalah halaman status dari SimpleSAMLphp. Disini anda dapat melihat jika session anda telah time out, berapa lama ia berlaku sampai time out dan semua attribut yang menempel pada session anda." +msgid "Locality" +msgstr "Lokalitas" -msgid "Logout" -msgstr "Logout" +msgid "Logged out" +msgstr "Keluar" -msgid "Your attributes" -msgstr "Attribut Anda" +msgid "Logging out of the following services:" +msgstr "Keluar dari layanan-layanan berikut:" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Session anda valid untuk %remaining% detik dari sekarang." +msgid "Logging out..." +msgstr "Keluar..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Silahkan pilih identity provider tempat anda ingin melakukan autentifikasi" +msgid "Login" +msgstr "Masuk" -msgid "Remember my choice" -msgstr "Ingat pilihan saya" +msgid "Login at" +msgstr "Masuk di" -msgid "Select" -msgstr "Pilih" +msgid "Logout" +msgstr "Keluar" -msgid "Select your identity provider" -msgstr "Pilih identity provider anda" +msgid "Logout failed" +msgstr "Keluar gagal" -msgid "Sending message" -msgstr "Mengirimpan pesan" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Informasi keluar hilang" -msgid "Yes, continue" -msgstr "Yam lanjutkan" +msgid "Mail" +msgstr "Surat" + +msgid "Manager" +msgstr "Manajer" + +msgid "Message" +msgstr "Pesan" + +msgid "Metadata" +msgstr "Metadata" -msgid "Debug information" -msgstr "Informasi debug" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadata tidak ditemukan" -msgid "E-mail address:" -msgstr "Alamat E-mail:" +msgid "Metadata overview" +msgstr "Ikhtisar Metadata" -msgid "Explain what you did when this error occurred..." -msgstr "Jelaskan apa yang Anda lakukan ketika error ini terjadi..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "Metode tidak diizinkan" -msgid "How to get help" -msgstr "Bagaimana mendapatkan pertolongan" +msgid "Mobile" +msgstr "Handphone" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Jika Anda melaporkan error ini, tolong laporkan juga nomor pelacakan sehingga memungkinkan untuk lokasi session anda pada log tersedia untuk system administrator:" +msgid "Next" +msgstr "Selanjutnya" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Opsional, masukkan alamat email Anda, agar administrator dapat menghubungi Anda untuk pertanyaan lebih lanjut tentang masalah Anda:" +msgid "Nickname" +msgstr "Nama panggilan" -msgid "Report errors" -msgstr "Laporakan error" +msgid "No" +msgstr "Tidak" -msgid "Send error report" -msgstr "Kirim laporan error" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Tidak ada RelayState" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Informasi debug dibawah ini mungkin menarik bagi administrator/help desk:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Tidak pesan SAML yang disediakan" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Error ini mungkin karena perilaku yang tidak diharapakan atau konfigurasi yang salah di SimpleSAMLphp. Hubungi administrator dari layanan login ini, dan kirimkan kepada mereka pesan error diatas." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "Tidak ada permintaan SAML yang diberikan" -msgid "[Preferred choice]" -msgstr "Pilihan yang disukai" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Tidak ada response SAML yang disediakan" -msgid "Person's principal name at home organization" -msgstr "Nama kepala pada organisasi asal" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Tidak ada akses" -msgid "Superfluous options in config file" -msgstr "Pilihan tak beguna di file konfigurasi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Tidak ada sertifikat" -msgid "Mobile" -msgstr "Handphone" +msgid "No errors found." +msgstr "Tidak ada error yang ditemukan." -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Service Provider Shib 1.3 (Hosted)" +msgid "No identity providers found. Cannot continue." +msgstr "Tidak ditemukan penyedia identitas. Tidak dapat melanjutkan." -msgid "Display name" -msgstr "Nama yang ditampilkan" +msgid "No, cancel" +msgstr "Tidak, batalkan" -msgid "SAML 2.0 SP Metadata" -msgstr "Metadata SAML 2.0 SP" +msgid "No, only %SP%" +msgstr "Tidak, hanya %SP%" msgid "Notices" msgstr "Pemberitahuan" -msgid "Home telephone" -msgstr "Telepon rumah" +msgid "On hold" +msgstr "Diberhentikan sementara" -msgid "Service Provider" -msgstr "Service Provider" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Satu atau beberapa layanan yang anda telah masuk tidak mendukung keluar.Untuk meyakinkan semua sesi anda ditutup, anda disarankan untuk menutup web browser anda." -msgid "Incorrect username or password." -msgstr "Username atau password salah" +msgid "Optional fields" +msgstr "Bidang opsional" -msgid "Submit message" -msgstr "Submit pesan" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Opsional, masukkan alamat email Anda, agar administrator dapat menghubungi Anda untuk pertanyaan lebih lanjut tentang masalah Anda:" -msgid "Locality" -msgstr "Lokalitas" +msgid "Options missing from config file" +msgstr "Opsi-opsi uang hilang dari file konfigurasi" -msgid "The following required fields was not found" -msgstr "Field-field yang diperlukan wajib disisi berikut ini tidak ditemukan" +msgid "Organization" +msgstr "Organisasi" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Download sertifikat X509 sebagai file dikodekan-PEM." +msgid "Organization name" +msgstr "Nama organisasi" + +msgid "Organization's legal name" +msgstr "Nama legal Organisasi" + +msgid "Organizational homepage" +msgstr "Homepage organisasi" msgid "Organizational number" msgstr "Nomor Organisasi" -msgid "Post office box" -msgstr "PO Box" +msgid "Organizational unit" +msgstr "Unit Organisasi" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Sebuah layanan telah meminta Anda untuk melakukan autentifikasi. Silahkan masukkan username dan password Anda pada form dibawah" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Halaman tidak ditemukan" -msgid "Error" -msgstr "Error" +msgid "Parse" +msgstr "Parse" -msgid "Next" -msgstr "Selanjutnya" +msgid "Password" +msgstr "Password" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Distinguished name (DN) of the person's home organizational unit" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Password tidak diset" -msgid "Converted metadata" -msgstr "Metadata yang telah dikonvesi" +msgid "Persistent pseudonymous ID" +msgstr "Persistent pseudonymous ID" -msgid "Mail" -msgstr "Mail" +msgid "Person's principal name at home organization" +msgstr "Nama kepala pada organisasi asal" -msgid "No, cancel" -msgstr "Tidak" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Silahkan pilih identity provider tempat anda ingin melakukan autentifikasi:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Anda telah memilih %HOMEORG% sebagai basis organisasi anda. Jika ini salah anda dapat memilih yang lain." +msgid "Post office box" +msgstr "PO Box" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Distinguished name (DN) of person's primary Organizational Unit" +msgid "Postal address" +msgstr "Alamat pos" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Untuk melihat detail entiti SAML, klik pada bagian header entiti SAML" +msgid "Postal code" +msgstr "Kode pos" -msgid "Enter your username and password" -msgstr "Masukkan username dan password Anda" +msgid "Preferred language" +msgstr "Pilihan Bahasa" -msgid "Login at" -msgstr "Login di" +msgid "Primary affiliation" +msgstr "Afiliasi utama" -msgid "No" -msgstr "Tidak" +msgid "Private information elements" +msgstr "Elemen-elemen informasi personal" -msgid "Home postal address" -msgstr "Alamat pos rumah" +msgid "Remember" +msgstr "Ingat" -msgid "WS-Fed SP Demo Example" -msgstr "Contoh Demo WS-Fed SP" +msgid "Remember my choice" +msgstr "Ingat pilihan saya" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "Identity Provider SAML 2.0 (Remote)" +msgid "Report errors" +msgstr "Laporakan error" -msgid "Do you want to logout from all the services above?" -msgstr "Apakah anda ingin logout dari semua layanan diatas ?" +msgid "Required fields" +msgstr "Field-field yang wajib diisi" -msgid "Given name" -msgstr "Nama" +msgid "Return to service" +msgstr "Kembali ke layanan" -msgid "Identity assurance profile" -msgstr "Profil penjamin identitas" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "Identity Provider SAML 2.0 (Hosted)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "Identity Provider SAML 2.0 (Remote)" msgid "SAML 2.0 SP Demo Example" msgstr "Contoh Demo SAML 2.0 SP" -msgid "Organization name" -msgstr "Nama organisasi" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Anda baru saja akan mengirim sebuah pesan. Tekan tombol submit pesan untuk melanjutkan." +msgid "SAML 2.0 SP Metadata" +msgstr "Metadata SAML 2.0 SP" -msgid "Home organization domain name" -msgstr "Home organization domain name" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "Service Provider SAML 2.0 (Hosted)" -msgid "Go back to the file list" -msgstr "Kembali ke daftar file" +msgid "SAML Subject" +msgstr "Subjek SAML" -msgid "Error report sent" -msgstr "Laporan error dikirimkan" +msgid "Select" +msgstr "Pilih" -msgid "Common name" -msgstr "Common Name" +msgid "Select configuration file to check:" +msgstr "Pilih file konfigurasi yang akan diperiksa:" -msgid "Logout failed" -msgstr "Log out gagal" +msgid "Select your identity provider" +msgstr "Pilih identitas provider anda" -msgid "Identity number assigned by public authorities" -msgstr "Identity number assigned by public authorities" +msgid "Send e-mail to help desk" +msgstr "Kirim e-mail ke meja bantuan" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "Identity Provider WS-Federation (Remote)" +msgid "Send error report" +msgstr "Kirim laporan error" -msgid "Some error occurred" -msgstr "Beberapa error telah terjadi" +msgid "Sending message" +msgstr "Mengirimpan pesan" -msgid "Organization" -msgstr "Organisasi" +msgid "Service Provider" +msgstr "Service Provider" -msgid "Choose home organization" -msgstr "Pilih basis organisasi" +msgid "Session size: %SIZE%" +msgstr "Ukuran session: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Persistent pseudonymous ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Metadata Shib 1.3 IdP" -msgid "No errors found." -msgstr "Tidak ada error yang ditemukan" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Identity Provider Shib 1.3 (Hosted)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "Service Provider SAML 2.0 (Hosted)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Identity Provider Shib 1.3 (Remote)" -msgid "Required fields" -msgstr "Field-field yang wajib diisi" +msgid "Shib 1.3 SP Metadata" +msgstr "Metadata Shib 1.3 SP" -msgid "Domain component (DC)" -msgstr "Domain component(DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Service Provider Shib 1.3 (Hosted)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Service Provider Shib 1.3 (Remote)" -msgid "Password" -msgstr "Password" - -msgid "Nickname" -msgstr "Nama panggilan" - -msgid "The error report has been sent to the administrators." -msgstr "Laporan error telah dikirimkan ke administrator" - -msgid "Date of birth" -msgstr "Tanggal lahir" - -msgid "Private information elements" -msgstr "Elemen-elemen informasi personal" - -msgid "You are also logged in on these services:" -msgstr "Anda juga telah log out dari layanan berikut: " +msgid "Shibboleth demo" +msgstr "Demo Shibboleth" msgid "SimpleSAMLphp Diagnostics" msgstr "Diagnostik SimpleSAMLphp" -msgid "No, only %SP%" -msgstr "Tidak, hanya %SP%" - -msgid "Username" -msgstr "Username" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp sepertinya telah salah dikonfigurasi." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Kembali ke halaman instalasi SimpleSAMLphp" +msgid "SimpleSAMLphp error" +msgstr "Error simpelSAMLphp" -msgid "You have successfully logged out from all services listed above." -msgstr "Anda telah berhasil log out dari semua layanan yang tercantuh diatas." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "Karena browser Anda tidak mendukung Javascript, Anda harus menekan tombol di bawah ini untuk melanjutkan." -msgid "You are now successfully logged out from %SP%." -msgstr "Sekarang anda telah sukses log out dari %SP%." +msgid "Some error occurred" +msgstr "Beberapa kesalahan telah terjadi" -msgid "Affiliation" -msgstr "Afiliasi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Informasi state hilang" -msgid "You have been logged out." -msgstr "Anda telah log out." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Informasi state hilang, dan tidak ada cara untuk me-restat request" -msgid "Return to service" -msgstr "Kembali ke layanan" +msgid "Street" +msgstr "Jalan" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "Servide Provider WS-Federation (Hosted)" +msgid "Submit message" +msgstr "Serahkan pesan" -msgid "Preferred language" -msgstr "Pilihan Bahasa" +msgid "Superfluous options in config file" +msgstr "Pilihan tak beguna di file konfigurasi" msgid "Surname" msgstr "Nama Keluaga" -msgid "The following fields was not recognized" -msgstr "Field-field berikut ini tidak dapat dikenali" - -msgid "User ID" -msgstr "User ID" +msgid "Telephone number" +msgstr "No Telepon" -msgid "JPEG Photo" -msgstr "Foto JPEG" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Identity Provider merespon dengan error. (Kode status di Response SAML adalah tidak berhasil)" -msgid "Postal address" -msgstr "Alamat pos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Otentikasi dibatalkan oleh user" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Dalam format XML Metadata SAML 2.0" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Informasi debug dibawah ini mungkin menarik bagi administrator/help desk:" -msgid "Logging out of the following services:" -msgstr "Log out dari layanan-layanan berikut:" +msgid "The error report has been sent to the administrators." +msgstr "Laporan kesalahan telah dikirim ke administrator." -msgid "Labeled URI" -msgstr "Berlabel URL" +msgid "The following fields was not recognized" +msgstr "Field-field berikut ini tidak dapat dikenali" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Identity Provider Shib 1.3 (Hosted)" +msgid "The following optional fields was not found" +msgstr "Field-field opsional berikut tidak dapat ditemukan" -msgid "Metadata" -msgstr "Metadata" +msgid "The following required fields was not found" +msgstr "Field-field yang diperlukan wajib disisi berikut ini tidak ditemukan" -msgid "Login" -msgstr "Login" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Halaman yang diminta tidak dapat ditemukan. URL nya adalah %URL%" -msgid "Yes, all services" -msgstr "Ya, semua layanan" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Halaman yang diminta tidak ditemykan, Error-nya adalah: %REASON% URL-nya adalah: %URL%" -msgid "Logged out" -msgstr "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Informasi tentang operasi keluar saat ini telah hilang. Anda harus kembali ke layanan tempat Anda mencoba keluar dan mencoba melakukan proses keluar kembali. Kesalahan ini dapat disebabakan oleh informasi " -msgid "Postal code" -msgstr "Kode pos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Orang yang memulai request ini tidak menyediakan parameter RelayState yang mengindikasikan kemana selanjutnya pergi." -msgid "Logging out..." -msgstr "Log out..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Parameter-parameter yang dikirimkan ke layanan penemuan tidak sesuai dengan spesifikasi." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "Identity Provider SAML 2.0 (Hosted)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "Kata sandi dalam konfigurasi (auth.adminpassword) bukan merupakan nilai hash. Rincian lengkap tentang cara memperbaikinya tersedia di https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ) #gagal-login-ke-halaman-admin-dengan-dan-pesan-kesalahan-kata-password-admin-tidak-disetel-ke-nilai-hash" -msgid "Primary affiliation" -msgstr "Afiliasi utama" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Password di konfigurasi (auth.adminspassword) tidak berubah dari nilai awal. Silahkan edit file konfigurasi." -msgid "XML metadata" -msgstr "metadata XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Terjadi kesalahan pada request ke halaman ini. Alasannya adalah: %REASON%" -msgid "Telephone number" -msgstr "No Telepon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Ada beberapa kesalahan konfigurasi pada instalasi SimpleSAMLphp Anda. Jika Anda adalah administrator dari layanan ini, Anda harus memastikan konfigurasi metdata Anda telah disetup dengan benar." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Tidak dapat log out dari satu atau beberapa layanan. Untuk memastikan semua session anda ditutup, anda disaranakan untuk menutup web browser anda." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Identity Provider ini menerima Request Autentifikasi dari sebuah Service Provider, tetapi error terjadi ketika memproses request." -msgid "Entitlement regarding the service" -msgstr "Hak mengenai layanan ini" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Endpoint ini tidak diaktifkan. Periksalah opsi enable pada konfigurasi SimpleSAMLphp Anda." -msgid "Shib 1.3 SP Metadata" -msgstr "Metadata Shib 1.3 SP" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Error ini mungkin karena perilaku yang tidak diharapakan atau konfigurasi yang salah di SimpleSAMLphp. Hubungi administrator dari layanan login ini, dan kirimkan kepada mereka pesan error diatas." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Karena anda berada pada mode debug, anda dapat melihat isi pesan yang anda kirim:" +msgid "Title" +msgstr "Gelar" -msgid "Certificates" -msgstr "Sertifikat" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Untuk melihat detail entiti SAML, klik pada bagian header entiti SAML." -msgid "Remember" -msgstr "Ingat" +msgid "Tracking number" +msgstr "Nomor resi" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Distinguished name (DN) of person's home organization" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Tidak dapat menemukan metadata untuk %ENTITYID%" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Anda baru saja akan mengirim sebuah pesan. Tekan link submit pesan untuk melanjutkan." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Tidak dapat log out dari satu atau beberapa layanan. Untuk memastikan semua session anda ditutup, anda disaranakan untuk menutup web browser anda." -msgid "Organizational unit" -msgstr "Organizational unit" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Nomor identitas lokal" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Pengecualian yang tidak tertangani" -msgid "Shib 1.3 IdP Metadata" -msgstr "Metadata Shib 1.3 IdP" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Sertifikat tidak dikenal" -msgid "Change your home organization" -msgstr "Ubah basis organisasi anda" +msgid "User ID" +msgstr "User ID" msgid "User's password hash" msgstr "Hash password user" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "Dalam format file biasa SimpleSAMLphp - gunakan ini jika Anda menggunakan entiti SimpleSAMLphp pada sisi lain:" - -msgid "Completed" -msgstr "Selesai" - -msgid "Select configuration file to check:" -msgstr "Pilih file konfigurasi untuk diperiksa" - -msgid "On hold" -msgstr "Ditahan" +msgid "Username" +msgstr "Username" -msgid "Help! I don't remember my password." -msgstr "Tolong! Saya tidak ingat password saya" +msgid "WS-Fed SP Demo Example" +msgstr "Contoh Demo WS-Fed SP" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Anda dapat menonaktifkan mode debuh pada file konfigurasi global simpleSAMLhphp config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "Identity Provider WS-Federation (Remote)" -msgid "SimpleSAMLphp error" -msgstr "Error simpelSAMLphp" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "Servide Provider WS-Federation (Hosted)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Satu atau beberapa layanan yang anda telah login tidak mendukung logout.Untuk meyakinkan semua session anda ditutup, anda disarankan untuk menutup web browser anda." +msgid "Warning" +msgstr "Peringatan" -msgid "Organization's legal name" -msgstr "Nama legal Organisasi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Kami tidak menerima response yang dikirimlan dari Identity Provider." -msgid "Options missing from config file" -msgstr "Opsi-opsi uang hilang dari file konfigurasi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Ketika identity provider ini mencoba untuk membuat response autentifikasi, error terjadi." -msgid "The following optional fields was not found" -msgstr "Field-field opsional berikut tidak dapat ditemukan" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Tanpa nama pengguna dan kata sandi, Anda tidak dapat mengautentikasi diri Anda sendiri untuk mengakses layanan ini. Mungkin ada seseorang yang dapat membantu Anda. Konsultasikan dengan meja bantuan di organisasi Anda!" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Anda dapat mendapatkan xml metadata pada URL tersendiri:" +msgid "World" +msgstr "Dunia" -msgid "Street" -msgstr "Jalan" +msgid "XML metadata" +msgstr "metadata XML" -msgid "Message" -msgstr "Pesan" +msgid "Yes, all services" +msgstr "Ya, semua layanan" -msgid "Contact information:" -msgstr "Informasi Kontak" +msgid "Yes, continue" +msgstr "Ya, lanjutkan" -msgid "Legal name" -msgstr "Nama legal" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "Anda mengakses antarmuka Layanan Resolusi Artefak, tetapi tidak memberikan pesan SAML ArtifactResolve. Harap diperhatikan bahwa titik akhir ini tidak dimaksudkan untuk diakses secara langsung." -msgid "Optional fields" -msgstr "Field-field opsional" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Anda mengakses antarmuka Layanan Konsumen Penegasan, tetapi tidak memberikan Respons Otentikasi SAML. Harap diperhatikan bahwa titik akhir ini tidak dimaksudkan untuk diakses secara langsung." -msgid "You have previously chosen to authenticate at" -msgstr "Sebelumnya anda telah memilih untuk melakukan autentifikasi di " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "Anda mengakses antarmuka Layanan Sistem Masuk Tunggal, tetapi tidak memberikan Permintaan Autentikasi SAML. Harap diperhatikan bahwa titik akhir ini tidak dimaksudkan untuk diakses secara langsung." -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Anda mengirimkan sesuatu ke halaman login, tetapi karena suatu alasan tertentu password tidak terkirimkan, Silahkan coba lagi." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Anda mengakses antarmuka SingleLogout, tetapi tidak menyediakan LogoutRequest SAML atau LogoutResponse." -msgid "Fax number" -msgstr "No Fax" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Anda baru saja akan mengirim sebuah pesan. Tekan tombol submit pesan untuk melanjutkan." -msgid "Shibboleth demo" -msgstr "Demo Shibboleth" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Anda baru saja akan mengirim sebuah pesan. Tekan link submit pesan untuk melanjutkan." -msgid "Error in this metadata entry" -msgstr "Error pada entri metadata ini" +msgid "You are also logged in on these services:" +msgstr "Anda juga masuk pada layanan berikut:" -msgid "Session size: %SIZE%" -msgstr "Ukuran session: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Anda sekarang mengakses sistem praproduksi. Pengaturan autentikasi ini hanya untuk pengujian dan verifikasi praproduksi. Jika seseorang mengirimi Anda tautan yang mengarahkan Anda ke sini, dan Anda bukan penguji, Anda mungkin mendapatkan tautan yang salah, dan seharusnya tidak berada di sini." -msgid "Parse" -msgstr "Parse" +msgid "You are now successfully logged out from %SP%." +msgstr "Sekarang anda telah sukses log out dari %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Sayang sekali! - Tanpa username dan password Anda tidak dapat melakukan autentifikasi agar dapat mengakses layanan. Mungkin ada seseorang yang dapat menolong Anda. Hubungi help desk pada universitas Anda." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Anda dapat mendapatkan xml metadata pada URL tersendiri:" -msgid "Choose your home organization" -msgstr "Pilih Basis Organisasi Anda" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Anda dapat menonaktifkan mode debuh pada file konfigurasi global simpleSAMLhphp config/config.php." -msgid "Send e-mail to help desk" -msgstr "Kirim e-mail ke help dek" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Anda tidak menyediakan sertifikat yang valid." -msgid "Metadata overview" -msgstr "Ikhtisar Metadata" +msgid "You have been logged out." +msgstr "Anda telah log out." -msgid "Title" -msgstr "Gelar" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Anda telah memilih %HOMEORG% sebagai basis organisasi anda. Jika ini salah anda dapat memilih yang lain." -msgid "Manager" -msgstr "Manager" +msgid "You have previously chosen to authenticate at" +msgstr "Sebelumnya anda telah memilih untuk melakukan autentifikasi di" -msgid "Affiliation at home organization" -msgstr "Afiliasi di organisasi asal" +msgid "You have successfully logged out from all services listed above." +msgstr "Anda telah berhasil keluar dari semua layanan yang tercantuh diatas." -msgid "Help desk homepage" -msgstr "Homepage Help desk" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Anda mengirimkan sesuatu ke halaman masuk, tetapi karena suatu alasan tertentu password tidak terkirimkan, Silahkan coba lagi." -msgid "Configuration check" -msgstr "Pemeriksaan konfigurasi" +msgid "Your attributes" +msgstr "Attribut Anda" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Identity Provider Shib 1.3 (Remote)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "Data sesi Anda tidak dapat diambil saat ini karena masalah teknis. Silakan coba lagi dalam beberapa menit." -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Berikut ini adalah SimpleSAMLphp metadata yang telah digenerate untuk Anda. Anda dapat mengirim dokumen metadata ini kepada rekan yang dipercayai untuk mensetup federasi terpercaya." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Sesi anda valid untuk %remaining% detik dari sekarang." -msgid "Organizational homepage" -msgstr "Homepage organisasi" +msgid "[Preferred choice]" +msgstr "Pilihan yang disukai" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Sekarang anda sedang mengakses sistem pra-produksi. Setup autentifikasi ini untuk keperluan uji coba dan verifikasi pra-produksi" +msgid "not set" +msgstr "tidak di atur" diff --git a/locales/it/LC_MESSAGES/messages.po b/locales/it/LC_MESSAGES/messages.po index 4dd12cf42b..015556a5c0 100644 --- a/locales/it/LC_MESSAGES/messages.po +++ b/locales/it/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Nessuna risposta SAML fornita." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Nessun messaggio SAML fornito" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Un servizio ha richiesto l'autenticazione. Si prega di inserire le proprie credenziali nella maschera di login sottostante." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Affiliazione" + +msgid "Affiliation at home organization" +msgstr "Affiliazione nella propria organizzazione" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Si è verificato un errore durante la creazione della richiesta SAML." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Si è verificato un errore quando si è tentato di elaborare la richiesta di disconnessione (Logout Request)." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "È stata generata un'eccezione che non è stata gestita." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Poichè ci si trova in modalità di debug, si può vedere il contenuto del messaggio che si sta per inviare:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Autenticazione interrotta" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Errore di autenticazione in sorgente %AUTHSOURCE%. La ragione è $REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "L'autenticazione è fallita perché il tuo browser ha inviato un certificato non valido o illegibile." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "L'autenticazione è fallita perché il tuo browser ha inviato un certificato sconosciuto." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "L'autenticazione è fallita perché il tuo browser non ha inviato alcun certificato" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Errore di sorgente di autenticazione" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "È stata ricevuta una richiesta erronea." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Richiesta erronea al discovery service" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "Errore CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Certificati" + +msgid "Change your home organization" +msgstr "Cambiare la propria organizzazione" + +msgid "Choose home organization" +msgstr "Selezionare la propria organizzazione" + +msgid "Choose your home organization" +msgstr "Selezionare la propria organizzazione" + +msgid "Common name" +msgstr "Nome completo" + +msgid "Completed" +msgstr "Completato" + +msgid "Configuration check" +msgstr "Verifica della configurazione" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Errore di configurazione" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Errore durante la generazione della richiesta" +msgid "Contact information:" +msgstr "Informazioni di contatto:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Richiesta erronea al discovery service" +msgid "Converted metadata" +msgstr "Metadati convertiti" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Impossibile generare una risposta di autenticazione" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Certificato non valido" +msgid "Date of birth" +msgstr "Data di nascita" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Errore LDAP" +msgid "Debug information" +msgstr "Informazioni di debug" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Informazioni di disconnessione smarrite." +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Errore nell'elaborazione della richiesta di disconnessione (Logout Request)." +msgid "Display name" +msgstr "Nome da visualizzare" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Errore nel caricamento dei metadati" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Distinguished name (DN) dell'organizzazione " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadati non trovati" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Distinguished name (DN) dell'unità organizzativa della persona" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Nessun accesso" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Distinguished name (DN) dell'unità organizzativa della persona" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Nessun certificato" +msgid "Do you want to logout from all the services above?" +msgstr "Vuoi disconnetterti da tutti i servizi qui sopra riportati?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Nessun RelayState" +msgid "Domain component (DC)" +msgstr "Componente di dominio (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Informazioni di stato perse" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Scarica i certificati X509 come file PEM-encoded" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Pagina non trovata" +msgid "E-mail address:" +msgstr "Indirizzo di e-mail:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Password non impostata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "L'utente fornito non è stato trovato, oppure la password fornita era sbagliata. Si prega di verificare il nome utente e provare di nuovo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Errore nell'elaborazione della risposta ricevuta dall'Identity Provider." +msgid "Enter your username and password" +msgstr "Inserire nome utente e password" + +msgid "Entitlement regarding the service" +msgstr "Qualifica rispetto al servizio" + +msgid "Error" +msgstr "Errore" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Errore durante la generazione della richiesta" + +msgid "Error in this metadata entry" +msgstr "Errore in questo elemento dei metadati" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Errore nel caricamento dei metadati" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Errore nell'elaborazione della richiesta dal Service Provider" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Errore nell'elaborazione della risposta ricevuta dall'Identity Provider." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Errore nell'elaborazione della richiesta di disconnessione (Logout Request)." + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "È stato ricevuto un errore dall'Identity Provider" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Eccezione non gestita" +msgid "Error report sent" +msgstr "Rapporto dell'errore inviato" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Certificato sconosciuto" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Errore nella comunicazione con il server CAS." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Autenticazione interrotta" +msgid "Explain what you did when this error occurred..." +msgstr "Descrivi cosa stavi facendo al momento dell'errore" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Nome utente o password non corretti" +msgid "Fax number" +msgstr "Numero di fax" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Hai acceduto all'interfaccia di Assertion Consumer Service, ma senza fornire un messaggio SAML di Authentication Response." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Errore di autenticazione in sorgente %AUTHSOURCE%. La ragione è $REASON%" +msgid "Given name" +msgstr "Nome" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "C'è un errore nella richiesta di questa pagina: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Torna alla pagine di installazione di SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Errore nella comunicazione con il server CAS." +msgid "Go back to the file list" +msgstr "Tornare indietro alla lista dei file" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Sembra che SimpleSAMLphp non sia configurato correttamente." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Si è verificato un errore durante la creazione della richiesta SAML." +msgid "Help desk homepage" +msgstr "Homepage del servizio di assistenza" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "I parametri inviati al discovery service non rispettano le specifiche." +msgid "Help! I don't remember my password." +msgstr "Aiuto! Non ricordo la mia password." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Si è verificato un errore durante la fase di creazione della risposta di autenticazione da parte dell'Identity Provider." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Questi sono i metadati che SimpleSAMLphp ha generato e che possono essere inviati ai partner fidati per creare una federazione tra siti." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "L'autenticazione è fallita perché il tuo browser ha inviato un certificato non valido o illegibile." +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Salve, questa è la pagina di stato di SimpleSAMLphp. Qui è possiible vedere se la sessione è scaduta, quanto è durata prima di scadere e tutti gli attributi ad essa collegati." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "Gli utenti sono memorizzati nel server LDAP, che viene quindi contattato in fase di connessione dell'utente. Si è verificato un errore proprio in questa fase." +msgid "Home organization domain name" +msgstr "Nome di dominio della propria organizzazione" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Le informazioni riguardo all'attuale operazione di disconnessione sono andate perse. Si dovrebbe tornare al servizio da cui si cercava di disconnettersi e provare di nuovo. Questo errore può essere causato dal termine della validità delle informazioni di disconnessione. Le informazioni per la disconnessione sono conservate per un breve arco temporale, in genere alcune ore. Questo è un tempo superiore a quello che una operazione di disconnessione dovrebbe richiedere, quindi questo errore può indicare un problema di configurazione di qualche altro tipo. Se il problema persiste, consultare il fornitore del service provider." +msgid "Home postal address" +msgstr "Indirizzo postale" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Si è verificato un errore quando si è tentato di elaborare la richiesta di disconnessione (Logout Request)." +msgid "Home telephone" +msgstr "Telefono" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "C'è qualche errore di configurazione in questa installazione SimpleSAMLphp. Se sei l'amministratore di sistema, assicurati che la configurazione dei metadati sia corretta." +msgid "How to get help" +msgstr "Come ottenere aiuto" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Impossibile individuare i metatadi per %ENTITYID%" +msgid "Identity assurance profile" +msgstr "Profilo di garanzia sull'identità" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Questo endpoint non è abilitato. Verifica le opzioni di attivazione nella configurazione di SimpleSAMLphp." +msgid "Identity number assigned by public authorities" +msgstr "Numero di identità assegnato dalle autorità pubbliche" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "L'autenticazione è fallita perché il tuo browser non ha inviato alcun certificato" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Se inoltri questo errore, per favore riporta anche questo tracking ID, esso renderà possibile all'amministratore del sistema il tracciamento della tua sessione nei log:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Chi ha iniziato la richiesta non ha fornito un parametro RelayState per specificare come proseguire dopo il login." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Metadati SAML 2.0 in formato XML:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Le informazioni di stato sono andate perse, e non c'è modo di far ripartire la richiesta" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "In formato flat per SimpleSAMLphp - da utilizzare se dall'altra parte c'è un'entità che utilizza SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "La pagina data non è stata trovata. URL della pagina: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Nome utente o password non corretti" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "La pagina data non è stata trovata. Motivo: %REASON%, URL: %URL%" +msgid "Incorrect username or password." +msgstr "Nome utente o password errati." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "La password definita nella configurazione (auth.adminpassword) non è stata cambiata dal valore di default. Si prega di modificare il file di configurazione." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Non hai fornito un certificato valido." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Certificato non valido" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Non è stata accettata una risposta proveniente dall'Identity Provider." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Questo Identity Provider ha ricevuto una richiesta di autenticazione da parte di un Service Provider, ma si è verificato un errore durante l'elaborazione di quest'ultima" +msgid "JPEG Photo" +msgstr "Foto JPEG" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "L'Identity Provider ha risposto con un errore. (Il codice di stato nel messaggio SAML Response non indicava un successo)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Errore LDAP" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Hai acceduto all'interfaccia di SingleLogoutService, ma senza fornire un messaggio SAML di LogoutRequest o LogoutResponse." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "Gli utenti sono memorizzati nel server LDAP, che viene quindi contattato in fase di connessione dell'utente. Si è verificato un errore proprio in questa fase." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "È stata generata un'eccezione che non è stata gestita." +msgid "Labeled URI" +msgstr "Etichetta URI" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "L'autenticazione è fallita perché il tuo browser ha inviato un certificato sconosciuto." +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "L'autenticazione è stata interrotta dall'utente" +msgid "Legal name" +msgstr "Nome legale" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "L'utente fornito non è stato trovato, oppure la password fornita era sbagliata. Si prega di verificare il nome utente e provare di nuovo" +msgid "Local identity number" +msgstr "Numero identificativo locale" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Salve, questa è la pagina di stato di SimpleSAMLphp. Qui è possiible vedere se la sessione è scaduta, quanto è durata prima di scadere e tutti gli attributi ad essa collegati." +msgid "Locality" +msgstr "Località" -msgid "Logout" -msgstr "Disconnessione" +msgid "Logged out" +msgstr "Disconnesso" -msgid "Your attributes" -msgstr "I tuoi attributi" +msgid "Logging out of the following services:" +msgstr "Disconnessione in corso dai seguenti servizi:" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "La tua sessione è valida per ulteriori %remaining% secondi." +msgid "Logging out..." +msgstr "Disconnessione..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Si prega di selezionare l'identity provider con il quale autenticarsi:" +msgid "Login" +msgstr "Login" -msgid "Remember my choice" -msgstr "Ricorda la mia scelta" +msgid "Login at" +msgstr "Effettua il login con" -msgid "Select" -msgstr "Selezionare" +msgid "Logout" +msgstr "Disconnessione" -msgid "Select your identity provider" -msgstr "Selezionare il proprio identity provider" +msgid "Logout failed" +msgstr "Disconnessione fallita" -msgid "Sending message" -msgstr "Invio del messaggio" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Informazioni di disconnessione smarrite." -msgid "Yes, continue" -msgstr "Sì, continuare" +msgid "Mail" +msgstr "Mail" -msgid "Debug information" -msgstr "Informazioni di debug" +msgid "Manager" +msgstr "Manager" -msgid "E-mail address:" -msgstr "Indirizzo di e-mail:" +msgid "Message" +msgstr "Messaggio" -msgid "Explain what you did when this error occurred..." -msgstr "Descrivi cosa stavi facendo al momento dell'errore" +msgid "Metadata" +msgstr "Metadati" -msgid "How to get help" -msgstr "Come ottenere aiuto" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadati non trovati" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Se inoltri questo errore, per favore riporta anche questo tracking ID, esso renderà possibile all'amministratore del sistema il tracciamento della tua sessione nei log:" +msgid "Metadata overview" +msgstr "Visione generale dei metadati" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Puoi inserire il tuo indirizzo di email, per consentire agli amministratori di contattarti per analizzare il problema:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "Riporta gli errori" +msgid "Mobile" +msgstr "Cellulare" -msgid "Send error report" -msgstr "Invia un rapporto di errore" +msgid "Next" +msgstr "Avanti" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Le seguenti informazioni di debug possono interessare l'amministratore di sistema o il supporto utenti:" +msgid "Nickname" +msgstr "Soprannome (nick)" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Questo errore è probabilmente dovuto a qualche comportamento inatteso di SimpleSAMLphp o ad un errore di configurazione. Contatta l'amministratore di questo servizio di login con una copia del messaggio di errore riportato qui sopra." +msgid "No" +msgstr "No" -msgid "[Preferred choice]" -msgstr "[Scelta preferita]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Nessun RelayState" -msgid "Person's principal name at home organization" -msgstr "Nome identificativo (principal name) nella propria organizzazione" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Nessun messaggio SAML fornito" -msgid "Superfluous options in config file" -msgstr "Opzioni superflue nel file di configurazione" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "Cellulare" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Nessuna risposta SAML fornita." -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Service Provider (Hosted)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Nessun accesso" -msgid "Display name" -msgstr "Nome da visualizzare" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Nessun certificato" -msgid "SAML 2.0 SP Metadata" -msgstr "Metadati SAML 2.0 SP" +msgid "No errors found." +msgstr "Nessun errore trovato." + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "No" + +msgid "No, only %SP%" +msgstr "No, solo da %SP%" msgid "Notices" msgstr "Notifiche" -msgid "Home telephone" -msgstr "Telefono" +msgid "On hold" +msgstr "In attesa" -msgid "Service Provider" -msgstr "Fornitore di servizi" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Uno o più servizi a cui sei connesso non supportano la disconnessione. Per assicurarsi di chiudere tutte le sessioni si consiglia di chiudere il browser" + +msgid "Optional fields" +msgstr "Campi opzionali" -msgid "Incorrect username or password." -msgstr "Nome utente o password errati." +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Puoi inserire il tuo indirizzo di email, per consentire agli amministratori di contattarti per analizzare il problema:" -msgid "Submit message" -msgstr "Invio messaggio" +msgid "Options missing from config file" +msgstr "Opzioni mancanti dal file di configurazione" -msgid "Locality" -msgstr "Località" +msgid "Organization" +msgstr "Organizzazione" -msgid "The following required fields was not found" -msgstr "I seguenti campi, richiesti, non sono stati trovati" +msgid "Organization name" +msgstr "Nome dell'organizzazione" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Scarica i certificati X509 come file PEM-encoded" +msgid "Organization's legal name" +msgstr "Nome legale della propria organizzazione" + +msgid "Organizational homepage" +msgstr "Homepage della propria organizzazione" msgid "Organizational number" msgstr "Numero dell'organizzazione" -msgid "Post office box" -msgstr "Casella postale" +msgid "Organizational unit" +msgstr "Unità organizzativa" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Un servizio ha richiesto l'autenticazione. Si prega di inserire le proprie credenziali nella maschera di login sottostante." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Pagina non trovata" -msgid "Error" -msgstr "Errore" +msgid "Parse" +msgstr "Analisi" -msgid "Next" -msgstr "Avanti" +msgid "Password" +msgstr "Password" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Distinguished name (DN) dell'unità organizzativa della persona" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Password non impostata" -msgid "Converted metadata" -msgstr "Metadati convertiti" +msgid "Persistent pseudonymous ID" +msgstr "Pseudonimo identificativo persistente" -msgid "Mail" -msgstr "Mail" +msgid "Person's principal name at home organization" +msgstr "Nome identificativo (principal name) nella propria organizzazione" -msgid "No, cancel" -msgstr "No" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Si prega di selezionare l'identity provider con il quale autenticarsi:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "È stata selezionata %HOMEORG% come propria organizzazione. Se è sbagliata, è possibile selezionarne un'altra." +msgid "Post office box" +msgstr "Casella postale" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Distinguished name (DN) dell'unità organizzativa della persona" +msgid "Postal address" +msgstr "Indirizzo postale" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Per visualizzare i dettagli di una entità SAML, cliccare sull'header SAML dell'entità." +msgid "Postal code" +msgstr "CAP" -msgid "Enter your username and password" -msgstr "Inserire nome utente e password" +msgid "Preferred language" +msgstr "Lingua preferita" -msgid "Login at" -msgstr "Effettua il login con" +msgid "Primary affiliation" +msgstr "Affiliazione primaria" -msgid "No" -msgstr "No" +msgid "Private information elements" +msgstr "Elementi informativi privati" -msgid "Home postal address" -msgstr "Indirizzo postale" +msgid "Remember" +msgstr "Ricordare" -msgid "WS-Fed SP Demo Example" -msgstr "Demo di WS-Fed SP" +msgid "Remember my choice" +msgstr "Ricorda la mia scelta" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 Identity Provider (Remoto)" +msgid "Report errors" +msgstr "Riporta gli errori" -msgid "Do you want to logout from all the services above?" -msgstr "Vuoi disconnetterti da tutti i servizi qui sopra riportati?" +msgid "Required fields" +msgstr "Campi richiesti" -msgid "Given name" -msgstr "Nome" +msgid "Return to service" +msgstr "Ritornare al servizio" -msgid "Identity assurance profile" -msgstr "Profilo di garanzia sull'identità" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Identity Provider (Hosted)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 Identity Provider (Remoto)" msgid "SAML 2.0 SP Demo Example" msgstr "Demo di SAML 2.0 SP" -msgid "Organization name" -msgstr "Nome dell'organizzazione" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Si sta per inviare un messaggio. Premere il pulsante di invio per continuare." +msgid "SAML 2.0 SP Metadata" +msgstr "Metadati SAML 2.0 SP" -msgid "Home organization domain name" -msgstr "Nome di dominio della propria organizzazione" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Service Provider (Hosted)" -msgid "Go back to the file list" -msgstr "Tornare indietro alla lista dei file" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Rapporto dell'errore inviato" +msgid "Select" +msgstr "Selezionare" -msgid "Common name" -msgstr "Nome completo" +msgid "Select configuration file to check:" +msgstr "Selezionare il file di configurazione da verificare:" -msgid "Logout failed" -msgstr "Disconnessione fallita" +msgid "Select your identity provider" +msgstr "Selezionare il proprio identity provider" -msgid "Identity number assigned by public authorities" -msgstr "Numero di identità assegnato dalle autorità pubbliche" +msgid "Send e-mail to help desk" +msgstr "Invia una mail al servizio di assistenza" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation Identity Provider (Remoto)" +msgid "Send error report" +msgstr "Invia un rapporto di errore" -msgid "Some error occurred" -msgstr "Si è verificato un errore" +msgid "Sending message" +msgstr "Invio del messaggio" -msgid "Organization" -msgstr "Organizzazione" +msgid "Service Provider" +msgstr "Fornitore di servizi" -msgid "Choose home organization" -msgstr "Selezionare la propria organizzazione" +msgid "Session size: %SIZE%" +msgstr "Dimensione della sessione: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Pseudonimo identificativo persistente" +msgid "Shib 1.3 IdP Metadata" +msgstr "Metadati Shib 1.3 IdP" -msgid "No errors found." -msgstr "Nessun errore trovato." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Identity Provider (Hosted)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Service Provider (Hosted)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Identity Provider (Remoto)" -msgid "Required fields" -msgstr "Campi richiesti" +msgid "Shib 1.3 SP Metadata" +msgstr "Metadati Shib 1.3 SP" -msgid "Domain component (DC)" -msgstr "Componente di dominio (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Service Provider (Hosted)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 Service Provider (Remoto)" -msgid "Password" -msgstr "Password" - -msgid "Nickname" -msgstr "Soprannome (nick)" - -msgid "The error report has been sent to the administrators." -msgstr "Il rapporto dell'errore è stato inviato agli amministratori." - -msgid "Date of birth" -msgstr "Data di nascita" - -msgid "Private information elements" -msgstr "Elementi informativi privati" - -msgid "You are also logged in on these services:" -msgstr "Attualmente sei anche connesso ai seguenti servizi:" +msgid "Shibboleth demo" +msgstr "Demo di Shibboleth" msgid "SimpleSAMLphp Diagnostics" msgstr "Diagnostica di SimpleSAMLphp" -msgid "No, only %SP%" -msgstr "No, solo da %SP%" - -msgid "Username" -msgstr "Nome utente" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Sembra che SimpleSAMLphp non sia configurato correttamente." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Torna alla pagine di installazione di SimpleSAMLphp" +msgid "SimpleSAMLphp error" +msgstr "Errore di SimpleSAMLphp" -msgid "You have successfully logged out from all services listed above." -msgstr "Sei stato disconnesso da tutti i servizi sopra elencati." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Sei stato correttamente disconnesso da %SP%" +msgid "Some error occurred" +msgstr "Si è verificato un errore" -msgid "Affiliation" -msgstr "Affiliazione" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Informazioni di stato perse" -msgid "You have been logged out." -msgstr "Sei stato disconnesso" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Le informazioni di stato sono andate perse, e non c'è modo di far ripartire la richiesta" -msgid "Return to service" -msgstr "Ritornare al servizio" +msgid "Street" +msgstr "Via" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation Service Provider (Hosted)" +msgid "Submit message" +msgstr "Invio messaggio" -msgid "Preferred language" -msgstr "Lingua preferita" +msgid "Superfluous options in config file" +msgstr "Opzioni superflue nel file di configurazione" msgid "Surname" msgstr "Cognome" -msgid "The following fields was not recognized" -msgstr "I seguenti campi non sono stati riconosciuti" - -msgid "User ID" -msgstr "Identificativo utente" +msgid "Telephone number" +msgstr "Numero di telefono" -msgid "JPEG Photo" -msgstr "Foto JPEG" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "L'Identity Provider ha risposto con un errore. (Il codice di stato nel messaggio SAML Response non indicava un successo)" -msgid "Postal address" -msgstr "Indirizzo postale" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "L'autenticazione è stata interrotta dall'utente" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Metadati SAML 2.0 in formato XML:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Le seguenti informazioni di debug possono interessare l'amministratore di sistema o il supporto utenti:" -msgid "Logging out of the following services:" -msgstr "Disconnessione in corso dai seguenti servizi:" +msgid "The error report has been sent to the administrators." +msgstr "Il rapporto dell'errore è stato inviato agli amministratori." -msgid "Labeled URI" -msgstr "Etichetta URI" +msgid "The following fields was not recognized" +msgstr "I seguenti campi non sono stati riconosciuti" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Identity Provider (Hosted)" +msgid "The following optional fields was not found" +msgstr "I seguenti campi, opzionali, non sono stati trovati" -msgid "Metadata" -msgstr "Metadati" +msgid "The following required fields was not found" +msgstr "I seguenti campi, richiesti, non sono stati trovati" -msgid "Login" -msgstr "Login" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "La pagina data non è stata trovata. URL della pagina: %URL%" -msgid "Yes, all services" -msgstr "Si, da tutti i servizi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "La pagina data non è stata trovata. Motivo: %REASON%, URL: %URL%" -msgid "Logged out" -msgstr "Disconnesso" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Le informazioni riguardo all'attuale operazione di disconnessione sono andate perse. Si dovrebbe tornare al servizio da cui si cercava di disconnettersi e provare di nuovo. Questo errore può essere causato dal termine della validità delle informazioni di disconnessione. Le informazioni per la disconnessione sono conservate per un breve arco temporale, in genere alcune ore. Questo è un tempo superiore a quello che una operazione di disconnessione dovrebbe richiedere, quindi questo errore può indicare un problema di configurazione di qualche altro tipo. Se il problema persiste, consultare il fornitore del service provider." -msgid "Postal code" -msgstr "CAP" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Chi ha iniziato la richiesta non ha fornito un parametro RelayState per specificare come proseguire dopo il login." -msgid "Logging out..." -msgstr "Disconnessione..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "I parametri inviati al discovery service non rispettano le specifiche." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Identity Provider (Hosted)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Affiliazione primaria" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "La password definita nella configurazione (auth.adminpassword) non è stata cambiata dal valore di default. Si prega di modificare il file di configurazione." -msgid "XML metadata" -msgstr "Metadati XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "C'è un errore nella richiesta di questa pagina: %REASON%" -msgid "Telephone number" -msgstr "Numero di telefono" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "C'è qualche errore di configurazione in questa installazione SimpleSAMLphp. Se sei l'amministratore di sistema, assicurati che la configurazione dei metadati sia corretta." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Impossibile disconnettersi da uno o più servizi. Per assicurarsi di chiudere tutte le sessioni si consiglia di chiudere il browser" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Questo Identity Provider ha ricevuto una richiesta di autenticazione da parte di un Service Provider, ma si è verificato un errore durante l'elaborazione di quest'ultima" -msgid "Entitlement regarding the service" -msgstr "Qualifica rispetto al servizio" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Questo endpoint non è abilitato. Verifica le opzioni di attivazione nella configurazione di SimpleSAMLphp." -msgid "Shib 1.3 SP Metadata" -msgstr "Metadati Shib 1.3 SP" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Questo errore è probabilmente dovuto a qualche comportamento inatteso di SimpleSAMLphp o ad un errore di configurazione. Contatta l'amministratore di questo servizio di login con una copia del messaggio di errore riportato qui sopra." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Poichè ci si trova in modalità di debug, si può vedere il contenuto del messaggio che si sta per inviare:" +msgid "Title" +msgstr "Titolo" -msgid "Certificates" -msgstr "Certificati" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Per visualizzare i dettagli di una entità SAML, cliccare sull'header SAML dell'entità." -msgid "Remember" -msgstr "Ricordare" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Distinguished name (DN) dell'organizzazione " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Impossibile individuare i metatadi per %ENTITYID%" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Si sta per inviare un messaggio. Premere il pulsante di invio per continuare." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Impossibile disconnettersi da uno o più servizi. Per assicurarsi di chiudere tutte le sessioni si consiglia di chiudere il browser" -msgid "Organizational unit" -msgstr "Unità organizzativa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Numero identificativo locale" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Eccezione non gestita" -msgid "Shib 1.3 IdP Metadata" -msgstr "Metadati Shib 1.3 IdP" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Certificato sconosciuto" -msgid "Change your home organization" -msgstr "Cambiare la propria organizzazione" +msgid "User ID" +msgstr "Identificativo utente" msgid "User's password hash" msgstr "Hash della password utente" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "In formato flat per SimpleSAMLphp - da utilizzare se dall'altra parte c'è un'entità che utilizza SimpleSAMLphp" - -msgid "Completed" -msgstr "Completato" - -msgid "Select configuration file to check:" -msgstr "Selezionare il file di configurazione da verificare:" - -msgid "On hold" -msgstr "In attesa" +msgid "Username" +msgstr "Nome utente" -msgid "Help! I don't remember my password." -msgstr "Aiuto! Non ricordo la mia password." +msgid "WS-Fed SP Demo Example" +msgstr "Demo di WS-Fed SP" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "È possibile disabilitare la modalità di debug nel file di configurazione globale di SimpleSAMLphp, config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation Identity Provider (Remoto)" -msgid "SimpleSAMLphp error" -msgstr "Errore di SimpleSAMLphp" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation Service Provider (Hosted)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Uno o più servizi a cui sei connesso non supportano la disconnessione. Per assicurarsi di chiudere tutte le sessioni si consiglia di chiudere il browser" +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Nome legale della propria organizzazione" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Non è stata accettata una risposta proveniente dall'Identity Provider." -msgid "Options missing from config file" -msgstr "Opzioni mancanti dal file di configurazione" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Si è verificato un errore durante la fase di creazione della risposta di autenticazione da parte dell'Identity Provider." -msgid "The following optional fields was not found" -msgstr "I seguenti campi, opzionali, non sono stati trovati" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Senza il nome utente e la password, non è possibile effettuare l'autenticazione al servizio. C'è probabilmente qualcuno che può fornirti aiuto. Consultare il proprio help desk." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Si possono ottenere i metadati in XML dall'URL dedicato:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Via" +msgid "XML metadata" +msgstr "Metadati XML" -msgid "Message" -msgstr "Messaggio" +msgid "Yes, all services" +msgstr "Si, da tutti i servizi" -msgid "Contact information:" -msgstr "Informazioni di contatto:" +msgid "Yes, continue" +msgstr "Sì, continuare" -msgid "Legal name" -msgstr "Nome legale" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Campi opzionali" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Hai acceduto all'interfaccia di Assertion Consumer Service, ma senza fornire un messaggio SAML di Authentication Response." -msgid "You have previously chosen to authenticate at" -msgstr "Precedentemente si è scelto di autenticarsi con" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Sono state inviate delle informazioni alla pagina di login, ma per qualche motivo la password risulta mancante. Si prega di riprovare." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Hai acceduto all'interfaccia di SingleLogoutService, ma senza fornire un messaggio SAML di LogoutRequest o LogoutResponse." -msgid "Fax number" -msgstr "Numero di fax" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Si sta per inviare un messaggio. Premere il pulsante di invio per continuare." -msgid "Shibboleth demo" -msgstr "Demo di Shibboleth" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Si sta per inviare un messaggio. Premere il pulsante di invio per continuare." -msgid "Error in this metadata entry" -msgstr "Errore in questo elemento dei metadati" +msgid "You are also logged in on these services:" +msgstr "Attualmente sei anche connesso ai seguenti servizi:" -msgid "Session size: %SIZE%" -msgstr "Dimensione della sessione: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Si sta per accedere ad un sistema di pre-produzione. Questa configurazione di autenticazione è solo allo scopo di test. Se si è arrivati qui a seguito di link fornito da qualcuno, e non si sta operando come tester, probabilmente si è seguito un link sbagliato visto che non si dovrebbe essere qui." -msgid "Parse" -msgstr "Analisi" +msgid "You are now successfully logged out from %SP%." +msgstr "Sei stato correttamente disconnesso da %SP%" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Senza il nome utente e la password, non è possibile effettuare l'autenticazione al servizio. C'è probabilmente qualcuno che può fornirti aiuto. Consultare il proprio help desk." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Si possono ottenere i metadati in XML dall'URL dedicato:" -msgid "Choose your home organization" -msgstr "Selezionare la propria organizzazione" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "È possibile disabilitare la modalità di debug nel file di configurazione globale di SimpleSAMLphp, config/config.php." -msgid "Send e-mail to help desk" -msgstr "Invia una mail al servizio di assistenza" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Non hai fornito un certificato valido." -msgid "Metadata overview" -msgstr "Visione generale dei metadati" +msgid "You have been logged out." +msgstr "Sei stato disconnesso" -msgid "Title" -msgstr "Titolo" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "È stata selezionata %HOMEORG% come propria organizzazione. Se è sbagliata, è possibile selezionarne un'altra." -msgid "Manager" -msgstr "Manager" +msgid "You have previously chosen to authenticate at" +msgstr "Precedentemente si è scelto di autenticarsi con" -msgid "Affiliation at home organization" -msgstr "Affiliazione nella propria organizzazione" +msgid "You have successfully logged out from all services listed above." +msgstr "Sei stato disconnesso da tutti i servizi sopra elencati." -msgid "Help desk homepage" -msgstr "Homepage del servizio di assistenza" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Sono state inviate delle informazioni alla pagina di login, ma per qualche motivo la password risulta mancante. Si prega di riprovare." -msgid "Configuration check" -msgstr "Verifica della configurazione" +msgid "Your attributes" +msgstr "I tuoi attributi" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Identity Provider (Remoto)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Questi sono i metadati che SimpleSAMLphp ha generato e che possono essere inviati ai partner fidati per creare una federazione tra siti." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "La tua sessione è valida per ulteriori %remaining% secondi." -msgid "Organizational homepage" -msgstr "Homepage della propria organizzazione" +msgid "[Preferred choice]" +msgstr "[Scelta preferita]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Si sta per accedere ad un sistema di pre-produzione. Questa configurazione di autenticazione è solo allo scopo di test. Se si è arrivati qui a seguito di link fornito da qualcuno, e non si sta operando come tester, probabilmente si è seguito un link sbagliato visto che non si dovrebbe essere qui." +msgid "not set" +msgstr "" diff --git a/locales/ja/LC_MESSAGES/messages.po b/locales/ja/LC_MESSAGES/messages.po index 89f6da2417..3fc92c2ba5 100644 --- a/locales/ja/LC_MESSAGES/messages.po +++ b/locales/ja/LC_MESSAGES/messages.po @@ -1,717 +1,807 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "SAMLレスポンスがありません" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "SAMLメッセージがありません" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "サービスはあなた自身の認証を要求しています。以下のフォームにユーザー名とパスワードを入力してください。" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "所属" + +msgid "Affiliation at home organization" +msgstr "組織内職種" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "SAMLリクエストの生成中にエラーが発生しました。" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "ログアウト処理中にエラーが発生しました。" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "未処理例外が投げられました。" + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "このエラーを報告する場合、システム管理者がログからあなたのセッションを特定するために、トラッキング番号を報告してください。" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "認証は中断されました" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "認証元: %AUTHSOURCE% でエラーが発生しました。理由: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "認証失敗: あなたのブラウザは無効か読むことの出来ない証明書を送信しました。" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "認証に失敗しました: ブラウザから不正な証明書が送られました" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "認証失敗: あなたのブラウザは証明書を送信しませんでした" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "認証元エラー" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "不正なリクエストを受信しました" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "サービスディスカバリ中の不正なリクエスト" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CASエラー" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Change your home organization" +msgstr "あなたの組織を変更してください" + +msgid "Choose home organization" +msgstr "組織の選択" + +msgid "Choose your home organization" +msgstr "あなたの組織を選択してください" + +msgid "Common name" +msgstr "一般名" + +msgid "Completed" +msgstr "完了しました" + +msgid "Configuration check" +msgstr "設定確認" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "設定エラー" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "リクエストの生成エラー" +msgid "Contact information:" +msgstr "連絡先:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "サービスディスカバリ中の不正なリクエスト" +msgid "Converted metadata" +msgstr "変換されたメタデータ" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "認証応答を生成出来ませんでした" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "無効な証明書です" +msgid "Date of birth" +msgstr "生年月日" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAPエラー" +msgid "Debug information" +msgstr "デバッグ情報" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "ログアウト情報を失いました" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "ログアウト処理中にエラーが発生しました" +msgid "Display name" +msgstr "表示名" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "メタデータの読み込み中にエラーが発生しました" +msgid "Distinguished name (DN) of person's home organization" +msgstr "組織識別名" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "メタデータが見つかりません" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "主要組織単位識別名" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "アクセスがありません" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "組織単位識別名" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "証明書がありません" +msgid "Do you want to logout from all the services above?" +msgstr "上記の全てのサービスからログアウトしますか?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "RelayStateがありません" +msgid "Domain component (DC)" +msgstr "ドメイン名" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "状態情報を失いました" +msgid "E-mail address:" +msgstr "Eメールアドレス:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "ページが見つかりません" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "ユーザー名またはパスワードが間違っています。ユーザー名、パスワードを確認して再度試してください。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "パスワードが設定されていません" +msgid "Enter your username and password" +msgstr "ユーザー名とパスワードを入力してください" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "アイデンティティプロバイダからのレスポンスの処理中にエラーが発生しました。" +msgid "Entitlement regarding the service" +msgstr "サービスに関する資格" + +msgid "Error" +msgstr "エラー" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "リクエストの生成エラー" + +msgid "Error in this metadata entry" +msgstr "このメタデータエントリでのエラー" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "メタデータの読み込み中にエラーが発生しました" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "サービスプロバイダからのリクエストの処理中にエラーが発生しました" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "アイデンティティプロバイダからのレスポンスの処理中にエラーが発生しました。" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "ログアウト処理中にエラーが発生しました" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "アイデンティティプロバイダからエラーを受信しました" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "未処理例外" +msgid "Error report sent" +msgstr "エラー報告を送信" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "不正な証明書です" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "CASサーバーとの通信中にエラーが発生しました。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "認証は中断されました" +msgid "Explain what you did when this error occurred..." +msgstr "何をした際にこのエラーが発生したかを教えてください。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "ユーザー名かパスワードが間違っています" +msgid "Fax number" +msgstr "FAX番号" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Assertion Consumer Serviceインターフェースへアクセスしましたが、SAML認証レスポンスが提供されませんでした。" +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "認証元: %AUTHSOURCE% でエラーが発生しました。理由: %REASON%" +msgid "Given name" +msgstr "名" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "ページのリクエスト中にエラーが発生しました。理由は: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "SimpleSAMLphpの設定ページに戻る" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "CASサーバーとの通信中にエラーが発生しました。" +msgid "Go back to the file list" +msgstr "ファイルリストに戻る" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphpの設定にミスがあるようです。" +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "SAMLリクエストの生成中にエラーが発生しました。" +msgid "Help desk homepage" +msgstr "ヘルプデスクページ" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "サービスディスカバリに送信したパラメータが仕様に従っていません。" +msgid "Help! I don't remember my password." +msgstr "たすけて! パスワードを思い出せません。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "アイデンティティプロバイダの認証レスポンスの生成時にエラーが発生しました。" +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "SimpleSAMLphpが生成したメタデータです。このメタデータドキュメントを信頼できるパートナーに送信して、信頼できる連携を設定できます。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "認証失敗: あなたのブラウザは無効か読むことの出来ない証明書を送信しました。" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "ここはSimpleSAMLphpのステータスページです。ここではセッションのタイムアウト時間やセッションに結びつけられた属性情報を見ることが出来ます。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "あなたがログインを行う時、LDAPというユーザーデーターベースにアクセスします。この時エラーが発生しました。" +msgid "Home organization domain name" +msgstr "組織内ドメイン" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "ログアウト操作に関する情報が失われました。ログアウトしようとしていたサービスに戻り、再度ログアウトを行ってください。このエラーは、ログアウト情報の期限切れが原因で発生する可能性があります。ログアウト情報は、通常は数時間の限られた時間だけ保存されます。このエラーは、通常のログアウト操作にかかるよりも長いため、構成に関する他のエラーの可能性もあります。問題が解決しない場合は、サービスプロバイダにお問い合わせください。" +msgid "Home postal address" +msgstr "住所" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "ログアウト処理中にエラーが発生しました。" +msgid "Home telephone" +msgstr "電話番号" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "SimpleSAMLphpの設定に誤りがありました。もしあなたがこのサービスの管理者であればメタデータ設定を正しくセットアップする必要があります。" +msgid "How to get help" +msgstr "困ったときには" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "%ENTITYID% のメタデータが見つかりません" +msgid "Identity assurance profile" +msgstr "識別子保証プロファイル" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "エンドポイントが有効ではありません。SimpleSAMLphpの設定でオプションを有効にしてください。" +msgid "Identity number assigned by public authorities" +msgstr "公開認証局によって割り当てられた識別番号" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "認証失敗: あなたのブラウザは証明書を送信しませんでした" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "このエラーを報告する場合、システム管理者がログからあなたのセッションを特定するために、トラッキング番号を報告してください。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "リクエスト生成時にはRelayStateパラメーターを提供されませんでした。" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "SAML 2.0 用のメタデータXMLフォーマット:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "状態情報を失い、リクエストを再開出来ません" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "SimpleSAMLphp のファイルフォーマット - もう一方でSimpleSAMLphpエンティティを使用する場合にこれを使用します:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "与えられたページは見つかりませんでした。URLは: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "ユーザー名かパスワードが間違っています" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "与えられたページは見つかりませんでした。理由は: %REASON% URLは: %URL%" +msgid "Incorrect username or password." +msgstr "ユーザー名かパスワードが間違っています。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "設定のパスワード(auth.adminpassword)は既定値から変更されていません設定ファイルを編集してください。" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "正当な証明書が提示されませんでした。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "無効な証明書です" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "アイデンティティプロバイダから送信されたレスポンスを受け付けませんでした。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "このアイデンティティプロバイダはサービスプロバイダからの認証リクエストを受け付けましたが、リクエストの処理中にエラーが発生しました。" +msgid "JPEG Photo" +msgstr "JPEG写真" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "アイデンティティプロバイダがエラーを受けとりました。(SAMLレスポンスに失敗したステータスコード)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAPエラー" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "SingleLogoutServiceインターフェースへアクセスしましたが、SAML LogoutRequestやLogoutResponseが提供されませんでした。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "あなたがログインを行う時、LDAPというユーザーデーターベースにアクセスします。この時エラーが発生しました。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "未処理例外が投げられました。" +msgid "Labeled URI" +msgstr "URI" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "認証に失敗しました: ブラウザから不正な証明書が送られました" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "認証はユーザーによって中断されました" +msgid "Legal name" +msgstr "正式名称" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "ユーザー名またはパスワードが間違っています。ユーザー名、パスワードを確認して再度試してください。" +msgid "Local identity number" +msgstr "ローカル識別番号" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "ここはSimpleSAMLphpのステータスページです。ここではセッションのタイムアウト時間やセッションに結びつけられた属性情報を見ることが出来ます。" +msgid "Locality" +msgstr "地域" -msgid "Logout" +msgid "Logged out" msgstr "ログアウト" -msgid "Your attributes" -msgstr "属性" +msgid "Logging out of the following services:" +msgstr "以下のサービスからログアウトしました:" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "セッションは今から %remaining% 秒間有効です" +msgid "Logging out..." +msgstr "ログアウト中…" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "認証を行いたいアイデンティティプロバイダを選択してください:" +msgid "Login" +msgstr "ログイン" -msgid "Remember my choice" -msgstr "選択を記憶する" +msgid "Login at" +msgstr "ログイン: " -msgid "Select" -msgstr "選択" +msgid "Logout" +msgstr "ログアウト" -msgid "Select your identity provider" -msgstr "アイデンティティプロバイダを選択してください" +msgid "Logout failed" +msgstr "ログアウトに失敗しました" -msgid "Sending message" -msgstr "メッセージを送信中" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "ログアウト情報を失いました" -msgid "Yes, continue" -msgstr "はい、続けます" +msgid "Mail" +msgstr "メールアドレス" -msgid "Debug information" -msgstr "デバッグ情報" +msgid "Manager" +msgstr "管理者" -msgid "E-mail address:" -msgstr "Eメールアドレス:" +msgid "Message" +msgstr "メッセージ" -msgid "Explain what you did when this error occurred..." -msgstr "何をした際にこのエラーが発生したかを教えてください。" +msgid "Metadata" +msgstr "メタデータ" -msgid "How to get help" -msgstr "困ったときには" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "メタデータが見つかりません" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "このエラーを報告する場合、システム管理者がログからあなたのセッションを特定するために、トラッキング番号を報告してください。" +msgid "Metadata overview" +msgstr "メタデータの概要" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "任意ですがメールアドレスを入力してください、管理者があなたへ問題についての追加質問を行うために使用します。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "エラーをレポート" +msgid "Mobile" +msgstr "携帯電話" -msgid "Send error report" -msgstr "エラーレポートを送信" +msgid "Next" +msgstr "次へ" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "システム管理者やヘルプデスクは以下のデバッグ情報が役立つかもしれません:" +msgid "Nickname" +msgstr "ニックネーム" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "このエラーは恐らく未知の問題、またはSimpleSAMLphpの設定ミスです。ログインサービスの管理者に上記のエラーメッセージを連絡して下さい。" +msgid "No" +msgstr "いいえ" -msgid "[Preferred choice]" -msgstr "[推奨する選択]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "RelayStateがありません" -msgid "Person's principal name at home organization" -msgstr "永続的利用者名" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "SAMLメッセージがありません" -msgid "Superfluous options in config file" -msgstr "設定ファイルに不適切なオプションがあります" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "携帯電話" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "SAMLレスポンスがありません" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3サービスプロバイダ(ホスト)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "アクセスがありません" -msgid "Display name" -msgstr "表示名" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "証明書がありません" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SPメタデータ" +msgid "No errors found." +msgstr "エラーは見つかりませんでした。" + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "いいえ" + +msgid "No, only %SP%" +msgstr "いいえ、%SP% のみログアウトします" msgid "Notices" msgstr "お知らせ" -msgid "Home telephone" -msgstr "電話番号" +msgid "On hold" +msgstr "保留" + +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "ここは SimpleSAMLphp が生成したメタデータがあります。あなたは信頼するパートナーにこのメタデータを送信し信頼された連携を構築出来ます。" + +msgid "Optional fields" +msgstr "任意項目" + +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "任意ですがメールアドレスを入力してください、管理者があなたへ問題についての追加質問を行うために使用します。" -msgid "Service Provider" -msgstr "サービスプロバイダ" +msgid "Options missing from config file" +msgstr "設定ファイルにオプションがありません" -msgid "Incorrect username or password." -msgstr "ユーザー名かパスワードが間違っています。" +msgid "Organization" +msgstr "組織" -msgid "Submit message" -msgstr "メッセージを送信" +msgid "Organization name" +msgstr "所属組織" -msgid "Locality" -msgstr "地域" +msgid "Organization's legal name" +msgstr "組織の正式名称" -msgid "The following required fields was not found" -msgstr "以下の必須項目は見つかりませんでした" +msgid "Organizational homepage" +msgstr "組織のホームページ" msgid "Organizational number" msgstr "組織番号" -msgid "Post office box" -msgstr "オフィスボックスポスト" +msgid "Organizational unit" +msgstr "組織単位" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "サービスはあなた自身の認証を要求しています。以下のフォームにユーザー名とパスワードを入力してください。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "ページが見つかりません" -msgid "Error" -msgstr "エラー" +msgid "Parse" +msgstr "パース" -msgid "Next" -msgstr "次へ" +msgid "Password" +msgstr "パスワード" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "組織単位識別名" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "パスワードが設定されていません" -msgid "Converted metadata" -msgstr "変換されたメタデータ" +msgid "Persistent pseudonymous ID" +msgstr "永続的匿名ID" -msgid "Mail" -msgstr "メールアドレス" +msgid "Person's principal name at home organization" +msgstr "永続的利用者名" -msgid "No, cancel" -msgstr "いいえ" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "認証を行いたいアイデンティティプロバイダを選択してください:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "あなたは %HOMEORG% を組織として選択しました。これに問題がある場合は他のものを選ぶ事も可能です。" +msgid "Post office box" +msgstr "オフィスボックスポスト" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "主要組織単位識別名" +msgid "Postal address" +msgstr "住所" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "SAMLエンティティの詳細を確認するためには、SAMLエンティティヘッダをクリックして下さい。" +msgid "Postal code" +msgstr "郵便番号" -msgid "Enter your username and password" -msgstr "ユーザー名とパスワードを入力してください" +msgid "Preferred language" +msgstr "言語" -msgid "Login at" -msgstr "ログイン: " +msgid "Primary affiliation" +msgstr "主所属" -msgid "No" -msgstr "いいえ" +msgid "Private information elements" +msgstr "個人情報" -msgid "Home postal address" -msgstr "住所" +msgid "Remember" +msgstr "記憶する" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP デモ例" +msgid "Remember my choice" +msgstr "選択を記憶する" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0アイデンティティプロバイダ(リモート)" +msgid "Report errors" +msgstr "エラーをレポート" -msgid "Do you want to logout from all the services above?" -msgstr "上記の全てのサービスからログアウトしますか?" +msgid "Required fields" +msgstr "必須項目" -msgid "Given name" -msgstr "名" +msgid "Return to service" +msgstr "サービスへ戻る" -msgid "Identity assurance profile" -msgstr "識別子保証プロファイル" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0アイデンティティプロバイダ(ホスト)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0アイデンティティプロバイダ(リモート)" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP デモ例" -msgid "Organization name" -msgstr "所属組織" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "メッセージを送信します。続けるにはメッセージ送信ボタンを押してください。" +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SPメタデータ" -msgid "Home organization domain name" -msgstr "組織内ドメイン" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0サービスプロバイダ(ホスト)" -msgid "Go back to the file list" -msgstr "ファイルリストに戻る" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "エラー報告を送信" +msgid "Select" +msgstr "選択" -msgid "Common name" -msgstr "一般名" +msgid "Select configuration file to check:" +msgstr "確認する設定ファイルを選択:" -msgid "Logout failed" -msgstr "ログアウトに失敗しました" +msgid "Select your identity provider" +msgstr "アイデンティティプロバイダを選択してください" -msgid "Identity number assigned by public authorities" -msgstr "公開認証局によって割り当てられた識別番号" +msgid "Send e-mail to help desk" +msgstr "ヘルプデスクにメールする" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federationアイデンティティプロバイダ(リモート)" +msgid "Send error report" +msgstr "エラーレポートを送信" -msgid "Some error occurred" -msgstr "幾つかのエラーが発生しました" +msgid "Sending message" +msgstr "メッセージを送信中" -msgid "Organization" -msgstr "組織" +msgid "Service Provider" +msgstr "サービスプロバイダ" -msgid "Choose home organization" -msgstr "組織の選択" +msgid "Session size: %SIZE%" +msgstr "セッションサイズ: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "永続的匿名ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdPメタデータ" -msgid "No errors found." -msgstr "エラーは見つかりませんでした。" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3アイデンティティプロバイダ(ホスト)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0サービスプロバイダ(ホスト)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3アイデンティティプロバイダ(リモート)" -msgid "Required fields" -msgstr "必須項目" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SPメタデータ" -msgid "Domain component (DC)" -msgstr "ドメイン名" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3サービスプロバイダ(ホスト)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3サービスプロバイダ(リモート)" -msgid "Password" -msgstr "パスワード" - -msgid "Nickname" -msgstr "ニックネーム" - -msgid "The error report has been sent to the administrators." -msgstr "このエラーは管理者に送信されました。" - -msgid "Date of birth" -msgstr "生年月日" - -msgid "Private information elements" -msgstr "個人情報" - -msgid "You are also logged in on these services:" -msgstr "あなたはまだこれらのサービスにログインしています:" +msgid "Shibboleth demo" +msgstr "Shibboleth デモ" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp 診断" -msgid "No, only %SP%" -msgstr "いいえ、%SP% のみログアウトします" - -msgid "Username" -msgstr "ユーザー名" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphpの設定にミスがあるようです。" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "SimpleSAMLphpの設定ページに戻る" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphpエラー" -msgid "You have successfully logged out from all services listed above." -msgstr "上記の全てのサービスからログアウトしました。" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "あなたは %SP% からのログアウトに成功しました。" +msgid "Some error occurred" +msgstr "幾つかのエラーが発生しました" -msgid "Affiliation" -msgstr "所属" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "状態情報を失いました" -msgid "You have been logged out." -msgstr "ログアウトしました。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "状態情報を失い、リクエストを再開出来ません" -msgid "Return to service" -msgstr "サービスへ戻る" +msgid "Street" +msgstr "番地" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federationサービスプロバイダ(ホスト)" +msgid "Submit message" +msgstr "メッセージを送信" -msgid "Preferred language" -msgstr "言語" +msgid "Superfluous options in config file" +msgstr "設定ファイルに不適切なオプションがあります" msgid "Surname" msgstr "姓" -msgid "The following fields was not recognized" -msgstr "以下の項目は認識されませんでした" +msgid "Telephone number" +msgstr "電話番号" -msgid "User ID" -msgstr "ユーザーID" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "アイデンティティプロバイダがエラーを受けとりました。(SAMLレスポンスに失敗したステータスコード)" -msgid "JPEG Photo" -msgstr "JPEG写真" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "認証はユーザーによって中断されました" -msgid "Postal address" -msgstr "住所" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "システム管理者やヘルプデスクは以下のデバッグ情報が役立つかもしれません:" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "SAML 2.0 用のメタデータXMLフォーマット:" +msgid "The error report has been sent to the administrators." +msgstr "このエラーは管理者に送信されました。" -msgid "Logging out of the following services:" -msgstr "以下のサービスからログアウトしました:" +msgid "The following fields was not recognized" +msgstr "以下の項目は認識されませんでした" -msgid "Labeled URI" -msgstr "URI" +msgid "The following optional fields was not found" +msgstr "以下の任意項目は見つかりませんでした" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3アイデンティティプロバイダ(ホスト)" +msgid "The following required fields was not found" +msgstr "以下の必須項目は見つかりませんでした" -msgid "Metadata" -msgstr "メタデータ" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "与えられたページは見つかりませんでした。URLは: %URL%" -msgid "Login" -msgstr "ログイン" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "与えられたページは見つかりませんでした。理由は: %REASON% URLは: %URL%" -msgid "Yes, all services" -msgstr "はい、全てのサービスからログアウトします" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "ログアウト操作に関する情報が失われました。ログアウトしようとしていたサービスに戻り、再度ログアウトを行ってください。このエラーは、ログアウト情報の期限切れが原因で発生する可能性があります。ログアウト情報は、通常は数時間の限られた時間だけ保存されます。このエラーは、通常のログアウト操作にかかるよりも長いため、構成に関する他のエラーの可能性もあります。問題が解決しない場合は、サービスプロバイダにお問い合わせください。" -msgid "Logged out" -msgstr "ログアウト" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "リクエスト生成時にはRelayStateパラメーターを提供されませんでした。" -msgid "Postal code" -msgstr "郵便番号" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "サービスディスカバリに送信したパラメータが仕様に従っていません。" -msgid "Logging out..." -msgstr "ログアウト中…" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0アイデンティティプロバイダ(ホスト)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "設定のパスワード(auth.adminpassword)は既定値から変更されていません設定ファイルを編集してください。" -msgid "Primary affiliation" -msgstr "主所属" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "ページのリクエスト中にエラーが発生しました。理由は: %REASON%" -msgid "XML metadata" -msgstr "XMLメタデータ" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "SimpleSAMLphpの設定に誤りがありました。もしあなたがこのサービスの管理者であればメタデータ設定を正しくセットアップする必要があります。" -msgid "Telephone number" -msgstr "電話番号" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "このアイデンティティプロバイダはサービスプロバイダからの認証リクエストを受け付けましたが、リクエストの処理中にエラーが発生しました。" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "ログアウト出来ませんでした。確実にセッションを終了させるには、WEBブラウザを閉じるを行ってください。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "エンドポイントが有効ではありません。SimpleSAMLphpの設定でオプションを有効にしてください。" -msgid "Entitlement regarding the service" -msgstr "サービスに関する資格" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "このエラーは恐らく未知の問題、またはSimpleSAMLphpの設定ミスです。ログインサービスの管理者に上記のエラーメッセージを連絡して下さい。" -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SPメタデータ" +msgid "Title" +msgstr "タイトル" -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "このエラーを報告する場合、システム管理者がログからあなたのセッションを特定するために、トラッキング番号を報告してください。" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "SAMLエンティティの詳細を確認するためには、SAMLエンティティヘッダをクリックして下さい。" -msgid "Remember" -msgstr "記憶する" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "組織識別名" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "%ENTITYID% のメタデータが見つかりません" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "メッセージを送信します。続けるにはメッセージ送信リンクを押してください。" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "ログアウト出来ませんでした。確実にセッションを終了させるには、WEBブラウザを閉じるを行ってください。" -msgid "Organizational unit" -msgstr "組織単位" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "ローカル識別番号" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "未処理例外" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdPメタデータ" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "不正な証明書です" -msgid "Change your home organization" -msgstr "あなたの組織を変更してください" +msgid "User ID" +msgstr "ユーザーID" msgid "User's password hash" msgstr "パスワードハッシュ" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "SimpleSAMLphp のファイルフォーマット - もう一方でSimpleSAMLphpエンティティを使用する場合にこれを使用します:" - -msgid "Completed" -msgstr "完了しました" - -msgid "Select configuration file to check:" -msgstr "確認する設定ファイルを選択:" - -msgid "On hold" -msgstr "保留" +msgid "Username" +msgstr "ユーザー名" -msgid "Help! I don't remember my password." -msgstr "たすけて! パスワードを思い出せません。" +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP デモ例" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "あなたはSimpleSAMLphpのグローバル設定config/config.phpでデバックモードをオフに出来ます。" +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federationアイデンティティプロバイダ(リモート)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphpエラー" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federationサービスプロバイダ(ホスト)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "ここは SimpleSAMLphp が生成したメタデータがあります。あなたは信頼するパートナーにこのメタデータを送信し信頼された連携を構築出来ます。" +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "組織の正式名称" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "アイデンティティプロバイダから送信されたレスポンスを受け付けませんでした。" -msgid "Options missing from config file" -msgstr "設定ファイルにオプションがありません" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "アイデンティティプロバイダの認証レスポンスの生成時にエラーが発生しました。" -msgid "The following optional fields was not found" -msgstr "以下の任意項目は見つかりませんでした" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "ユーザー名とパスワードがないと、サービスにアクセスするための認証ができません。組織のヘルプデスクに相談してください。" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "このURLでメタデータのXMLを取得できます:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "番地" +msgid "XML metadata" +msgstr "XMLメタデータ" -msgid "Message" -msgstr "メッセージ" +msgid "Yes, all services" +msgstr "はい、全てのサービスからログアウトします" -msgid "Contact information:" -msgstr "連絡先:" +msgid "Yes, continue" +msgstr "はい、続けます" -msgid "Legal name" -msgstr "正式名称" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "任意項目" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Assertion Consumer Serviceインターフェースへアクセスしましたが、SAML認証レスポンスが提供されませんでした。" -msgid "You have previously chosen to authenticate at" -msgstr "前回選択した認証: " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "あなたはログインページで何かを送信しましたが、何らかの理由でパスワードが送信されませんでした。再度試してみてください。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "SingleLogoutServiceインターフェースへアクセスしましたが、SAML LogoutRequestやLogoutResponseが提供されませんでした。" -msgid "Fax number" -msgstr "FAX番号" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "メッセージを送信します。続けるにはメッセージ送信ボタンを押してください。" -msgid "Shibboleth demo" -msgstr "Shibboleth デモ" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "メッセージを送信します。続けるにはメッセージ送信リンクを押してください。" -msgid "Error in this metadata entry" -msgstr "このメタデータエントリでのエラー" +msgid "You are also logged in on these services:" +msgstr "あなたはまだこれらのサービスにログインしています:" -msgid "Session size: %SIZE%" -msgstr "セッションサイズ: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "あなたは今テスト環境へアクセスしています。この認証設定は検証のためのものです。もし誰かがこのリンクをあなたに送り、あなたがテスターでないのであれば恐らく間違ったリンクであり、ここに来てはいけないでしょう。" -msgid "Parse" -msgstr "パース" +msgid "You are now successfully logged out from %SP%." +msgstr "あなたは %SP% からのログアウトに成功しました。" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "ユーザー名とパスワードがないと、サービスにアクセスするための認証ができません。組織のヘルプデスクに相談してください。" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "このURLでメタデータのXMLを取得できます:" -msgid "Choose your home organization" -msgstr "あなたの組織を選択してください" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "あなたはSimpleSAMLphpのグローバル設定config/config.phpでデバックモードをオフに出来ます。" -msgid "Send e-mail to help desk" -msgstr "ヘルプデスクにメールする" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "正当な証明書が提示されませんでした。" -msgid "Metadata overview" -msgstr "メタデータの概要" +msgid "You have been logged out." +msgstr "ログアウトしました。" -msgid "Title" -msgstr "タイトル" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "あなたは %HOMEORG% を組織として選択しました。これに問題がある場合は他のものを選ぶ事も可能です。" -msgid "Manager" -msgstr "管理者" +msgid "You have previously chosen to authenticate at" +msgstr "前回選択した認証: " -msgid "Affiliation at home organization" -msgstr "組織内職種" +msgid "You have successfully logged out from all services listed above." +msgstr "上記の全てのサービスからログアウトしました。" -msgid "Help desk homepage" -msgstr "ヘルプデスクページ" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "あなたはログインページで何かを送信しましたが、何らかの理由でパスワードが送信されませんでした。再度試してみてください。" -msgid "Configuration check" -msgstr "設定確認" +msgid "Your attributes" +msgstr "属性" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3アイデンティティプロバイダ(リモート)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "SimpleSAMLphpが生成したメタデータです。このメタデータドキュメントを信頼できるパートナーに送信して、信頼できる連携を設定できます。" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "セッションは今から %remaining% 秒間有効です" -msgid "Organizational homepage" -msgstr "組織のホームページ" +msgid "[Preferred choice]" +msgstr "[推奨する選択]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "あなたは今テスト環境へアクセスしています。この認証設定は検証のためのものです。もし誰かがこのリンクをあなたに送り、あなたがテスターでないのであれば恐らく間違ったリンクであり、ここに来てはいけないでしょう。" +msgid "not set" +msgstr "" diff --git a/locales/lb/LC_MESSAGES/messages.po b/locales/lb/LC_MESSAGES/messages.po index 6eda3431f1..9872c2991a 100644 --- a/locales/lb/LC_MESSAGES/messages.po +++ b/locales/lb/LC_MESSAGES/messages.po @@ -1,332 +1,555 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: lb\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Keng SAML Aentwert ungin" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Keen SAML message unginn" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "E Service huet ugefrot Iech ze authentifizéieren. Dat heescht Dir musst Äre Benotzernumm an d'Passwuert an de Formulairen heidrënner aginn." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Zesummenschloss" + +msgid "Affiliation at home organization" +msgstr "Gruppen Zougehéiregkeet" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Beim Erstellen vun der SAML Ufro ass e Feeler geschitt." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "E Feeler ass geschitt beim Beaarbechte vun der Logout Ufro" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Eng onerwaart Exceptioun ass opgetrueden " + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "D'Authentifikatioun gouf ofgebrach" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Authentifikatiounsfeeler an der Source %AUTHSOURCE%. De Grond war: %REASON% " + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "D'Authentifikatioun ass feelgeschloen: Den Zertifikat deen Äre Browser geschéckt huet ass ongülteg oder kann net gelies ginn" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "D'Authentifikatioun ass feelgeschloen: Den Zertifikat deen Äre Browser geschéckt huet ass onbekannt" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "D'Authentifikatioun ass feelgeschloen: Äre Browser huet keen Zertifikat geschéckt" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 +msgid "Authentication source error" +msgstr "D'Authentifikatioun Source Feeler" + +msgid "Authentication status" +msgstr "Authentifikatiouns-Status" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 +msgid "Bad request received" +msgstr "Schlecht Ufro kritt" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Falsch Ufro fir den Discovery Service" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" -msgstr "CAS Fehler" +msgstr "CAS Feeler" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "Kann d'Sessiouns Daten net ofruffen" + +msgid "Common name" +msgstr "Allgemengen Numm" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" -msgstr "Konfiguratiounsfehler" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Fehler beim Erstellen vun der Unfro" +msgstr "Konfiguratiounsfeeler" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Falsch Unfro fir den Discovery Service" +msgid "Copy to clipboard" +msgstr "An den Tëschespäicher kopéieren" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" -msgstr "Et wor net méiglech eng Authenticatiounsaentwert ze erstellen" +msgstr "Et wor net méiglech eng Authentifikatiouns-Äntwert ze erstellen" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Ongültegen Zertifikat" +msgid "Date of birth" +msgstr "Gebuertsdag" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP Fehler" +msgid "Debug information" +msgstr "Debug Informatiounen" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Fehler beim Bearbeschten vun der Logout Unfro" +msgid "Debug information to be used by your support staff" +msgstr "Debug Informatiounen déi vun eisem Support genotzt ginn" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Fehler beim Lueden vun den Meta Données" +msgid "Display name" +msgstr "Ugewisenen Numm" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Keen Zougrëff" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Distinguished name (DN) of person's home organization" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Den ReplayState Parameter fehlt" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Distinguished name (DN) of the person's home organizational unit" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Passwuert net angin" +msgid "Domain component (DC)" +msgstr "Domain Komponent" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Fehler beim Bearbeschten vun de Aentwert vum IdP" +msgid "E-mail address:" +msgstr "E-mail Adress" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 -msgid "Error processing request from Service Provider" -msgstr "Fehler beim Bearbeschten vun der Unfro vum Service Provider" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Entweder gouf kee Benotzer mat dem Numm fonnt, oder d'Passwuert dat dir uginn hutt ass falsch. Kontrolléiert w.e.g.  de Benotzer a probéiert nach eng Kéiere" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Der hud den Assertion Consumer Sercice Interface accédéiert mais keng SAML Authentication Aentwert unginn" +msgid "Enter your username and password" +msgstr "Gitt w.e.g Ären Benotzernumm an d'Passwuert an" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Fehler beim Kommunizeiren mam CAS Server" +msgid "Entitlement regarding the service" +msgstr "Berechtegung" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp schéint falsch konfiguréiert ze sin." +msgid "Error" +msgstr "Feeler" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Beim Erstellen vun der SAML Unfro as en Fehler geschitt." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Feeler beim Erstellen vun der Ufro" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "D'Parameter fir den Disovery Service woren net korrekt par rapport zur Specifikatioun" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Feeler beim Luede vun de Meta Donnéeë" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Beim Erstellen vun der Authenticatiounsaentwert as en Fehler passéiert" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Error processing request from Service Provider" +msgstr "Feeler beim Beaarbechte vun der Ufro vum Service Provider" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP as eng Benotzerdatenbank an wann een anloggen well gët se kontaktéiert. Dobai as des Kéier een Fehler geschitt." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Feeler beim Beaarbechte vun de Äntwert vum IdP" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "En Fehler as geschit beim Bearbeschten vun der Logout Unfro" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Feeler beim Beaarbechte vun der Logout Ufro" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Des SimpleSAMLphp Installatioun schéint falsch konfiguréiert ze sin. Wann dir den Administrator vun dësem Service sid, dann stellt sëcher dass d Meta Données richteg angeriicht sin." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 +msgid "Error received from Identity Provider" +msgstr "Feeler vum Identity Provider kritt" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Dësen Punkt as net aktivéiert. Verifizéiert d Optiounen an der SimpleSAMLphp Konfiguratioun." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Feeler beim Kommunizéiere mam CAS Server" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Den Initiator vun der Unfro huet ken ReplayState Parameter matgeschekt." +msgid "Explain what you did when this error occurred..." +msgstr "Erkläert w.e.g genau wat Dir gemaacht hutt fir de Feeler auszeléisen..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "D'Passwuert an der Konfiguration (auth.adminpassword) as bis elo net geännertgin. W.e.g aennert daat an der Konfiguratioun." +msgid "Fax number" +msgstr "Fax Nummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Dir hud keen gültegen Zertifikat" +msgid "Format" +msgstr "Format" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Mer konnten d Aentwert vum Identity Provider net akzeptéiren" +msgid "Given name" +msgstr "Familljennumm" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Dësen IdP kruut eng Authenticatiounsunfro vun engem Service provider, mais et gouf en Fehler wéi déi sollt bearbescht gin." +msgid "Hello, Untranslated World!" +msgstr "Hallo, net iwwersate Welt" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Der hud den SingleLogoutService accédéiert mais ken SAML LogoutRequest oder LogoutResponse unginn." +msgid "Help! I don't remember my password." +msgstr "Hëllef! Ech hu mäi Passwuert vergiess!" -msgid "Yes, continue" -msgstr "Jo" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Hallo, dëst ass d'Status Säit vu SimpleSAMLphp. Hei kënnt Dir kucken op Är Sessioun ausgelaf ass, wéi laang se gülteg ass, an all d'Attributer déi un Ärer Sessioun hänken." -msgid "Debug information" -msgstr "Debug Informatiounen" +msgid "Home organization domain name" +msgstr "Eendeiteg Heemorganisatiouns ID" -msgid "E-mail address:" -msgstr "E-mail Adress" +msgid "Home postal address" +msgstr "Adress" -msgid "Explain what you did when this error occurred..." -msgstr "Erklaert w.e.g genau waat dir gemaacht hud fir den Fehler auszeléisen..." +msgid "Home telephone" +msgstr "Haustelefon" msgid "How to get help" -msgstr "Wéi een Hellëf kritt" +msgstr "Wéi een Hëllef kritt" + +msgid "Identity number assigned by public authorities" +msgstr "Sozialversécherungsnummer" msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Wann dir ons dësen Fehler matdeelt, dann schéckt w.e.g och d Tracking ID mat. Dei ennerstëtzt den System Administrator aer Session an den Logs erëmzefannen:" +msgstr "Wann Dir ons dëse Feeler matdeelt, da schéckt w.e.g och d Tracking ID mat. Déi ënnerstëtzt de System Administrateur Är Sessioun an de Logs erëmzefannen:" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Optionnal kennt dir aer E-mail Adress angin, fir dass den Administrator aerch fir weider Froen kontaktéieren kann:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Falsche Benotzernumm oder Passwuert" -msgid "Report errors" -msgstr "Fehler matdeelen" +msgid "Incorrect username or password." +msgstr "Falsche Benotzernumm oder Passwuert" -msgid "Send error report" -msgstr "Fehlerbericht schécken" +msgid "Information about your current session" +msgstr "Informatiounen iwwer Är aktuell Sessioun" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Dei Debug Informatiounen hei drënner kinnten den Administrator interesséiren:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Ongültegen Zertifikat" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Dësen Fehler gouf wahrscheinlech duerch eng falsch Konfiguratioun vun SimpleSAMLphp ausgeléist. Kontaktéiert am beschten den Administrator vun dësem Login Service an schéckt him den Fehlerbericht" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -msgid "Person's principal name at home organization" -msgstr "Haaptnumm bei der Heemorganisatioun" +msgid "JPEG Photo" +msgstr "Foto am JPEG Format" -msgid "Mobile" -msgstr "GSM Nummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP Feeler" -msgid "Display name" -msgstr "Ugewisenen Numm" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP ass eng Benotzerdatenbank a wann een alogge well geet se kontaktéiert. Dobäi ass des Kéier ee Fehler geschitt." -msgid "Home telephone" -msgstr "Haustelefon" +msgid "Labeled URI" +msgstr "Beschrëften URI" -msgid "Service Provider" -msgstr "Service Provider" +msgid "Language" +msgstr "Sprooch" -msgid "Incorrect username or password." -msgstr "Falschen Benotzernumm oder Passwuert" +msgid "Local identity number" +msgstr "Identitéitsnummer" msgid "Locality" msgstr "Uertschaft" -msgid "Organizational number" -msgstr "Organisatiounsnummer" - -msgid "Post office box" -msgstr "Postschléissfach" - -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "En Service huet ungefrot aerch ze authentifizéiren. Daat heescht daer musst aeren Benotzernumm an d'Passwuert an de Formulairen heidrënner angin." +msgid "Login" +msgstr "Aloggen" -msgid "Error" -msgstr "Fehler" +msgid "Logout" +msgstr "Ausloggen" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Distinguished name (DN) of the person's home organizational unit" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Auslogg Informatioune verluer" msgid "Mail" msgstr "E-mail" -msgid "No, cancel" -msgstr "Nee" +msgid "Manager" +msgstr "Manager" -msgid "Enter your username and password" -msgstr "Gid w.e.g Aeren Benotzernumm an d Passwuert an" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadate net fonnt" -msgid "Home postal address" -msgstr "Adress" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Given name" -msgstr "Familliennumm" +msgid "Mobile" +msgstr "GSM Nummer" -msgid "Organization name" -msgstr "Organisatiounsnumm" +msgid "Nickname" +msgstr "Spëtznumm" -msgid "Home organization domain name" -msgstr "Eendeiteg Heemorganisatiouns ID" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "De ReplayState Parameter feelt" -msgid "Common name" -msgstr "Allgeméngen Numm" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Keen SAML Message uginn" -msgid "Identity number assigned by public authorities" -msgstr "Sozialversëcherungsnummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "Keng SAML Ufro ginn " + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Keng SAML Äntwert uginn" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Keen Zougrëff" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Keen Zertifikat" + +msgid "No identity providers found. Cannot continue." +msgstr "Kent Identity Provider fonnt. Ka net weiderfueren" + +msgid "No, cancel" +msgstr "Nee" + +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Optional kennt dir Är E-mail Adress aginn, fir dass den Administrateur Iech fir weider Froe kontaktéiere kann:" msgid "Organization" msgstr "Organisatioun" -msgid "Persistent pseudonymous ID" -msgstr "Persistent anonym ID" +msgid "Organization name" +msgstr "Organisatiounsnumm" -msgid "Domain component (DC)" -msgstr "Domain Komponent" +msgid "Organization's legal name" +msgstr "Numm vun der Organisatioun" -msgid "Password" -msgstr "Passwuert" +msgid "Organizational homepage" +msgstr "Organisatiouns Websäit" -msgid "Nickname" -msgstr "Spëtznumm" +msgid "Organizational number" +msgstr "Organisatiounsnummer" -msgid "Date of birth" -msgstr "Gebuertsdaag" +msgid "Organizational unit" +msgstr "Organisatiounseenheet" -msgid "Username" -msgstr "Benotzernumm" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Säit net fonnt" -msgid "Affiliation" -msgstr "Zesummenschloss" +msgid "Password" +msgstr "Passwuert" -msgid "Preferred language" -msgstr "Lieblingssprooch" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Passwuert net aginn" -msgid "Surname" -msgstr "Virnumm" +msgid "Persistent pseudonymous ID" +msgstr "Persistent anonym ID" -msgid "User ID" -msgstr "Benotzer ID" +msgid "Person's principal name at home organization" +msgstr "Haaptnumm bei der Heemorganisatioun" -msgid "JPEG Photo" -msgstr "Photo am JPEG Format" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Wielt w.e.g. den Identity Provider bei deem Dir Iech authentifizéiere wëllt:" + +msgid "Post office box" +msgstr "Postschléissfach" msgid "Postal address" msgstr "Adress" -msgid "Labeled URI" -msgstr "Beschrëfteten URI" - -msgid "Login" -msgstr "Login" - msgid "Postal code" msgstr "Postleitzuel" +msgid "Preferred language" +msgstr "Liblingssprooch" + msgid "Primary affiliation" msgstr "Haapt Zougehéiregkeet" -msgid "Telephone number" -msgstr "Telefonsnummer" - -msgid "Entitlement regarding the service" -msgstr "Berechtegung" - msgid "Remember" msgstr "Zoustëmmung verhalen" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Distinguished name (DN) of person's home organization" +msgid "Remember my choice" +msgstr "Verhal mäi Choix" -msgid "Organizational unit" -msgstr "Organisatiounseenheet" +msgid "Report errors" +msgstr "Feeler matdeelen" -msgid "Local identity number" -msgstr "Identitéitsnummer" +msgid "SAML Subject" +msgstr "SAML Sijet" -msgid "Help! I don't remember my password." -msgstr "Hellef! Ech hun mäin Passwuert vergiess!" +msgid "Select" +msgstr "Wielt" + +msgid "Select your identity provider" +msgstr "Wielt Ären Identity Provider" + +msgid "Send error report" +msgstr "Feelerbericht schécken" + +msgid "Sending message" +msgstr "Schéckt Message" + +msgid "Service Provider" +msgstr "Service Provider" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp schéint falsch konfiguréiert ze sinn." msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp Fehler" +msgstr "SimpleSAMLphp Feeler" -msgid "Organization's legal name" -msgstr "Numm vun der Organisatioun" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "Well Äre Browser kee Javascript ënnerstëtzt, musst Dir de Knäppchen hei drënner drécken" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Status Informatioune gounge verluer" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Status Informatioune gounge verluer an et ass net méiglech d'Ufro nei ze starten" msgid "Street" msgstr "Strooss" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Der hud eppes un d'Login Sait geschéeckt me aus iergentengem Grond huet d Passwuert gefehlt. Probéiert w.e.g nach eng Kéier." +msgid "Surname" +msgstr "Virnumm" -msgid "Fax number" -msgstr "Fax Nummer" +msgid "Telephone number" +msgstr "Telefonsnummer" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Den Identity Provider huet mat engem Feeler geäntwert. (De Status Code an der SAML Äntwert war keen Erfolleg)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "D'Authentifikatioun gouf vum Benotzer ofgebrach" + +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Déi Debug Informatiounen hei drënner kéinten den Administrateur interesséieren:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "D'ugi Säit gouf net fonnt. D'ULR war %URL%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "D'ugi Säit gouf net fonnt. De Grond war %REASON% D'ULR war %URL%" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Pesch gehaat! - Ouni aeren Benotzernumm an d'Passwuert kënn der aerch net authentifizéiren an op den Service zougraiffen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Den Initiator vun der Ufro huet kee ReplayState Parameter matgeschéckt." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "D'Parameter fir den Disovery Service waren net korrekt par Rapport zur Spezifikatioun" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "D'Passwuert an der Konfiguratioun (auth.adminpassword) ass bis elo net geännert ginn. W.e.g ännert dat an der Konfiguratioun." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Et gouf e Feeler an der Ufro op dës Säit. De Grond war %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Des SimpleSAMLphp Installatioun schéint falsch konfiguréiert ze sinn. Wann dir den Administrateur vun dësem Service sidd, da stellt sécher dass d Meta Donnéeë richteg ageriicht sinn." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Dësen IdP krut eng Authentifikatiounsufro vun engem Service Provider, mee et gouf e Feeler wéi déi sollt beaarbecht ginn." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Dëse Punkt ass net aktivéiert. Verifizéiert d Optiounen an der SimpleSAMLphp Konfiguratioun." + +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Dëse Feeler gouf warscheinlech duerch eng falsch Konfiguratioun vu SimpleSAMLphp ausgeléist. Kontaktéiert am beschten den Administrateur vun dësem Login Service a schéckt him de Feelerbericht" msgid "Title" msgstr "Zougehéiregkeet" -msgid "Manager" -msgstr "Manager" +msgid "Tracking number" +msgstr "Tracking Nummer" -msgid "Affiliation at home organization" -msgstr "Gruppen Zougehéiregket" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Net méiglech d'Metadate fir %ENTITYID% ze fannen" -msgid "Organizational homepage" -msgstr "Organisatiouns Websait" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Unerwaart Exceptioun" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Onbekannten Zertifikat" + +msgid "User ID" +msgstr "Benotzer ID" + +msgid "Username" +msgstr "Benotzernumm" + +msgid "Warning" +msgstr "Warnung" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Mer konnten d'Äntwert vum Identity Provider net akzeptéieren" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Beim Erstellen vun der Authentifikatiouns-Äntwert ass e Feeler passéiert" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help disk at your organization!" +msgstr "Ouni Äre Benotzernumm an d'Passwuert kënnt Dir Iech net authentifizéieren an op de Service zougräifen." + +msgid "World" +msgstr "Welt" + +msgid "Yes, continue" +msgstr "Jo" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Der hud den Assertion Consumer Sercice Interface accédéiert mais keng SAML Authentication Aentwert unginn" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Der hud den SingleLogoutService accédéiert mais ken SAML LogoutRequest oder LogoutResponse unginn." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Dir hutt kee gültegen Zertifikat" + +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Dir hutt eppes un d'Login Säit geschéckt mee aus iergendengem Grond huet d'Passwuert gefeelt. Probéiert w.e.g nach eng Kéier." + +msgid "Your attributes" +msgstr "Är Attributer" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "Är Sessioun konnt wéinst engem technesche Problem net opgeruff ginn. Probéiert w.e.g. an e puer Minutten nach eng Kéier" + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Är Sessioun ass valid fir %remaining% Sekonnen ab elo" + +msgid "not set" +msgstr "net gesat" diff --git a/locales/lt/LC_MESSAGES/messages.po b/locales/lt/LC_MESSAGES/messages.po index 3a87e5a8b0..69e53ef513 100644 --- a/locales/lt/LC_MESSAGES/messages.po +++ b/locales/lt/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Nepateiktas SAML atsakymas" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Nepateikta SAML žinutė" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Paslauga prašo autentikacijos. Žemiau įveskite savo prisijungimo vardą ir slaptažodį." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Pareigos" + +msgid "Affiliation at home organization" +msgstr "Sąsaja su organizacija" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Klaida kuriant SAML užklausą." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Klaida įvyko bandant įvykdyti atsijungimo užklausą." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Nežinoma klaida." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Įjungtas detalus naršymas, todėl matote siunčiamos žinutės turinį:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Autentikacija nutraukta" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Autentikacijos klaida %AUTHSOURCE% šaltinyje. Priežastis: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Autentikacija nepavyko: Jūsų naršyklės siųstas sertifikatas yra nevalidus arba negali būti perskaitytas" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Autentikacija nepavyko: Jūsų naršyklės siųstas sertifikatas yra nežinomas" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Autentikacija nepavyko: Jūsų naršyklė neišsiuntė jokio sertifikato" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Autentikacijos šaltinio klaida" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Gauta neteisinga užklausa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Neteisinga užklausa kreipiantis į \"discovery\" servisą" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS klaida" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Sertifikatai" + +msgid "Change your home organization" +msgstr "Pakeisti savo organizaciją" + +msgid "Choose home organization" +msgstr "Pasirinkite organizaciją" + +msgid "Choose your home organization" +msgstr "Pasirinkite savo organizaciją" + +msgid "Common name" +msgstr "Pilnas vardas" + +msgid "Completed" +msgstr "Atlikta" + +msgid "Configuration check" +msgstr "Konfigūracijos patikrinimas" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Konfigūracijos klaida" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Klaida kuriant užklausą" +msgid "Contact information:" +msgstr "Kontaktai:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Neteisinga užklausa kreipiantis į \"discovery\" servisą" +msgid "Converted metadata" +msgstr "Sukonvertuoti metaduomenys" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Nepavyko sukurti autentikacijos atsakymo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Neteisingas sertifikatas" +msgid "Date of birth" +msgstr "Gimimo data" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP klaida" +msgid "Debug information" +msgstr "Detali informacija" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Atsijungimo informacija prarasta" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Klaida vykdant atsijungimo užklausą" +msgid "Display name" +msgstr "Rodomas vardas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Klaida siunčiant metaduomenis" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Asmens organizacijos atpažinimo vardas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metaduomenys nerasti" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Asmens pirminio organizacijos skyriaus atpažinimo vardas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Prieigos nėra" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Asmens organizacijos skyriaus atpažinimo vardas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Nėra sertifikato" +msgid "Do you want to logout from all the services above?" +msgstr "Ar norite atsijungti nuo visų žemiau išvardintų paslaugų?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Nėra perdavimo statuso" +msgid "Domain component (DC)" +msgstr "Domeno komponentas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Būsenos informacija prarasta" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Parsisiųsti X509 sertifikatus kaip PEM koduotės failus." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Puslapis nerastas" +msgid "E-mail address:" +msgstr "El. pašto adresas:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Nepateiktas slaptažodis" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Naudotojas su tokiu prisijungimo vardu nerastas, arba neteisingai įvedėte slaptažodį. Pasitikrinkite prisijungimo vardą ir bandykite dar kartą." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Klaida apdorojant užklausą iš tapatybių teikėjo" +msgid "Enter your username and password" +msgstr "Įveskite savo prisijungimo vardą ir slaptažodį" + +msgid "Entitlement regarding the service" +msgstr "Teisės susiję su paslauga" + +msgid "Error" +msgstr "Klaida" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Klaida kuriant užklausą" + +msgid "Error in this metadata entry" +msgstr "Klaida šiame metaduomenų įraše" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Klaida siunčiant metaduomenis" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Klaida siunčiant užklausą iš paslaugų teikėjo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Klaida apdorojant užklausą iš tapatybių teikėjo" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Klaida vykdant atsijungimo užklausą" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Gautas klaidos pranešimas iš tapatybių teikėjo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Nežinoma klaida" +msgid "Error report sent" +msgstr "Pranešimas apie klaidą išsiųstas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Nežinomas sertifikatas" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Klaida bandant jungtis prie CAS serverio." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Autentikacija nutraukta" +msgid "Explain what you did when this error occurred..." +msgstr "Aprašykite kokius veiksmus atlikote, kuomet pasirodė ši klaida..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Neteisingas prisijungimo vardas arba slaptažodis" +msgid "Fax number" +msgstr "Fakso numeris" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Jūs pasiekėte vartotojų aptarnavimo servisą, tačiau nepateikėte SAML autentikacijos atsakymo." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Autentikacijos klaida %AUTHSOURCE% šaltinyje. Priežastis: %REASON%" +msgid "Given name" +msgstr "Vardas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Užklausoje į šį puslapį rasta klaida. Priežastis buvo: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Grįžti atgal į SimpleSAMLphp diegimo puslapį" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Klaida bandant jungtis prie CAS serverio." +msgid "Go back to the file list" +msgstr "Grįžti į failų sąrašą" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp tikriausiai klaidingai sukonfigūruotas." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Klaida kuriant SAML užklausą." +msgid "Help desk homepage" +msgstr "Naudotojų aptarnavimo puslapis" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Parametrai, nusiųsti \"discovery\" servisui neatitiko specifikacijų." +msgid "Help! I don't remember my password." +msgstr "Pagalbos! Nepamenu savo slaptažodžio." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Šiam tapatybių teikėjui bandant sukurti autentikacijos atsakymą įvyko klaida." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Metaduomenys, kuriuos Jums sugeneravo SimpleSAMLphp. Norint įsteigti patikimą federaciją, galite patikimiems partneriams išsiųsti šiuos metaduomenis." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Autentikacija nepavyko: Jūsų naršyklės siųstas sertifikatas yra nevalidus arba negali būti perskaitytas" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Sveikia, čia SimpleSAMLphp būsenos tinklapis. Čia galite pamatyti, ar Jūsų sesija turi laiko apribojimą, kiek trunka tas laiko apribojimas bei kitus Jūsų sesijai priskirtus atributus." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP yra naudotojų duomenų bazė. Jums jungiantis, mums reikalinga prie jos prisijungti. Bandant tai padaryti įvyko klaida." +msgid "Home organization domain name" +msgstr "Organizacijos domenas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Informacija apie atsijungimo operaciją prarasta. Jūs turėtumėte sugrįžti į tą paslaugą, iš kurios bandėte atsijungti ir pabandyti atlikti tai dar kartą. Ši klaida galėjo būti sukelta, nes baigėsi atsijungimo informacijos galiojimo laikas. Informacija apie atsijungimą yra saugoma ribotą laiko tarpą - dažniausiai kelias valandas. Tai yra daugiau nei bet kokia normali atsijungimo informacija gali užtrukti, taigi ši klaida gali būti sukelta kitos klaidos, kuri įvyko dėl konfigūracijos. Jei problema tęsiasi, susisiekite su savo paslaugos teikėju." +msgid "Home postal address" +msgstr "Namų adresas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Klaida įvyko bandant įvykdyti atsijungimo užklausą." +msgid "Home telephone" +msgstr "Namų telefo nr." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Rastos Jūsų SimpleSAMLphp konfigūravimo klaidos. Jei Jūs esate šios sistemos administratorius, turėtumėte patikrinti, ar teisingai nustatyti metaduomenys." +msgid "How to get help" +msgstr "Kaip pasiekti pagalbą" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Nepavyko rasti objekto %ENTITYID% metaduomenų" +msgid "Identity assurance profile" +msgstr "Tapatybės tikrumo profilis" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Baigties taškas neįjungtas. Patikrinkite savo SimpleSAMLphp konfigūraciją." +msgid "Identity number assigned by public authorities" +msgstr "Valstybės institucijų priskirtas tapatybės numeris" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Autentikacija nepavyko: Jūsų naršyklė neišsiuntė jokio sertifikato" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Jei pranešate apie šią klaidą, neužmirškite pateikti šios klaidos ID, kurio dėka sistemos administratorius galės surasti Jūsų sesijos metu atliktus veiksmus atliktų veiksmų istorijoje:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Šios užklausos iniciatorius nepateikė perdavimo statuso parametro, kuris nusako kur toliau kreiptis." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "SAML 2.0 Metaduomenys XML formatu:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Būsenos informacija prarasta, nėra galimybių pakartoti užklausą" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "SimpleSAMLphp paprasto failo formatas - naudokite jį, jei naudojate SimpleSAMLphp kitoje esybėje:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Šis puslapis nerastas. Puslapio adresas buvo: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Neteisingas prisijungimo vardas arba slaptažodis" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Šis puslapis nerastas. Priežastis buvo: %REASON% Puslapio adresas buvo: %URL%" +msgid "Incorrect username or password." +msgstr "Neteisingas prisijungimo vardas arba slaptažodis." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Konfigūracijoje esantis slaptažodis (auth.adminpassword) nepakeistas iš pradinės reikšmės. Prašome pakeisti konfigūracijos failą." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Jūs nepateikėte teisingo sertifikato." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Neteisingas sertifikatas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Mes nepriimame užklausos, siųstos iš tapatybių teikėjo." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Šis tapatybių tiekėjas gavo autentikacijos prašymo užklausą iš paslaugos teikėjo, tačiau apdorojant pranešimą įvyko klaida." +msgid "JPEG Photo" +msgstr "JPEG nuotrauka" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Tapatybių teikėjas atsakė klaidos pranešimu. (Statuso kodas SAML atsakyme buvo nesėkmingas)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP klaida" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Jūs pasiekėte SingleLogoutService paslaugą, tačiau nepateikėte SAML LogoutRequest ar LogoutResponse užklausų." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP yra naudotojų duomenų bazė. Jums jungiantis, mums reikalinga prie jos prisijungti. Bandant tai padaryti įvyko klaida." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Nežinoma klaida." +msgid "Labeled URI" +msgstr "Žymėtasis URI" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Autentikacija nepavyko: Jūsų naršyklės siųstas sertifikatas yra nežinomas" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Autentikacija nutraukė naudotojas" +msgid "Legal name" +msgstr "Juridinis vardas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Naudotojas su tokiu prisijungimo vardu nerastas, arba neteisingai įvedėte slaptažodį. Pasitikrinkite prisijungimo vardą ir bandykite dar kartą." +msgid "Local identity number" +msgstr "Vietinis tapatybės numeris" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Sveikia, čia SimpleSAMLphp būsenos tinklapis. Čia galite pamatyti, ar Jūsų sesija turi laiko apribojimą, kiek trunka tas laiko apribojimas bei kitus Jūsų sesijai priskirtus atributus." +msgid "Locality" +msgstr "Vietovė" -msgid "Logout" -msgstr "Atsijungti" +msgid "Logged out" +msgstr "Atsijungta" -msgid "Your attributes" -msgstr "Jūsų atributai" +msgid "Logging out of the following services:" +msgstr "Vyksta atjungimas nuo šių paslaugų:" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Jūsų sesija galioja %remaining% sekundžių, skaičiuojant nuo šio momento." +msgid "Logging out..." +msgstr "Atjungiama..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Prašome pasirinkite tapatybių tiekėją, kuriame norite autentikuotis:" +msgid "Login" +msgstr "Prisijungti" -msgid "Remember my choice" -msgstr "Prisiminti pasirinkimą" +msgid "Login at" +msgstr "Prisijungti prie" -msgid "Select" -msgstr "Pasirinkite" +msgid "Logout" +msgstr "Atsijungti" -msgid "Select your identity provider" -msgstr "Pasirinkite savo tapatybių tiekėją" +msgid "Logout failed" +msgstr "Atsijungimas nepavyko" -msgid "Sending message" -msgstr "Siunčiamas pranešimas" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Atsijungimo informacija prarasta" -msgid "Yes, continue" -msgstr "Taip, tęsti" +msgid "Mail" +msgstr "El.paštas" -msgid "Debug information" -msgstr "Detali informacija" +msgid "Manager" +msgstr "Vadovas" -msgid "E-mail address:" -msgstr "El. pašto adresas:" +msgid "Message" +msgstr "Pranešimas" -msgid "Explain what you did when this error occurred..." -msgstr "Aprašykite kokius veiksmus atlikote, kuomet pasirodė ši klaida..." +msgid "Metadata" +msgstr "Metaduomenys" -msgid "How to get help" -msgstr "Kaip pasiekti pagalbą" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metaduomenys nerasti" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Jei pranešate apie šią klaidą, neužmirškite pateikti šios klaidos ID, kurio dėka sistemos administratorius galės surasti Jūsų sesijos metu atliktus veiksmus atliktų veiksmų istorijoje:" +msgid "Metadata overview" +msgstr "Metaduomenų peržiūra" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Jei pageidaujate, kad administratorius su Jumis susisiektų, įveskite savo el. pašto adresą:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "Pranešti apie klaidas" +msgid "Mobile" +msgstr "Mobiliojo numeris" -msgid "Send error report" -msgstr "Siųsti pranešimą apie klaidą" +msgid "Next" +msgstr "Kitas" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Ši detali informacija gali būti įdomi administratoriui:" +msgid "Nickname" +msgstr "Slapyvardis" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Ši klaida tikriausiai susijusi dėl SimpleSAMLphp neteisingo sukonfigūravimo. Susisiekite su šios sistemos administratoriumi ir nusiųskite žemiau rodomą klaidos pranešimą." +msgid "No" +msgstr "Ne" -msgid "[Preferred choice]" -msgstr "[Rekomenduojame]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Nėra perdavimo statuso" -msgid "Person's principal name at home organization" -msgstr "Asmens pagrindinis vardas organizacijoje" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Nepateikta SAML žinutė" -msgid "Superfluous options in config file" -msgstr "Pertekliniai parametrai konfigūraciniame faile" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "Mobiliojo numeris" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Nepateiktas SAML atsakymas" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Paslaugos teikėjas (vietinis)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Prieigos nėra" -msgid "Display name" -msgstr "Rodomas vardas" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Nėra sertifikato" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP Metaduomenys" +msgid "No errors found." +msgstr "Klaidų nerasta." + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Ne" + +msgid "No, only %SP%" +msgstr "Ne, tik %SP%" msgid "Notices" msgstr "Pranešimai" -msgid "Home telephone" -msgstr "Namų telefo nr." +msgid "On hold" +msgstr "Prašome palaukti" -msgid "Service Provider" -msgstr "Paslaugos teikėjas" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Viena ar daugiau paslaugų, prie kurių esate prisijungęs nepalaiko atsijungimo. Siekiant užtikrinti sėkmingą darbo pabaigą, rekomenduojame uždaryti naršyklę." + +msgid "Optional fields" +msgstr "Neprivalomi laukai" -msgid "Incorrect username or password." -msgstr "Neteisingas prisijungimo vardas arba slaptažodis." +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Jei pageidaujate, kad administratorius su Jumis susisiektų, įveskite savo el. pašto adresą:" -msgid "Submit message" -msgstr "Patvirtinti pranešimą" +msgid "Options missing from config file" +msgstr "Trūkstami parametrai konfigūraciniame faile" -msgid "Locality" -msgstr "Vietovė" +msgid "Organization" +msgstr "Organizacija" -msgid "The following required fields was not found" -msgstr "Šie privalomi laukai nerasti" +msgid "Organization name" +msgstr "Organizacijos pavadinimas" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Parsisiųsti X509 sertifikatus kaip PEM koduotės failus." +msgid "Organization's legal name" +msgstr "Organizacijos juridinis pavadinimas" + +msgid "Organizational homepage" +msgstr "Organizacijos svetainė" msgid "Organizational number" msgstr "Organizacijos numeris" -msgid "Post office box" -msgstr "Pašto dėžutės nr." +msgid "Organizational unit" +msgstr "Organizacijos skyrius" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Paslauga prašo autentikacijos. Žemiau įveskite savo prisijungimo vardą ir slaptažodį." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Puslapis nerastas" -msgid "Error" -msgstr "Klaida" +msgid "Parse" +msgstr "Nagrinėti" -msgid "Next" -msgstr "Kitas" +msgid "Password" +msgstr "Slaptažodis" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Asmens organizacijos skyriaus atpažinimo vardas" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Nepateiktas slaptažodis" -msgid "Converted metadata" -msgstr "Sukonvertuoti metaduomenys" +msgid "Persistent pseudonymous ID" +msgstr "Nuolatinio pseudonimo ID" -msgid "Mail" -msgstr "El.paštas" +msgid "Person's principal name at home organization" +msgstr "Asmens pagrindinis vardas organizacijoje" -msgid "No, cancel" -msgstr "Ne" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Prašome pasirinkite tapatybių tiekėją, kuriame norite autentikuotis:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Jūs savo namų organizacija pasirinkote %HOMEORG%. Jei tai yra neteisingas pasirinkimas, galite pasirinkti kitą." +msgid "Post office box" +msgstr "Pašto dėžutės nr." -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Asmens pirminio organizacijos skyriaus atpažinimo vardas" +msgid "Postal address" +msgstr "Adresas" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Norėdami peržiūrėti detalesnę informaciją apie SAML, paspauskite ant SAML antraštės." +msgid "Postal code" +msgstr "Pašto kodas" -msgid "Enter your username and password" -msgstr "Įveskite savo prisijungimo vardą ir slaptažodį" +msgid "Preferred language" +msgstr "Kalba" -msgid "Login at" -msgstr "Prisijungti prie" +msgid "Primary affiliation" +msgstr "Pirminė sąsaja" -msgid "No" -msgstr "Ne" +msgid "Private information elements" +msgstr "Privačios informacijos elementai" -msgid "Home postal address" -msgstr "Namų adresas" +msgid "Remember" +msgstr "Įsiminti" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP Demonstracinės versijos Pavyzdys" +msgid "Remember my choice" +msgstr "Prisiminti pasirinkimą" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 Tapatybių teikėjas (nutolęs)" +msgid "Report errors" +msgstr "Pranešti apie klaidas" -msgid "Do you want to logout from all the services above?" -msgstr "Ar norite atsijungti nuo visų žemiau išvardintų paslaugų?" +msgid "Required fields" +msgstr "Privalomi laukai" -msgid "Given name" -msgstr "Vardas" +msgid "Return to service" +msgstr "Grįžti į paslaugą" -msgid "Identity assurance profile" -msgstr "Tapatybės tikrumo profilis" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Tapatybių teikėjas (vietinis)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 Tapatybių teikėjas (nutolęs)" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP Demonstracinės versijos Pavyzdys" -msgid "Organization name" -msgstr "Organizacijos pavadinimas" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Jūsų pranešimas siunčiamas. Norėdami tęsti, paspauskite pranešimo patvirtinimo mygtuką." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP Metaduomenys" -msgid "Home organization domain name" -msgstr "Organizacijos domenas" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Paslaugos teikėjas (vietinis)" -msgid "Go back to the file list" -msgstr "Grįžti į failų sąrašą" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Pranešimas apie klaidą išsiųstas" +msgid "Select" +msgstr "Pasirinkite" -msgid "Common name" -msgstr "Pilnas vardas" +msgid "Select configuration file to check:" +msgstr "Tikrinti konfigūracijos failą:" -msgid "Logout failed" -msgstr "Atsijungimas nepavyko" +msgid "Select your identity provider" +msgstr "Pasirinkite savo tapatybių tiekėją" -msgid "Identity number assigned by public authorities" -msgstr "Valstybės institucijų priskirtas tapatybės numeris" +msgid "Send e-mail to help desk" +msgstr "Siųsti el. laišką naudotojų aptarnavimo specialistams" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federacijos Paslaugos teikėjas (nutolęs)" +msgid "Send error report" +msgstr "Siųsti pranešimą apie klaidą" -msgid "Some error occurred" -msgstr "Įvyko tam tikra klaida" +msgid "Sending message" +msgstr "Siunčiamas pranešimas" -msgid "Organization" -msgstr "Organizacija" +msgid "Service Provider" +msgstr "Paslaugos teikėjas" -msgid "Choose home organization" -msgstr "Pasirinkite organizaciją" +msgid "Session size: %SIZE%" +msgstr "Sesijos trukmė: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Nuolatinio pseudonimo ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metaduomenys" -msgid "No errors found." -msgstr "Klaidų nerasta." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Tapatybių teikėjas (vietinis)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Paslaugos teikėjas (vietinis)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Tapatybių teikėjas (nutolęs)" -msgid "Required fields" -msgstr "Privalomi laukai" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metaduomenys" -msgid "Domain component (DC)" -msgstr "Domeno komponentas" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Paslaugos teikėjas (vietinis)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 Paslaugos teikėjas (nutolęs)" -msgid "Password" -msgstr "Slaptažodis" - -msgid "Nickname" -msgstr "Slapyvardis" - -msgid "The error report has been sent to the administrators." -msgstr "Pranešimas apie klaidą išsiųstas administratoriams." - -msgid "Date of birth" -msgstr "Gimimo data" - -msgid "Private information elements" -msgstr "Privačios informacijos elementai" - -msgid "You are also logged in on these services:" -msgstr "Jūs taip pat esate prisijungęs prie:" +msgid "Shibboleth demo" +msgstr "Shibboleth demonstracinė versija" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp Diagnostika" -msgid "No, only %SP%" -msgstr "Ne, tik %SP%" - -msgid "Username" -msgstr "Prisijungimo vardas" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp tikriausiai klaidingai sukonfigūruotas." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Grįžti atgal į SimpleSAMLphp diegimo puslapį" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp klaida" -msgid "You have successfully logged out from all services listed above." -msgstr "Jūs sėkmingai buvote atjungtas nuo visų žemiau išvardintų paslaugų." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Jūs sėkmingai buvote atjungtas iš %SP%." +msgid "Some error occurred" +msgstr "Įvyko tam tikra klaida" -msgid "Affiliation" -msgstr "Pareigos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Būsenos informacija prarasta" -msgid "You have been logged out." -msgstr "Jūs buvote atjungtas nuo sistemos." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Būsenos informacija prarasta, nėra galimybių pakartoti užklausą" -msgid "Return to service" -msgstr "Grįžti į paslaugą" +msgid "Street" +msgstr "Gatvė" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federacijos Paslaugos teikėjas (vietinis)" +msgid "Submit message" +msgstr "Patvirtinti pranešimą" -msgid "Preferred language" -msgstr "Kalba" +msgid "Superfluous options in config file" +msgstr "Pertekliniai parametrai konfigūraciniame faile" msgid "Surname" msgstr "Pavardė" -msgid "The following fields was not recognized" -msgstr "Šie laukai neatpažinti" - -msgid "User ID" -msgstr "Naudotojo ID" +msgid "Telephone number" +msgstr "Telefono nr." -msgid "JPEG Photo" -msgstr "JPEG nuotrauka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Tapatybių teikėjas atsakė klaidos pranešimu. (Statuso kodas SAML atsakyme buvo nesėkmingas)" -msgid "Postal address" -msgstr "Adresas" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Autentikacija nutraukė naudotojas" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "SAML 2.0 Metaduomenys XML formatu:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Ši detali informacija gali būti įdomi administratoriui:" -msgid "Logging out of the following services:" -msgstr "Vyksta atjungimas nuo šių paslaugų:" +msgid "The error report has been sent to the administrators." +msgstr "Pranešimas apie klaidą išsiųstas administratoriams." -msgid "Labeled URI" -msgstr "Žymėtasis URI" +msgid "The following fields was not recognized" +msgstr "Šie laukai neatpažinti" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Tapatybių teikėjas (vietinis)" +msgid "The following optional fields was not found" +msgstr "Šie neprivalomi laukai nerasti" -msgid "Metadata" -msgstr "Metaduomenys" +msgid "The following required fields was not found" +msgstr "Šie privalomi laukai nerasti" -msgid "Login" -msgstr "Prisijungti" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Šis puslapis nerastas. Puslapio adresas buvo: %URL%" -msgid "Yes, all services" -msgstr "Taip, visų paslaugų" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Šis puslapis nerastas. Priežastis buvo: %REASON% Puslapio adresas buvo: %URL%" -msgid "Logged out" -msgstr "Atsijungta" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Informacija apie atsijungimo operaciją prarasta. Jūs turėtumėte sugrįžti į tą paslaugą, iš kurios bandėte atsijungti ir pabandyti atlikti tai dar kartą. Ši klaida galėjo būti sukelta, nes baigėsi atsijungimo informacijos galiojimo laikas. Informacija apie atsijungimą yra saugoma ribotą laiko tarpą - dažniausiai kelias valandas. Tai yra daugiau nei bet kokia normali atsijungimo informacija gali užtrukti, taigi ši klaida gali būti sukelta kitos klaidos, kuri įvyko dėl konfigūracijos. Jei problema tęsiasi, susisiekite su savo paslaugos teikėju." -msgid "Postal code" -msgstr "Pašto kodas" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Šios užklausos iniciatorius nepateikė perdavimo statuso parametro, kuris nusako kur toliau kreiptis." -msgid "Logging out..." -msgstr "Atjungiama..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Parametrai, nusiųsti \"discovery\" servisui neatitiko specifikacijų." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Tapatybių teikėjas (vietinis)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Pirminė sąsaja" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Konfigūracijoje esantis slaptažodis (auth.adminpassword) nepakeistas iš pradinės reikšmės. Prašome pakeisti konfigūracijos failą." -msgid "XML metadata" -msgstr "XML metaduomenys" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Užklausoje į šį puslapį rasta klaida. Priežastis buvo: %REASON%" -msgid "Telephone number" -msgstr "Telefono nr." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Rastos Jūsų SimpleSAMLphp konfigūravimo klaidos. Jei Jūs esate šios sistemos administratorius, turėtumėte patikrinti, ar teisingai nustatyti metaduomenys." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Nepavyksta atsijungti nuo vienos ar daugiau paslaugų. Siekiant užtikrinti sėkmingą darbo pabaigą, rekomenduojame uždaryti naršyklę." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Šis tapatybių tiekėjas gavo autentikacijos prašymo užklausą iš paslaugos teikėjo, tačiau apdorojant pranešimą įvyko klaida." -msgid "Entitlement regarding the service" -msgstr "Teisės susiję su paslauga" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Baigties taškas neįjungtas. Patikrinkite savo SimpleSAMLphp konfigūraciją." -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Metaduomenys" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Ši klaida tikriausiai susijusi dėl SimpleSAMLphp neteisingo sukonfigūravimo. Susisiekite su šios sistemos administratoriumi ir nusiųskite žemiau rodomą klaidos pranešimą." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Įjungtas detalus naršymas, todėl matote siunčiamos žinutės turinį:" +msgid "Title" +msgstr "Pavadinimas" -msgid "Certificates" -msgstr "Sertifikatai" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Norėdami peržiūrėti detalesnę informaciją apie SAML, paspauskite ant SAML antraštės." -msgid "Remember" -msgstr "Įsiminti" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Asmens organizacijos atpažinimo vardas" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Nepavyko rasti objekto %ENTITYID% metaduomenų" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Jūsų pranešimas siunčiamas. Norėdami tęsti, paspauskite pranešimo patvirtinimo nuorodą." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Nepavyksta atsijungti nuo vienos ar daugiau paslaugų. Siekiant užtikrinti sėkmingą darbo pabaigą, rekomenduojame uždaryti naršyklę." -msgid "Organizational unit" -msgstr "Organizacijos skyrius" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Vietinis tapatybės numeris" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Nežinoma klaida" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Metaduomenys" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Nežinomas sertifikatas" -msgid "Change your home organization" -msgstr "Pakeisti savo organizaciją" +msgid "User ID" +msgstr "Naudotojo ID" msgid "User's password hash" msgstr "Naudotojo slaptažodžio maiša" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "SimpleSAMLphp paprasto failo formatas - naudokite jį, jei naudojate SimpleSAMLphp kitoje esybėje:" - -msgid "Completed" -msgstr "Atlikta" - -msgid "Select configuration file to check:" -msgstr "Tikrinti konfigūracijos failą:" - -msgid "On hold" -msgstr "Prašome palaukti" +msgid "Username" +msgstr "Prisijungimo vardas" -msgid "Help! I don't remember my password." -msgstr "Pagalbos! Nepamenu savo slaptažodžio." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP Demonstracinės versijos Pavyzdys" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Jūs galite išjungti detalųjį naršymą globaliame SimpleSAMLphp konfigūraciniame faile config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federacijos Paslaugos teikėjas (nutolęs)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp klaida" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federacijos Paslaugos teikėjas (vietinis)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Viena ar daugiau paslaugų, prie kurių esate prisijungęs nepalaiko atsijungimo. Siekiant užtikrinti sėkmingą darbo pabaigą, rekomenduojame uždaryti naršyklę." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Organizacijos juridinis pavadinimas" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Mes nepriimame užklausos, siųstos iš tapatybių teikėjo." -msgid "Options missing from config file" -msgstr "Trūkstami parametrai konfigūraciniame faile" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Šiam tapatybių teikėjui bandant sukurti autentikacijos atsakymą įvyko klaida." -msgid "The following optional fields was not found" -msgstr "Šie neprivalomi laukai nerasti" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Blogai - be prisijungimo vardo ir slaptažodžio negalėsite autentikuotis ir patekti į reikiamą paslaugą. Galbūt yra kas Jums galėtų padėti. Susisiekite su savo universiteto vartotojų aptarnavimo specialistais." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Jūs galite gauti metaduomenis XML formatu:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Gatvė" +msgid "XML metadata" +msgstr "XML metaduomenys" -msgid "Message" -msgstr "Pranešimas" +msgid "Yes, all services" +msgstr "Taip, visų paslaugų" -msgid "Contact information:" -msgstr "Kontaktai:" +msgid "Yes, continue" +msgstr "Taip, tęsti" -msgid "Legal name" -msgstr "Juridinis vardas" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Neprivalomi laukai" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Jūs pasiekėte vartotojų aptarnavimo servisą, tačiau nepateikėte SAML autentikacijos atsakymo." -msgid "You have previously chosen to authenticate at" -msgstr "Anksčiau pasirinkote autentikuotis" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Jūs kažką nusiuntėte į prisijungimo puslapį, tačiau dėl kažkokių priežasčių slaptažodis nebuvo nusiųstas. Prašome bandyti dar kartą." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Jūs pasiekėte SingleLogoutService paslaugą, tačiau nepateikėte SAML LogoutRequest ar LogoutResponse užklausų." -msgid "Fax number" -msgstr "Fakso numeris" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Jūsų pranešimas siunčiamas. Norėdami tęsti, paspauskite pranešimo patvirtinimo mygtuką." -msgid "Shibboleth demo" -msgstr "Shibboleth demonstracinė versija" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Jūsų pranešimas siunčiamas. Norėdami tęsti, paspauskite pranešimo patvirtinimo nuorodą." -msgid "Error in this metadata entry" -msgstr "Klaida šiame metaduomenų įraše" +msgid "You are also logged in on these services:" +msgstr "Jūs taip pat esate prisijungęs prie:" -msgid "Session size: %SIZE%" -msgstr "Sesijos trukmė: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Šiuo metu Jūs kreipiatės į nebaigtą diegti sistemą. Šie autentiškumo patvirtinimo nustatymai skirti tik testavimui ir sistemos veikimo tikrinimui. Jei kažkas Jums atsiuntė nuorodą, vedančią čia, ir Jūs nesate testuotojas, Jūs greičiausiai gavote neteisingą nuorodą ir neturėtumėte čia būti." -msgid "Parse" -msgstr "Nagrinėti" +msgid "You are now successfully logged out from %SP%." +msgstr "Jūs sėkmingai buvote atjungtas iš %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Blogai - be prisijungimo vardo ir slaptažodžio negalėsite autentikuotis ir patekti į reikiamą paslaugą. Galbūt yra kas Jums galėtų padėti. Susisiekite su savo universiteto vartotojų aptarnavimo specialistais." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Jūs galite gauti metaduomenis XML formatu:" -msgid "Choose your home organization" -msgstr "Pasirinkite savo organizaciją" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Jūs galite išjungti detalųjį naršymą globaliame SimpleSAMLphp konfigūraciniame faile config/config.php." -msgid "Send e-mail to help desk" -msgstr "Siųsti el. laišką naudotojų aptarnavimo specialistams" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Jūs nepateikėte teisingo sertifikato." -msgid "Metadata overview" -msgstr "Metaduomenų peržiūra" +msgid "You have been logged out." +msgstr "Jūs buvote atjungtas nuo sistemos." -msgid "Title" -msgstr "Pavadinimas" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Jūs savo namų organizacija pasirinkote %HOMEORG%. Jei tai yra neteisingas pasirinkimas, galite pasirinkti kitą." -msgid "Manager" -msgstr "Vadovas" +msgid "You have previously chosen to authenticate at" +msgstr "Anksčiau pasirinkote autentikuotis" -msgid "Affiliation at home organization" -msgstr "Sąsaja su organizacija" +msgid "You have successfully logged out from all services listed above." +msgstr "Jūs sėkmingai buvote atjungtas nuo visų žemiau išvardintų paslaugų." -msgid "Help desk homepage" -msgstr "Naudotojų aptarnavimo puslapis" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Jūs kažką nusiuntėte į prisijungimo puslapį, tačiau dėl kažkokių priežasčių slaptažodis nebuvo nusiųstas. Prašome bandyti dar kartą." -msgid "Configuration check" -msgstr "Konfigūracijos patikrinimas" +msgid "Your attributes" +msgstr "Jūsų atributai" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Tapatybių teikėjas (nutolęs)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Metaduomenys, kuriuos Jums sugeneravo SimpleSAMLphp. Norint įsteigti patikimą federaciją, galite patikimiems partneriams išsiųsti šiuos metaduomenis." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Jūsų sesija galioja %remaining% sekundžių, skaičiuojant nuo šio momento." -msgid "Organizational homepage" -msgstr "Organizacijos svetainė" +msgid "[Preferred choice]" +msgstr "[Rekomenduojame]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Šiuo metu Jūs kreipiatės į nebaigtą diegti sistemą. Šie autentiškumo patvirtinimo nustatymai skirti tik testavimui ir sistemos veikimo tikrinimui. Jei kažkas Jums atsiuntė nuorodą, vedančią čia, ir Jūs nesate testuotojas, Jūs greičiausiai gavote neteisingą nuorodą ir neturėtumėte čia būti." +msgid "not set" +msgstr "" diff --git a/locales/lv/LC_MESSAGES/messages.po b/locales/lv/LC_MESSAGES/messages.po index 3e4e483b32..22689853f3 100644 --- a/locales/lv/LC_MESSAGES/messages.po +++ b/locales/lv/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Nav SAML atbildes" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Nav SAML ziņojuma" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Serviss pieprasa autentifikāciju. Lūdzu ievadiet savu lietotāja vārdu un paroli." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Piederība" + +msgid "Affiliation at home organization" +msgstr "Amats organizācijā" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Veidojot SAML pieprasījumu radās kļūda." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Apstrādājot atslēgšanās pieprasījumu, radās kļūda." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Noticis nezināms izņēmuma gadījums." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Tā kā šis ir atkļūdošanas režīms, Jūs varat redzēt sūtāmās ziņas saturu:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Autentifikācija pārtraukta" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Autentifikācijas kļūda avotā %AUTHSOURCE%. Iemesls: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Autentifikācija neizdevās, jo Jūsu interneta pārlūks atsūtījis nederīgu vai nelasāmu sertifikātu" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Autentifikācija neizdevās, jo Jūsu interneta pārlūks atsūtījis nepazīstamu sertifikātu" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Autentifikācija neizdevās, jo Jūsu interneta pārlūks nav atsūtījis nevienu sertifikātu" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Autentifikācijas avota kļūda" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Saņemts nepareizs pieprasījums" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Nepareizs pieprasījums discovery servisam" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS kļūda" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Sertifikāti" + +msgid "Change your home organization" +msgstr "Mainīt organizāciju" + +msgid "Choose home organization" +msgstr "Izvēlēties organizāciju" + +msgid "Choose your home organization" +msgstr "Izvēlieties organizāciju" + +msgid "Common name" +msgstr "Vārds" + +msgid "Completed" +msgstr "Pabeigts" + +msgid "Configuration check" +msgstr "Konfigurācijas pārbaude" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Konfigurācijas kļūda" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Pieprasījuma veidošanas kļūda" +msgid "Contact information:" +msgstr "Kontaktinformācija" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Nepareizs pieprasījums discovery servisam" +msgid "Converted metadata" +msgstr "Konvertētie metadati" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Neizdevās izveidot autentifikācijas atbildi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Nederīgs sertifikāts" +msgid "Date of birth" +msgstr "Dzimšanas datums" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP kļūda" +msgid "Debug information" +msgstr "Atkļūdošanas infomācija" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Atslēgšanās informācija zaudēta" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Atslēgšanās pieprasījuma apstrādes kļūda" +msgid "Display name" +msgstr "Parādāmais vārds" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Metadatu ielādes kļūda" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Organizācijas vārds (DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadati nav atrasti" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Personas pamata organizācijas vienības vārds (DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Nav pieejas" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Organizācijas vienības vārds (DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Nav sertifikāta" +msgid "Do you want to logout from all the services above?" +msgstr "Vai vēlaties atslēgties no visiem uzskaitītajiem servisiem?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Nav RelayState" +msgid "Domain component (DC)" +msgstr "Domēns (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Stāvokļa informācija pazaudēta" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Lejupielādēt X509 sertifikātus kā PEM-kodētus failus." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Lapa nav atrasta" +msgid "E-mail address:" +msgstr "E-pasta adrese:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Parole nav uzstādīta" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Vai nu nav lietotāja ar norādīto lietotāja vārdu, vai parole norādīta kļūdaini. Lūdzu mēģiniet vēlreiz." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Identitātes piegādātāja atbildes apstrādes kļūda" +msgid "Enter your username and password" +msgstr "Ievadiet savu lietotāja vārdu un paroli" + +msgid "Entitlement regarding the service" +msgstr "Pilnvaras attiecībā uz servisu" + +msgid "Error" +msgstr "Kļūda" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Pieprasījuma veidošanas kļūda" + +msgid "Error in this metadata entry" +msgstr "Kļūda šajā metadatu ierakstā" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Metadatu ielādes kļūda" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Servisa piegādātāja pieprasījuma apstrādes kļūda" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Identitātes piegādātāja atbildes apstrādes kļūda" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Atslēgšanās pieprasījuma apstrādes kļūda" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Kļūda no identitātes piegādātāja" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Nezināma kļūda" +msgid "Error report sent" +msgstr "Kļūdas ziņojums nosūtīts" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Nepazīstams sertifikāts" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Kļūda komunicējot ar CAS serveri." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Autentifikācija pārtraukta" +msgid "Explain what you did when this error occurred..." +msgstr "Aprakstiet, ko Jūs darījāt, kad notika kļūda." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Nekorekts lietotāja vārds vai parole" +msgid "Fax number" +msgstr "Fakss" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Jūs izmantojat Assertion Consumer Service interfeisu, bet neesat devis SAML autentifikācijas atbildi." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Autentifikācijas kļūda avotā %AUTHSOURCE%. Iemesls: %REASON%" +msgid "Given name" +msgstr "Vārds" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Kļūdains pieprasījums šai lapai. Iemesls: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Iet atpakaļ uz SimpleSAMLphp instalācijas lapu" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Kļūda komunicējot ar CAS serveri." +msgid "Go back to the file list" +msgstr "Iet atpakaļ uz sarakstu" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp nav pareizi nokonfigurēts." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Veidojot SAML pieprasījumu radās kļūda." +msgid "Help desk homepage" +msgstr "Palīdzības dienesta interneta lapa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Discovery servisam nosūtītie parametri neatbilst specifikācijām." +msgid "Help! I don't remember my password." +msgstr "Palīdziet! Es neatceros paroli." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Kad identitātes piegādātājs mēģināja izveigot autentifikācijas atbildi, radās kļūda." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Šeit ir SimpleSAMLphp ģenerētie metadati. Jūs varat tos sūtīt partneriem, lai izveidotu uzticamu federāciju." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Autentifikācija neizdevās, jo Jūsu interneta pārlūks atsūtījis nederīgu vai nelasāmu sertifikātu" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Šī ir SimpleSAMLphp statusa lapa. Te Jūs varat redzēt vai Jūsu sesija ir pārtraukta, cik ilgi tā bijusi aktīva un visus ar to saistītos atribūtus." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP ir lietotāju datu bāze. Pieslēdzoties pie tās ir jāspēj piekļūt. Šoreiz tas neizdevās un radās kļūda." +msgid "Home organization domain name" +msgstr "Organizācijas domeins" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Informācija par atslēgšanās operāciju ir pazaudēta. Jums jāatgriežas pie servisa, no kura mēģinājāt atslēgties, un jāmēģina atslēgties vēlreiz. Kļūda var rasties, ja atslēgšanās norit pārāk ilgi. Informācija par atslēgšanos tiek glabāta vairākas stundas. Tas ir ilgāk nekā parasti norit atslēgšanās procedūra, tādēļ šī kļūda var norādīt uz kļūdu konfigurācijā. Ja problēma turpinās, sazinieties ar servisa piegādātāju." +msgid "Home postal address" +msgstr "Pasta adrese" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Apstrādājot atslēgšanās pieprasījumu, radās kļūda." +msgid "Home telephone" +msgstr "Telefons" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Jūsu SimpleSAMLphp instalācijas konfigurācijā ir kļūda. Pārliecinieties, lai metadatu konfigurācija būtu korekta." +msgid "How to get help" +msgstr "Kā atrast palīdzību" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Nav iespējams atrast metadatus priekš %ENTITYID%" +msgid "Identity assurance profile" +msgstr "Apraksts, kā atšķirt cilvēku no robota" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Šis beigu punkts nav iespējots. Pārbaudiet iespējošanas opcijas SimpleSAMLphp konfigurācijā." +msgid "Identity number assigned by public authorities" +msgstr "Publisko autoritāšu piešķirtais identitātes numurs" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Autentifikācija neizdevās, jo Jūsu interneta pārlūks nav atsūtījis nevienu sertifikātu" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Kad ziņojat par kļūdu, lūdzu norādiet šo atsekošanas numuru, kas administratoram palīdz atrast šo sesiju sistēmas ierakstos." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Pieprasījuma veidotājs nav norādījis RelayState parametru, kas parādītu, kurp iet tālāk." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "SAML 2.0 metadatos XML formātā:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Stāvokļa informācija pazaudēta un nav iespējams atkārtot pieprasījumu" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "SimpleSAMLphp parasta faila formātā - lietojiet šo, ja izmantojat SimpleSAMLphp entītiju otrā galā:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Norādītā lapa nav atrasta. Saite: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Nekorekts lietotāja vārds vai parole" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Norādītā lapa nav atrasta. Iemesls: %REASON% Saite: %URL%" +msgid "Incorrect username or password." +msgstr "Nekorekts lietotāja vārds vai parole." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Konfigurācijā auth.adminpassword parolei ir noklusētā vērtība, tā nav mainīta. Lūdzu nomainiet to, labojot failu." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Jūs neesat norādījis derīgu sertifikātu." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Nederīgs sertifikāts" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Netiek akceptēta atbilde no identitātes piegādātāja." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Identitātes piegādātājs ir saņēmis autentifikācijas pieprasījumu no servisa piegādātāja, bet to apstrādājot radās kļūda." +msgid "JPEG Photo" +msgstr "JPEG fotogrāfija" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Identitātes piegādātājs atbildējis ar kļūdu. Statusa kods SAML atbildē atšķiras no veiksmīga" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP kļūda" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Jūs izmantojat SingleLogoutService interfeisu, bet neesat devis SAML atslēgšanās pieprasījumu vai atslēgšanās atbildi." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP ir lietotāju datu bāze. Pieslēdzoties pie tās ir jāspēj piekļūt. Šoreiz tas neizdevās un radās kļūda." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Noticis nezināms izņēmuma gadījums." +msgid "Labeled URI" +msgstr "URI nosaukums" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Autentifikācija neizdevās, jo Jūsu interneta pārlūks atsūtījis nepazīstamu sertifikātu" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Autentifikāciju pārtraucis lietotājs" +msgid "Legal name" +msgstr "Juridiskais nosaukums" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Vai nu nav lietotāja ar norādīto lietotāja vārdu, vai parole norādīta kļūdaini. Lūdzu mēģiniet vēlreiz." +msgid "Local identity number" +msgstr "Personas kods" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Šī ir SimpleSAMLphp statusa lapa. Te Jūs varat redzēt vai Jūsu sesija ir pārtraukta, cik ilgi tā bijusi aktīva un visus ar to saistītos atribūtus." +msgid "Locality" +msgstr "Atrašanās vieta" -msgid "Logout" -msgstr "Atslēgties" +msgid "Logged out" +msgstr "Atslēdzies" -msgid "Your attributes" -msgstr "Atribūti" +msgid "Logging out of the following services:" +msgstr "Atslēgšanās no šiem servisiem:" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Sesija ir derīga %remaining% sekundes no šī brīža." +msgid "Logging out..." +msgstr "Atslēgšanās..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Lūdzu izvēlieties identitātes piegādātāju, pie kura vēlaties autentificēties:" +msgid "Login" +msgstr "Pieslēgties" -msgid "Remember my choice" -msgstr "Atcerēties manu izvēli" +msgid "Login at" +msgstr "Pieslēgties pie" -msgid "Select" -msgstr "Izvēlēties" +msgid "Logout" +msgstr "Atslēgties" -msgid "Select your identity provider" -msgstr "Izvēlieties identitātes piegādātāju" +msgid "Logout failed" +msgstr "Atslēgšanās neizdevās" -msgid "Sending message" -msgstr "Ziņas sūtīšana" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Atslēgšanās informācija zaudēta" -msgid "Yes, continue" -msgstr "Jā, turpināt" +msgid "Mail" +msgstr "Pasts" -msgid "Debug information" -msgstr "Atkļūdošanas infomācija" +msgid "Manager" +msgstr "Priekšnieks" -msgid "E-mail address:" -msgstr "E-pasta adrese:" +msgid "Message" +msgstr "Ziņa" -msgid "Explain what you did when this error occurred..." -msgstr "Aprakstiet, ko Jūs darījāt, kad notika kļūda." +msgid "Metadata" +msgstr "Metadati" -msgid "How to get help" -msgstr "Kā atrast palīdzību" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadati nav atrasti" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Kad ziņojat par kļūdu, lūdzu norādiet šo atsekošanas numuru, kas administratoram palīdz atrast šo sesiju sistēmas ierakstos." +msgid "Metadata overview" +msgstr "Metadatu pārskats" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Norādiet savu e-pastu, lai administrators var ar Jums sazināties un precizēt notikušo:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "Ziņot par kļūdām" +msgid "Mobile" +msgstr "Mobilais telefons" -msgid "Send error report" -msgstr "Sūtīt ziņojumu par kļūdu" +msgid "Next" +msgstr "Tālāk" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Zemāk esošā atkļūdošanas informācija var interesēt administratoru un palīdzības dienestu:" +msgid "Nickname" +msgstr "Niks" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Iespējams, kļūda radusies no neparedzētas darbības vai nepareizas SimpleSAMLphp konfigurācijas. Nosūtiet administratoram kļūdas ziņojumu." +msgid "No" +msgstr "Nē" -msgid "[Preferred choice]" -msgstr "(Mana labākā izvēle)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Nav RelayState" -msgid "Person's principal name at home organization" -msgstr "Priekšnieka vārds" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Nav SAML ziņojuma" -msgid "Superfluous options in config file" -msgstr "Sīkas (superfluous) opcijas konfigurācijas failā" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "Mobilais telefons" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Nav SAML atbildes" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 servisa piegādātājs (hostēts)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Nav pieejas" -msgid "Display name" -msgstr "Parādāmais vārds" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Nav sertifikāta" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP metadati" +msgid "No errors found." +msgstr "Kļūdas nav atrastas." + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Nē" + +msgid "No, only %SP%" +msgstr "Nē, tikai %SP%" msgid "Notices" msgstr "Brīdinājumi" -msgid "Home telephone" -msgstr "Telefons" +msgid "On hold" +msgstr "Apturēts" -msgid "Service Provider" -msgstr "Servisa piegādātājs" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Viens vai vairāki Jūsu izmantotie servisi neatbalsta atslēgšanos. Lai aizvērtu visas sesijas, aizveriet savu interneta pārlūku." + +msgid "Optional fields" +msgstr "Neobligātie lauki" -msgid "Incorrect username or password." -msgstr "Nekorekts lietotāja vārds vai parole." +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Norādiet savu e-pastu, lai administrators var ar Jums sazināties un precizēt notikušo:" -msgid "Submit message" -msgstr "Sūtīt ziņu" +msgid "Options missing from config file" +msgstr "Konfigurācijas failā trūkst opciju" -msgid "Locality" -msgstr "Atrašanās vieta" +msgid "Organization" +msgstr "Organizācija" -msgid "The following required fields was not found" -msgstr "Nav atrasti obligātie lauki" +msgid "Organization name" +msgstr "Organizācijas nosaukums" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Lejupielādēt X509 sertifikātus kā PEM-kodētus failus." +msgid "Organization's legal name" +msgstr "Organizācijas juridiskais nosaukums" + +msgid "Organizational homepage" +msgstr "Organizācijas mājas lapa" msgid "Organizational number" msgstr "Organizācijas reģistrācijas numurs" -msgid "Post office box" -msgstr "Pasta kaste" +msgid "Organizational unit" +msgstr "Organizācijas vienība" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Serviss pieprasa autentifikāciju. Lūdzu ievadiet savu lietotāja vārdu un paroli." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Lapa nav atrasta" -msgid "Error" -msgstr "Kļūda" +msgid "Parse" +msgstr "Parsēt" -msgid "Next" -msgstr "Tālāk" +msgid "Password" +msgstr "Parole" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Organizācijas vienības vārds (DN)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Parole nav uzstādīta" -msgid "Converted metadata" -msgstr "Konvertētie metadati" +msgid "Persistent pseudonymous ID" +msgstr "Pastāvīgs pseidonīma ID" -msgid "Mail" -msgstr "Pasts" +msgid "Person's principal name at home organization" +msgstr "Priekšnieka vārds" -msgid "No, cancel" -msgstr "Nē" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Lūdzu izvēlieties identitātes piegādātāju, pie kura vēlaties autentificēties:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Jūs izvēlējāties %HOMEORG%. ja tas nav pareizi, izvēlieties citu." +msgid "Post office box" +msgstr "Pasta kaste" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Personas pamata organizācijas vienības vārds (DN)" +msgid "Postal address" +msgstr "Pasta adrese" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Lai aplūkotu SAML vienuma detaļas, klikšķiniet uz vienuma galvenes." +msgid "Postal code" +msgstr "Pasta kods" -msgid "Enter your username and password" -msgstr "Ievadiet savu lietotāja vārdu un paroli" +msgid "Preferred language" +msgstr "Vēlamā valoda" -msgid "Login at" -msgstr "Pieslēgties pie" +msgid "Primary affiliation" +msgstr "Pamatdarba amats" -msgid "No" -msgstr "Nē" +msgid "Private information elements" +msgstr "Privātās informācijas elementi" -msgid "Home postal address" -msgstr "Pasta adrese" +msgid "Remember" +msgstr "Atcerēties" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP demonstrācijas piemērs" +msgid "Remember my choice" +msgstr "Atcerēties manu izvēli" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 identitātes piegādātājs (attālināts)" +msgid "Report errors" +msgstr "Ziņot par kļūdām" -msgid "Do you want to logout from all the services above?" -msgstr "Vai vēlaties atslēgties no visiem uzskaitītajiem servisiem?" +msgid "Required fields" +msgstr "Obligātie lauki" -msgid "Given name" -msgstr "Vārds" +msgid "Return to service" +msgstr "Atgriezties pie servisa" -msgid "Identity assurance profile" -msgstr "Apraksts, kā atšķirt cilvēku no robota" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 identitātes piegādātājs (hostēts)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 identitātes piegādātājs (attālināts)" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP demonstrācijas piemērs" -msgid "Organization name" -msgstr "Organizācijas nosaukums" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Jūs gatavojaties sūtīt ziņu. Spiediet pogu Sūtīt ziņu." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP metadati" -msgid "Home organization domain name" -msgstr "Organizācijas domeins" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 servisa piegādātājs (hostēts)" -msgid "Go back to the file list" -msgstr "Iet atpakaļ uz sarakstu" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Kļūdas ziņojums nosūtīts" +msgid "Select" +msgstr "Izvēlēties" -msgid "Common name" -msgstr "Vārds" +msgid "Select configuration file to check:" +msgstr "Izvēlieties pārbaudāmos konfigurācijas failus:" -msgid "Logout failed" -msgstr "Atslēgšanās neizdevās" +msgid "Select your identity provider" +msgstr "Izvēlieties identitātes piegādātāju" -msgid "Identity number assigned by public authorities" -msgstr "Publisko autoritāšu piešķirtais identitātes numurs" +msgid "Send e-mail to help desk" +msgstr "Sūtīt e-pastu palīdzības dienestam" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation servisa piegādātājs (attālināts)" +msgid "Send error report" +msgstr "Sūtīt ziņojumu par kļūdu" -msgid "Some error occurred" -msgstr "Notikusi kļūda" +msgid "Sending message" +msgstr "Ziņas sūtīšana" -msgid "Organization" -msgstr "Organizācija" +msgid "Service Provider" +msgstr "Servisa piegādātājs" -msgid "Choose home organization" -msgstr "Izvēlēties organizāciju" +msgid "Session size: %SIZE%" +msgstr "Sesijas izmērs: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Pastāvīgs pseidonīma ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP metadati" -msgid "No errors found." -msgstr "Kļūdas nav atrastas." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 identitātes piegādātājs (hostēts)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 servisa piegādātājs (hostēts)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 identitātes piegādātājs (attālināts)" -msgid "Required fields" -msgstr "Obligātie lauki" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP metadati" -msgid "Domain component (DC)" -msgstr "Domēns (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 servisa piegādātājs (hostēts)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 servisa piegādātājs (attālināts)" -msgid "Password" -msgstr "Parole" - -msgid "Nickname" -msgstr "Niks" - -msgid "The error report has been sent to the administrators." -msgstr "Kļūdas ziņojums administratoriem ir nosūtīts." - -msgid "Date of birth" -msgstr "Dzimšanas datums" - -msgid "Private information elements" -msgstr "Privātās informācijas elementi" - -msgid "You are also logged in on these services:" -msgstr "Jūs esat pieslēdzies arī pie šiem servisiem:" +msgid "Shibboleth demo" +msgstr "Shibboleth demo" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp diagnostika" -msgid "No, only %SP%" -msgstr "Nē, tikai %SP%" - -msgid "Username" -msgstr "Lietotāja vārds" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp nav pareizi nokonfigurēts." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Iet atpakaļ uz SimpleSAMLphp instalācijas lapu" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp kļūda" -msgid "You have successfully logged out from all services listed above." -msgstr "Jūs esat sekmīgi atslēdzies un augstāk uzskaitītajiem servisiem." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Jūs esat sekmīgi atslēdzies no %SP%." +msgid "Some error occurred" +msgstr "Notikusi kļūda" -msgid "Affiliation" -msgstr "Piederība" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Stāvokļa informācija pazaudēta" -msgid "You have been logged out." -msgstr "Jūs esat izgājis no sistēmas." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Stāvokļa informācija pazaudēta un nav iespējams atkārtot pieprasījumu" -msgid "Return to service" -msgstr "Atgriezties pie servisa" +msgid "Street" +msgstr "Iela" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation servisa piegādātājs (hostēts)" +msgid "Submit message" +msgstr "Sūtīt ziņu" -msgid "Preferred language" -msgstr "Vēlamā valoda" +msgid "Superfluous options in config file" +msgstr "Sīkas (superfluous) opcijas konfigurācijas failā" msgid "Surname" msgstr "Uzvārds" -msgid "The following fields was not recognized" -msgstr "Nav atpazīti šādi ievadlauki" - -msgid "User ID" -msgstr "Lietotāja ID" +msgid "Telephone number" +msgstr "Telefons" -msgid "JPEG Photo" -msgstr "JPEG fotogrāfija" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Identitātes piegādātājs atbildējis ar kļūdu. Statusa kods SAML atbildē atšķiras no veiksmīga" -msgid "Postal address" -msgstr "Pasta adrese" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Autentifikāciju pārtraucis lietotājs" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "SAML 2.0 metadatos XML formātā:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Zemāk esošā atkļūdošanas informācija var interesēt administratoru un palīdzības dienestu:" -msgid "Logging out of the following services:" -msgstr "Atslēgšanās no šiem servisiem:" +msgid "The error report has been sent to the administrators." +msgstr "Kļūdas ziņojums administratoriem ir nosūtīts." -msgid "Labeled URI" -msgstr "URI nosaukums" +msgid "The following fields was not recognized" +msgstr "Nav atpazīti šādi ievadlauki" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 identitātes piegādātājs (hostēts)" +msgid "The following optional fields was not found" +msgstr "Nav atrasti neobligātie lauki" -msgid "Metadata" -msgstr "Metadati" +msgid "The following required fields was not found" +msgstr "Nav atrasti obligātie lauki" -msgid "Login" -msgstr "Pieslēgties" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Norādītā lapa nav atrasta. Saite: %URL%" -msgid "Yes, all services" -msgstr "Jā, no visiem" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Norādītā lapa nav atrasta. Iemesls: %REASON% Saite: %URL%" -msgid "Logged out" -msgstr "Atslēdzies" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Informācija par atslēgšanās operāciju ir pazaudēta. Jums jāatgriežas pie servisa, no kura mēģinājāt atslēgties, un jāmēģina atslēgties vēlreiz. Kļūda var rasties, ja atslēgšanās norit pārāk ilgi. Informācija par atslēgšanos tiek glabāta vairākas stundas. Tas ir ilgāk nekā parasti norit atslēgšanās procedūra, tādēļ šī kļūda var norādīt uz kļūdu konfigurācijā. Ja problēma turpinās, sazinieties ar servisa piegādātāju." -msgid "Postal code" -msgstr "Pasta kods" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Pieprasījuma veidotājs nav norādījis RelayState parametru, kas parādītu, kurp iet tālāk." -msgid "Logging out..." -msgstr "Atslēgšanās..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Discovery servisam nosūtītie parametri neatbilst specifikācijām." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 identitātes piegādātājs (hostēts)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Pamatdarba amats" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Konfigurācijā auth.adminpassword parolei ir noklusētā vērtība, tā nav mainīta. Lūdzu nomainiet to, labojot failu." -msgid "XML metadata" -msgstr "XML metadati" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Kļūdains pieprasījums šai lapai. Iemesls: %REASON%" -msgid "Telephone number" -msgstr "Telefons" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Jūsu SimpleSAMLphp instalācijas konfigurācijā ir kļūda. Pārliecinieties, lai metadatu konfigurācija būtu korekta." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Nav iespējams atslēgties no viena vai vairākiem servisiem. Lai aizvērtu visas sesijas, aizveriet savu interneta pārlūku." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Identitātes piegādātājs ir saņēmis autentifikācijas pieprasījumu no servisa piegādātāja, bet to apstrādājot radās kļūda." -msgid "Entitlement regarding the service" -msgstr "Pilnvaras attiecībā uz servisu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Šis beigu punkts nav iespējots. Pārbaudiet iespējošanas opcijas SimpleSAMLphp konfigurācijā." -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP metadati" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Iespējams, kļūda radusies no neparedzētas darbības vai nepareizas SimpleSAMLphp konfigurācijas. Nosūtiet administratoram kļūdas ziņojumu." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Tā kā šis ir atkļūdošanas režīms, Jūs varat redzēt sūtāmās ziņas saturu:" +msgid "Title" +msgstr "Amats" -msgid "Certificates" -msgstr "Sertifikāti" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Lai aplūkotu SAML vienuma detaļas, klikšķiniet uz vienuma galvenes." -msgid "Remember" -msgstr "Atcerēties" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Organizācijas vārds (DN)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Nav iespējams atrast metadatus priekš %ENTITYID%" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Jūs gatavojaties sūtīt ziņu. Spiediet saiti Sūtīt ziņu." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Nav iespējams atslēgties no viena vai vairākiem servisiem. Lai aizvērtu visas sesijas, aizveriet savu interneta pārlūku." -msgid "Organizational unit" -msgstr "Organizācijas vienība" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Personas kods" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Nezināma kļūda" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP metadati" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Nepazīstams sertifikāts" -msgid "Change your home organization" -msgstr "Mainīt organizāciju" +msgid "User ID" +msgstr "Lietotāja ID" msgid "User's password hash" msgstr "Paroles jaucējsumma (hash)" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "SimpleSAMLphp parasta faila formātā - lietojiet šo, ja izmantojat SimpleSAMLphp entītiju otrā galā:" - -msgid "Completed" -msgstr "Pabeigts" - -msgid "Select configuration file to check:" -msgstr "Izvēlieties pārbaudāmos konfigurācijas failus:" - -msgid "On hold" -msgstr "Apturēts" +msgid "Username" +msgstr "Lietotāja vārds" -msgid "Help! I don't remember my password." -msgstr "Palīdziet! Es neatceros paroli." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP demonstrācijas piemērs" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Jūs varat izslēgt atkļūdošanas režīmu globālajā SimpleSAMLphp konfigurācijas failā config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation servisa piegādātājs (attālināts)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp kļūda" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation servisa piegādātājs (hostēts)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Viens vai vairāki Jūsu izmantotie servisi neatbalsta atslēgšanos. Lai aizvērtu visas sesijas, aizveriet savu interneta pārlūku." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Organizācijas juridiskais nosaukums" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Netiek akceptēta atbilde no identitātes piegādātāja." -msgid "Options missing from config file" -msgstr "Konfigurācijas failā trūkst opciju" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Kad identitātes piegādātājs mēģināja izveigot autentifikācijas atbildi, radās kļūda." -msgid "The following optional fields was not found" -msgstr "Nav atrasti neobligātie lauki" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Bez lietotāja vārda un paroles Jūs nevarat autentificēties un nevarat izmantot servisu. Iespējams, ir kāds, kas var Jums palīdzēt. Vaicājiet savas universitātes palīdzības dienestam." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Jūs varat saņemt metadatu xml šajā URL:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Iela" +msgid "XML metadata" +msgstr "XML metadati" -msgid "Message" -msgstr "Ziņa" +msgid "Yes, all services" +msgstr "Jā, no visiem" -msgid "Contact information:" -msgstr "Kontaktinformācija" +msgid "Yes, continue" +msgstr "Jā, turpināt" -msgid "Legal name" -msgstr "Juridiskais nosaukums" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Neobligātie lauki" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Jūs izmantojat Assertion Consumer Service interfeisu, bet neesat devis SAML autentifikācijas atbildi." -msgid "You have previously chosen to authenticate at" -msgstr "Iepriekš Jūs autentificējāties pie" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Kaut kādu iemeslu dēļ parole nav nosūtīta. Lūdzu mēģiniet vēlreiz." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Jūs izmantojat SingleLogoutService interfeisu, bet neesat devis SAML atslēgšanās pieprasījumu vai atslēgšanās atbildi." -msgid "Fax number" -msgstr "Fakss" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Jūs gatavojaties sūtīt ziņu. Spiediet pogu Sūtīt ziņu." -msgid "Shibboleth demo" -msgstr "Shibboleth demo" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Jūs gatavojaties sūtīt ziņu. Spiediet saiti Sūtīt ziņu." -msgid "Error in this metadata entry" -msgstr "Kļūda šajā metadatu ierakstā" +msgid "You are also logged in on these services:" +msgstr "Jūs esat pieslēdzies arī pie šiem servisiem:" -msgid "Session size: %SIZE%" -msgstr "Sesijas izmērs: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Jūs izmantojat testa (pirmsprodukcijas) sistēmu. Šī autentifikācija ir tikai testēšanas vajadzībām. Ja kāds Jums atsūtījis saiti uz šejieni un Jūs neesat testētājs, Jums te nav jāatrodas." -msgid "Parse" -msgstr "Parsēt" +msgid "You are now successfully logged out from %SP%." +msgstr "Jūs esat sekmīgi atslēdzies no %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Bez lietotāja vārda un paroles Jūs nevarat autentificēties un nevarat izmantot servisu. Iespējams, ir kāds, kas var Jums palīdzēt. Vaicājiet savas universitātes palīdzības dienestam." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Jūs varat saņemt metadatu xml šajā URL:" -msgid "Choose your home organization" -msgstr "Izvēlieties organizāciju" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Jūs varat izslēgt atkļūdošanas režīmu globālajā SimpleSAMLphp konfigurācijas failā config/config.php." -msgid "Send e-mail to help desk" -msgstr "Sūtīt e-pastu palīdzības dienestam" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Jūs neesat norādījis derīgu sertifikātu." -msgid "Metadata overview" -msgstr "Metadatu pārskats" +msgid "You have been logged out." +msgstr "Jūs esat izgājis no sistēmas." -msgid "Title" -msgstr "Amats" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Jūs izvēlējāties %HOMEORG%. ja tas nav pareizi, izvēlieties citu." -msgid "Manager" -msgstr "Priekšnieks" +msgid "You have previously chosen to authenticate at" +msgstr "Iepriekš Jūs autentificējāties pie" -msgid "Affiliation at home organization" -msgstr "Amats organizācijā" +msgid "You have successfully logged out from all services listed above." +msgstr "Jūs esat sekmīgi atslēdzies un augstāk uzskaitītajiem servisiem." -msgid "Help desk homepage" -msgstr "Palīdzības dienesta interneta lapa" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Kaut kādu iemeslu dēļ parole nav nosūtīta. Lūdzu mēģiniet vēlreiz." -msgid "Configuration check" -msgstr "Konfigurācijas pārbaude" +msgid "Your attributes" +msgstr "Atribūti" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 identitātes piegādātājs (attālināts)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Šeit ir SimpleSAMLphp ģenerētie metadati. Jūs varat tos sūtīt partneriem, lai izveidotu uzticamu federāciju." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Sesija ir derīga %remaining% sekundes no šī brīža." -msgid "Organizational homepage" -msgstr "Organizācijas mājas lapa" +msgid "[Preferred choice]" +msgstr "(Mana labākā izvēle)" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Jūs izmantojat testa (pirmsprodukcijas) sistēmu. Šī autentifikācija ir tikai testēšanas vajadzībām. Ja kāds Jums atsūtījis saiti uz šejieni un Jūs neesat testētājs, Jums te nav jāatrodas." +msgid "not set" +msgstr "" diff --git a/locales/nb/LC_MESSAGES/messages.po b/locales/nb/LC_MESSAGES/messages.po index e073827f6a..06b1412ec6 100644 --- a/locales/nb/LC_MESSAGES/messages.po +++ b/locales/nb/LC_MESSAGES/messages.po @@ -1,732 +1,816 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Ingen SAML-respons angitt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Ingen SAML-melding angitt" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "En tjeneste har bedt om bekreftelse på din identitet. Skriv inn ditt brukernavn og passord for å autentisere deg." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Tilhørighet" + +msgid "Affiliation at home organization" +msgstr "Gruppetilhørighet" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "En feil oppstod da SAML-forespørselen skulle lages." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "En feil oppsto i behandlingen av logout-forespørselen." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "En uventet feilsituasjon oppstod" + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Siden du er i debug modus kan du se innholdet i meldingene du sender." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Godkjenning avbrutt" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Feil i autentiseringskilden %AUTHSOURCE%. Feilen var: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Autentisering feilet: sertifikatet nettleseren din sendte er ugyldig, og kan ikke leses" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Authentisering feilet: sertifikatet nettleseren din sendte er ukjent" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Autentisering feilet: nettleseren din sendte ikke noe klient-sertifikat" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Autentiseringskildefeil" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Feil forespørsel motatt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Ugyldig forespørsel til SAML 2.0 Discovery-tjenesten" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS-feil" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Sertifikater" + +msgid "Change your home organization" +msgstr "Endre din vertsorganisasjon" + +msgid "Choose home organization" +msgstr "Velg vertsorganisasjon" + +msgid "Choose your home organization" +msgstr "Velg vertsorganisasjon" + +msgid "Common name" +msgstr "Fullt navn" + +msgid "Completed" +msgstr "Fullført" + +msgid "Configuration check" +msgstr "Sjekker konfigurasjonen" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Feil i oppsettet" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Feil i laging av forespørselen" +msgid "Contact information:" +msgstr "Kontaktinformasjon:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Ugyldig forespørsel til SAML 2.0 Discovery-tjenesten" +msgid "Converted metadata" +msgstr "Konvertert metadata" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Fikk ikke svart på autentiserings-forespørsel" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Ugyldig sertifikat" +msgid "Date of birth" +msgstr "Fødselsdato" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP-feil" +msgid "Debug information" +msgstr "Detaljer for feilsøking" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Informasjon om utlogging er tapt" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Feil i behandling av logout-forespørselen" +msgid "Display name" +msgstr "Navn som normalt vises" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Feil ved lasting av metadata" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Entydig navn (DN) for brukerens vertsorganisasjon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Ingen metadata funnet" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Entydig navn for organisasjonsenheten som brukeren primært er tilknyttet" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Ingen tilgang" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Entydig navn (DN) for brukerens organisasjonsenhet" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Ikke noe sertifikat mottatt" +msgid "Do you want to logout from all the services above?" +msgstr "Vil du logge ut fra alle tjenestene ovenfor?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Spesifikasjon av RelayState mangler" +msgid "Domain component (DC)" +msgstr "Navneledd (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Tilstandsinformasjon tapt" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Last ned X509-sertifikatene som PEM-filer." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Kan ikke finne siden" +msgid "E-mail address:" +msgstr "E-postadresse:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Passordet er ikke satt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Enten var brukernavnet, eller kombinasjonen med brukernavn og passord feil. Sjekk brukernavn og passord og prøv igjen." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Feil i behandling av svar fra innloggingstjenesten" +msgid "Enter your username and password" +msgstr "Skriv inn brukernavn og passord" + +msgid "Entitlement regarding the service" +msgstr "Rettighet" + +msgid "Error" +msgstr "Feil" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Feil i laging av forespørselen" + +msgid "Error in this metadata entry" +msgstr "Feil i metadataoppføringen" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Feil ved lasting av metadata" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Feil ved behandling av forespørsel fra SP" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Feil i behandling av svar fra innloggingstjenesten" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Feil i behandling av logout-forespørselen" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Feilmelding mottatt fra innloggingstjenesten" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Uhåndtert feil" +msgid "Error report sent" +msgstr "Feilrapport sent" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Ukjent sertifikat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Feil i kommunikasjonen med CAS-tjeneren." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Godkjenning avbrutt" +msgid "Explain what you did when this error occurred..." +msgstr "Forklar hva du gjorde da feilen oppsto..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Feil brukernavn og passord" +msgid "Fax number" +msgstr "Faksnummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Du brukte AssertionConsumerService-grensesnittet uten å angi en SAML AuthenticationResponse." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Feil i autentiseringskilden %AUTHSOURCE%. Feilen var: %REASON%" +msgid "Given name" +msgstr "Fornavn" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "En feil oppsto i forespørselen til denne siden. Grunnen var: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Gå tilbake til SimpleSAMLphp installasjonen sin startside." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Feil i kommunikasjonen med CAS-tjeneren." +msgid "Go back to the file list" +msgstr "Gå tilbake til fil-listen" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Det virker som det er en feil i oppsettet av SimpleSAMLphp." +msgid "Hello, %who%!" +msgstr "Hallo, %who%!" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "En feil oppstod da SAML-forespørselen skulle lages." +msgid "Hello, Untranslated World!" +msgstr "Hallo, oversatte verden!" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Parametere sendt til discovery-tjenesten var ikke i korrekt format." +msgid "Help desk homepage" +msgstr "Hjemmesiden til brukerstøtte" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "En feil oppsto da innloggingstjenesten prøvde å lage et svar på autentiserings-forespørselen." +msgid "Help! I don't remember my password." +msgstr "Hjelp! Jeg har glemt passordet mitt." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Autentisering feilet: sertifikatet nettleseren din sendte er ugyldig, og kan ikke leses" +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Her er metadata som SimpleSAMLphp har generert for deg. Du må utveksle metadata med de partene du stoler på for å sette opp en føderasjon." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP er brukerkatalogen, og når du forsøker å logge inn prøver vi å kontakten en LDAP-katalog. Da vi forsøkte det denne gangen, oppsto en feil." +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Hei, dette er en statusside på SimpleSAMLphp. Her kan du se om sesjonen din er timet ut, hvor lenge det er til den timer ut og attributter som er knyttet til din sesjon." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Informasjonen om den nåværende utloggingen har gått tapt. Du bør gå tilbake til den opprinnelige tjesesten og prøve å logge ut på nytt. Informasjon om utloggingsoperasjoner er kun lagret i en begrenset tid - vanligvis noen timer. Dette er lengere tid enn en vanlig utlogging skal ta, så denne feilen kan tyde på at noe er galt med oppsettet. Ta kontakt med tjenesteyteren hvis problemet gjentar seg." +msgid "Home organization domain name" +msgstr "Unik ID for organisasjon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "En feil oppsto i behandlingen av logout-forespørselen." +msgid "Home postal address" +msgstr "Postadresse hjemme" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Det er en feil i oppsettet for din SimpleSAMLphp-installasjon. Hvis du er administrator for tjenesten, bør du kontrollere at metadata er satt opp riktig." +msgid "Home telephone" +msgstr "Hjemmetelefon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Ikke mulig å finne metadata for %ENTITYID%" +msgid "How to get help" +msgstr "Hvordan få hjelp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Dette endepunktet er ikke aktivert. Sjekk aktiveringsopsjonene i ditt SimpleSAMLphp-oppsett." +msgid "Identity assurance profile" +msgstr "Tillitsnivå for autentisering" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Autentisering feilet: nettleseren din sendte ikke noe klient-sertifikat" +msgid "Identity number assigned by public authorities" +msgstr "Fødselsnummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Kilden til denne forespørselen har ikke angitt noen RelayState-parameter som angir hvor vi skal fortsette etterpå." +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Hvis vil rapportere denne feilen, send også med dette sporingsnummeret. Det gjør det enklere for systemadministratorene å finne ut hva som gikk galt:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Tilstandsinformasjon tapt, det er ikke mulig å gjenoppta forespørselen" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "I SAML 2.0 Metadata XML Format:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Den angitte siden finnes ike. URLen var: %URL%" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "I SimpleSAMLphp format - bruk denne dersom du benytter SimpleSAMLphp i den andre enden:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Den angitte siden finnes ikke. Grunnen er: %REASON%. URLen var: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Feil brukernavn og passord" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Admin passordet i konfigurasjonen (auth.adminpassword) er ikke satt til noe annet enn default verdien. Bytt passord i config.php." +msgid "Incorrect username or password." +msgstr "Feil brukernavn eller passord." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Du presenterte ikke et gyldig sertifikat" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Svaret mottatt fra innloggingstjenesten kan ikke aksepteres." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Ugyldig sertifikat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Innloggingstjenesten mottok en autentiserings-forespørsel fra en tjeneste, men en feil oppsto i behandling av forespørselen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Innloggingstjenesten svarte med en feilmelding. (Statuskoden i SAML-svaret var noe annet enn OK)" +msgid "JPEG Photo" +msgstr "JPEG-foto" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Du brukte SingleLogoutService-grensesnittet uten å angi enten en SAML LogoutRequest eller en LogoutResponse." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP-feil" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "En uventet feilsituasjon oppstod" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP er brukerkatalogen, og når du forsøker å logge inn prøver vi å kontakten en LDAP-katalog. Da vi forsøkte det denne gangen, oppsto en feil." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Authentisering feilet: sertifikatet nettleseren din sendte er ukjent" +msgid "Labeled URI" +msgstr "URI med valgfri tilleggskommentar" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Godkjenningen ble avbrutt av brukeren" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Enten var brukernavnet, eller kombinasjonen med brukernavn og passord feil. Sjekk brukernavn og passord og prøv igjen." +msgid "Legal name" +msgstr "Folkeregistrert navn" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Hei, dette er en statusside på SimpleSAMLphp. Her kan du se om sesjonen din er timet ut, hvor lenge det er til den timer ut og attributter som er knyttet til din sesjon." +msgid "Local identity number" +msgstr "Lokalt ID-nummer" -msgid "Logout" -msgstr "Logg ut" +msgid "Locality" +msgstr "Sted" -msgid "Your attributes" -msgstr "Dine attributter" +msgid "Logged out" +msgstr "Utlogget" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Din sesjon er gyldig i %remaining% sekunder fra nå." +msgid "Logging out of the following services:" +msgstr "Logger ut fra følgende tjenester:" -msgid "Hello, Untranslated World!" -msgstr "Hallo, oversatte verden!" +msgid "Logging out..." +msgstr "Logger ut..." -msgid "World" -msgstr "Verden" +msgid "Login" +msgstr "Logg inn" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Vennligst velg hvilken identitetsleverandør du vil bruke for å logge inn:" +msgid "Login at" +msgstr "Logg inn hos" -msgid "Remember my choice" -msgstr "Husk mitt valg" +msgid "Logout" +msgstr "Logg ut" -msgid "Select" -msgstr "Velg" +msgid "Logout failed" +msgstr "Utlogging feilet" -msgid "Select your identity provider" -msgstr "Velg din identitetsleverandør" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Informasjon om utlogging er tapt" -msgid "Sending message" -msgstr "Sender melding" +msgid "Mail" +msgstr "E-post" -msgid "Yes, continue" -msgstr "Ja, fortsett" +msgid "Manager" +msgstr "Overordnet" -msgid "Debug information" -msgstr "Detaljer for feilsøking" +msgid "Message" +msgstr "Melding" -msgid "E-mail address:" -msgstr "E-postadresse:" +msgid "Metadata" +msgstr "Metadata" -msgid "Explain what you did when this error occurred..." -msgstr "Forklar hva du gjorde da feilen oppsto..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Ingen metadata funnet" -msgid "How to get help" -msgstr "Hvordan få hjelp" +msgid "Metadata overview" +msgstr "Oversikt over metadata" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Hvis vil rapportere denne feilen, send også med dette sporingsnummeret. Det gjør det enklere for systemadministratorene å finne ut hva som gikk galt:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Hvis du ønsker at brukerstøtte skal kunne kontakte deg igjen i forbindelse med denne feilen, må du oppgi e-postadressen din nedenfor:" +msgid "Mobile" +msgstr "Mobiltelefon" -msgid "Report errors" -msgstr "Rapporter feil" +msgid "Next" +msgstr "Fortsett" -msgid "Send error report" -msgstr "Send feilrapport" +msgid "Nickname" +msgstr "Kallenavn" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Detaljene nedenfor kan være av interesse for administratoren / brukerstøtte:" +msgid "No" +msgstr "Nei" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Denne feilen skyldes sannsynligvis feil i oppsettet av SimpleSAMLphp eller den er en følge av en uforutsett hendelse. Kontakt administratoren av denne tjenesten og rapporter så mye som mulig angående feilen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Spesifikasjon av RelayState mangler" -msgid "[Preferred choice]" -msgstr "[Foretrukket valg]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Ingen SAML-melding angitt" -msgid "Hello, %who%!" -msgstr "Hallo, %who%!" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Person's principal name at home organization" -msgstr "Personlig ID hos organisasjonen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Ingen SAML-respons angitt" -msgid "Superfluous options in config file" -msgstr "Overføldig element i konfigurasjonsfilen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Ingen tilgang" -msgid "Mobile" -msgstr "Mobiltelefon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Ikke noe sertifikat mottatt" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Tjenesteleverandør (intern)" +msgid "No errors found." +msgstr "Ingen feil funnet" -msgid "Display name" -msgstr "Navn som normalt vises" +msgid "No identity providers found. Cannot continue." +msgstr "" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP metadata" +msgid "No, cancel" +msgstr "Nei" + +msgid "No, only %SP%" +msgstr "Nei, bare %SP%" msgid "Notices" msgstr "Notiser" -msgid "Home telephone" -msgstr "Hjemmetelefon" +msgid "On hold" +msgstr "På vent" -msgid "Service Provider" -msgstr "Tjenesteleverandør" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "En eller flere av tjenestene du er logget inn på støtter ikke logout. Lukk nettleseren, dersom du ønsker å logge ut fra disse tjenestene." -msgid "Incorrect username or password." -msgstr "Feil brukernavn eller passord." +msgid "Optional fields" +msgstr "Valgbart felt" + +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Hvis du ønsker at brukerstøtte skal kunne kontakte deg igjen i forbindelse med denne feilen, må du oppgi e-postadressen din nedenfor:" + +msgid "Options missing from config file" +msgstr "Mangler element i konfigurasjonsfilen" -msgid "Submit message" -msgstr "Send melding" +msgid "Organization" +msgstr "Organisasjon" -msgid "Locality" -msgstr "Sted" +msgid "Organization name" +msgstr "Navn på organisasjon" -msgid "The following required fields was not found" -msgstr "Følgende obligatoriske felter ble ikke funnet" +msgid "Organization's legal name" +msgstr "Foretaksnavn" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Last ned X509-sertifikatene som PEM-filer." +msgid "Organizational homepage" +msgstr "Organisasjonens hjemmeside" msgid "Organizational number" msgstr "Organisasjonsnummer" -msgid "Post office box" -msgstr "Postboks" +msgid "Organizational unit" +msgstr "Organisasjonsenhet" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "En tjeneste har bedt om bekreftelse på din identitet. Skriv inn ditt brukernavn og passord for å autentisere deg." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Kan ikke finne siden" -msgid "Error" -msgstr "Feil" +msgid "Parse" +msgstr "Pars" -msgid "Next" -msgstr "Fortsett" +msgid "Password" +msgstr "Passord" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Entydig navn (DN) for brukerens organisasjonsenhet" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Passordet er ikke satt" -msgid "Converted metadata" -msgstr "Konvertert metadata" +msgid "Persistent pseudonymous ID" +msgstr "Persistent anonym ID" -msgid "Mail" -msgstr "E-post" +msgid "Person's principal name at home organization" +msgstr "Personlig ID hos organisasjonen" -msgid "No, cancel" -msgstr "Nei" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Vennligst velg hvilken identitetsleverandør du vil bruke for å logge inn:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Du har valgt %HOMEORG% som din vertsorganisasjon. Dersom dette er feil kan du velge en annen." +msgid "Post office box" +msgstr "Postboks" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Entydig navn for organisasjonsenheten som brukeren primært er tilknyttet" +msgid "Postal address" +msgstr "Postadresse" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "For å se på detaljene i en SAML-entitet, klikk på SAML-entitet overskriften" +msgid "Postal code" +msgstr "Postnummer" -msgid "Enter your username and password" -msgstr "Skriv inn brukernavn og passord" +msgid "Preferred language" +msgstr "Foretrukket språk" -msgid "Login at" -msgstr "Logg inn hos" +msgid "Primary affiliation" +msgstr "Primær tilknytning til organisasjon" -msgid "No" -msgstr "Nei" +msgid "Private information elements" +msgstr "Private informasjonselement" -msgid "Home postal address" -msgstr "Postadresse hjemme" +msgid "Remember" +msgstr "Godta også for fremtiden" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP Demo Eksempel" +msgid "Remember my choice" +msgstr "Husk mitt valg" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 Identitetsleverandør (ekstern)" +msgid "Report errors" +msgstr "Rapporter feil" -msgid "Do you want to logout from all the services above?" -msgstr "Vil du logge ut fra alle tjenestene ovenfor?" +msgid "Required fields" +msgstr "Obligatorisk felt" -msgid "Given name" -msgstr "Fornavn" +msgid "Return to service" +msgstr "Tilbake til tjenesten" -msgid "Identity assurance profile" -msgstr "Tillitsnivå for autentisering" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Identitetsleverandør (ekstern)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 Identitetsleverandør (ekstern)" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP Demo Eksempel" -msgid "Organization name" -msgstr "Navn på organisasjon" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Du er i ferd med å sende en melding. Trykk knappen «Send melding» for å fortsette." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP metadata" -msgid "Home organization domain name" -msgstr "Unik ID for organisasjon" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 tjenesteleverandør (intern)" -msgid "Go back to the file list" -msgstr "Gå tilbake til fil-listen" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Feilrapport sent" +msgid "Select" +msgstr "Velg" -msgid "Common name" -msgstr "Fullt navn" +msgid "Select configuration file to check:" +msgstr "Velg hvilken konfigurasjonfil som skal sjekkes" -msgid "Logout failed" -msgstr "Utlogging feilet" +msgid "Select your identity provider" +msgstr "Velg din identitetsleverandør" -msgid "Identity number assigned by public authorities" -msgstr "Fødselsnummer" +msgid "Send e-mail to help desk" +msgstr "Send e-post til brukerstøtte" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation identitetsleverandør (ekstern)" +msgid "Send error report" +msgstr "Send feilrapport" -msgid "Some error occurred" -msgstr "En feil har oppstått" +msgid "Sending message" +msgstr "Sender melding" -msgid "Organization" -msgstr "Organisasjon" +msgid "Service Provider" +msgstr "Tjenesteleverandør" -msgid "Choose home organization" -msgstr "Velg vertsorganisasjon" +msgid "Session size: %SIZE%" +msgstr "Sesjons størrelse: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Persistent anonym ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP metadata" -msgid "No errors found." -msgstr "Ingen feil funnet" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Identitetsleverandør (ekstern)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 tjenesteleverandør (intern)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Identitetsleverandør (ekstern) " -msgid "Required fields" -msgstr "Obligatorisk felt" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP metadata" -msgid "Domain component (DC)" -msgstr "Navneledd (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Tjenesteleverandør (intern)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 Tjenesteleverandør (ekstern)" -msgid "Password" -msgstr "Passord" - -msgid "Nickname" -msgstr "Kallenavn" - -msgid "The error report has been sent to the administrators." -msgstr "Feilrapport er sent til administrator." - -msgid "Date of birth" -msgstr "Fødselsdato" - -msgid "Private information elements" -msgstr "Private informasjonselement" - -msgid "You are also logged in on these services:" -msgstr "Du er også logget inn på disse tjenestene:" +msgid "Shibboleth demo" +msgstr "Shibboleth Demo" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp diagnostikk" -msgid "No, only %SP%" -msgstr "Nei, bare %SP%" - -msgid "Username" -msgstr "Brukernavn" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Det virker som det er en feil i oppsettet av SimpleSAMLphp." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Gå tilbake til SimpleSAMLphp installasjonen sin startside." +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp-feil" -msgid "You have successfully logged out from all services listed above." -msgstr "Du har nå logget ut fra alle tjenestene listet ovenfor." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Du er nå logget ut fra %SP%." +msgid "Some error occurred" +msgstr "En feil har oppstått" -msgid "Affiliation" -msgstr "Tilhørighet" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Tilstandsinformasjon tapt" -msgid "You have been logged out." -msgstr "Du er nå utlogget." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Tilstandsinformasjon tapt, det er ikke mulig å gjenoppta forespørselen" -msgid "Return to service" -msgstr "Tilbake til tjenesten" +msgid "Street" +msgstr "Gate" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation tjenesteleverandør (intern)" +msgid "Submit message" +msgstr "Send melding" -msgid "Preferred language" -msgstr "Foretrukket språk" +msgid "Superfluous options in config file" +msgstr "Overføldig element i konfigurasjonsfilen" msgid "Surname" msgstr "Etternavn" -msgid "The following fields was not recognized" -msgstr "Følgende felt ble ikke gjenkjent" - -msgid "User ID" -msgstr "Bruker-ID" - -msgid "JPEG Photo" -msgstr "JPEG-foto" - -msgid "Postal address" -msgstr "Postadresse" - -msgid "In SAML 2.0 Metadata XML format:" -msgstr "I SAML 2.0 Metadata XML Format:" +msgid "Telephone number" +msgstr "Telefon" -msgid "Logging out of the following services:" -msgstr "Logger ut fra følgende tjenester:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Innloggingstjenesten svarte med en feilmelding. (Statuskoden i SAML-svaret var noe annet enn OK)" -msgid "Labeled URI" -msgstr "URI med valgfri tilleggskommentar" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Godkjenningen ble avbrutt av brukeren" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Identitetsleverandør (ekstern)" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Detaljene nedenfor kan være av interesse for administratoren / brukerstøtte:" -msgid "Metadata" -msgstr "Metadata" +msgid "The error report has been sent to the administrators." +msgstr "Feilrapport er sent til administrator." -msgid "Login" -msgstr "Logg inn" +msgid "The following fields was not recognized" +msgstr "Følgende felt ble ikke gjenkjent" -msgid "Yes, all services" -msgstr "Ja, alle tjenestene over" +msgid "The following optional fields was not found" +msgstr "Følgende valgbare felt ble ikke funnet" -msgid "Logged out" -msgstr "Utlogget" +msgid "The following required fields was not found" +msgstr "Følgende obligatoriske felter ble ikke funnet" -msgid "Postal code" -msgstr "Postnummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Den angitte siden finnes ike. URLen var: %URL%" -msgid "Logging out..." -msgstr "Logger ut..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Den angitte siden finnes ikke. Grunnen er: %REASON%. URLen var: %URL%" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Identitetsleverandør (ekstern)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Informasjonen om den nåværende utloggingen har gått tapt. Du bør gå tilbake til den opprinnelige tjesesten og prøve å logge ut på nytt. Informasjon om utloggingsoperasjoner er kun lagret i en begrenset tid - vanligvis noen timer. Dette er lengere tid enn en vanlig utlogging skal ta, så denne feilen kan tyde på at noe er galt med oppsettet. Ta kontakt med tjenesteyteren hvis problemet gjentar seg." -msgid "Primary affiliation" -msgstr "Primær tilknytning til organisasjon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Kilden til denne forespørselen har ikke angitt noen RelayState-parameter som angir hvor vi skal fortsette etterpå." -msgid "XML metadata" -msgstr "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Parametere sendt til discovery-tjenesten var ikke i korrekt format." -msgid "Telephone number" -msgstr "Telefon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Greide ikke å logge ut fra en eller flere tjenester. For å forsikre deg om at du blir logget ut, oppfordrer vi deg til å lukke nettleseren din." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Admin passordet i konfigurasjonen (auth.adminpassword) er ikke satt til noe annet enn default verdien. Bytt passord i config.php." -msgid "Entitlement regarding the service" -msgstr "Rettighet" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "En feil oppsto i forespørselen til denne siden. Grunnen var: %REASON%" -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Det er en feil i oppsettet for din SimpleSAMLphp-installasjon. Hvis du er administrator for tjenesten, bør du kontrollere at metadata er satt opp riktig." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Siden du er i debug modus kan du se innholdet i meldingene du sender." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Innloggingstjenesten mottok en autentiserings-forespørsel fra en tjeneste, men en feil oppsto i behandling av forespørselen." -msgid "Certificates" -msgstr "Sertifikater" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Dette endepunktet er ikke aktivert. Sjekk aktiveringsopsjonene i ditt SimpleSAMLphp-oppsett." -msgid "Remember" -msgstr "Godta også for fremtiden" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Denne feilen skyldes sannsynligvis feil i oppsettet av SimpleSAMLphp eller den er en følge av en uforutsett hendelse. Kontakt administratoren av denne tjenesten og rapporter så mye som mulig angående feilen." -msgid "Distinguished name (DN) of person's home organization" -msgstr "Entydig navn (DN) for brukerens vertsorganisasjon" +msgid "Title" +msgstr "Tittel" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Du er i ferd med å sende en melding. Trykk på send melding knappen for å fortsette." +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "For å se på detaljene i en SAML-entitet, klikk på SAML-entitet overskriften" -msgid "Organizational unit" -msgstr "Organisasjonsenhet" +msgid "Tracking number" +msgstr "" -msgid "Local identity number" -msgstr "Lokalt ID-nummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Ikke mulig å finne metadata for %ENTITYID%" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP metadata" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Greide ikke å logge ut fra en eller flere tjenester. For å forsikre deg om at du blir logget ut, oppfordrer vi deg til å lukke nettleseren din." -msgid "Change your home organization" -msgstr "Endre din vertsorganisasjon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "User's password hash" -msgstr "Hash av brukerens passord" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Uhåndtert feil" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "I SimpleSAMLphp format - bruk denne dersom du benytter SimpleSAMLphp i den andre enden:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Ukjent sertifikat" -msgid "Completed" -msgstr "Fullført" +msgid "User ID" +msgstr "Bruker-ID" -msgid "Select configuration file to check:" -msgstr "Velg hvilken konfigurasjonfil som skal sjekkes" +msgid "User's password hash" +msgstr "Hash av brukerens passord" -msgid "On hold" -msgstr "På vent" +msgid "Username" +msgstr "Brukernavn" -msgid "Help! I don't remember my password." -msgstr "Hjelp! Jeg har glemt passordet mitt." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP Demo Eksempel" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Do kan skru av debug modus i den globale SimpleSAMLphp konfigurasjonsfila config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation identitetsleverandør (ekstern)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp-feil" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation tjenesteleverandør (intern)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "En eller flere av tjenestene du er logget inn på støtter ikke logout. Lukk nettleseren, dersom du ønsker å logge ut fra disse tjenestene." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Foretaksnavn" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Svaret mottatt fra innloggingstjenesten kan ikke aksepteres." -msgid "Options missing from config file" -msgstr "Mangler element i konfigurasjonsfilen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "En feil oppsto da innloggingstjenesten prøvde å lage et svar på autentiserings-forespørselen." -msgid "The following optional fields was not found" -msgstr "Følgende valgbare felt ble ikke funnet" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Synd! - Uten riktig brukernavn og passord kan du ikke autentisere deg. Det kan være noen som kan hjelpe deg. Forsøk å kontakt brukerstøtte ved din vertsorganisasjon." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Du kan nå metadata i XML-format på en dedikert URL:" +msgid "World" +msgstr "Verden" -msgid "Street" -msgstr "Gate" +msgid "XML metadata" +msgstr "XML metadata" -msgid "Message" -msgstr "Melding" +msgid "Yes, all services" +msgstr "Ja, alle tjenestene over" -msgid "Contact information:" -msgstr "Kontaktinformasjon:" +msgid "Yes, continue" +msgstr "Ja, fortsett" -msgid "Legal name" -msgstr "Folkeregistrert navn" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Valgbart felt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Du brukte AssertionConsumerService-grensesnittet uten å angi en SAML AuthenticationResponse." -msgid "You have previously chosen to authenticate at" -msgstr "Du har tidligere valg å autentisere deg hos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Du kontaktet loginsiden, men passordet ble ikke sendt med. Forsøk igjen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Du brukte SingleLogoutService-grensesnittet uten å angi enten en SAML LogoutRequest eller en LogoutResponse." -msgid "Fax number" -msgstr "Faksnummer" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Du er i ferd med å sende en melding. Trykk knappen «Send melding» for å fortsette." -msgid "Shibboleth demo" -msgstr "Shibboleth Demo" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Du er i ferd med å sende en melding. Trykk på send melding knappen for å fortsette." -msgid "Error in this metadata entry" -msgstr "Feil i metadataoppføringen" +msgid "You are also logged in on these services:" +msgstr "Du er også logget inn på disse tjenestene:" -msgid "Session size: %SIZE%" -msgstr "Sesjons størrelse: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Du har nå kommet til et test-oppsett. Dette oppsettet for autentisering er kun til bruk for testing og pre-produksjon verifikasjon. Hvis noen sendte deg en link som pekte hit, og du ikke er en tester så fikk du nok en feil link, og skulle ikke vært her." -msgid "Parse" -msgstr "Pars" +msgid "You are now successfully logged out from %SP%." +msgstr "Du er nå logget ut fra %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Synd! - Uten riktig brukernavn og passord kan du ikke autentisere deg. Det kan være noen som kan hjelpe deg. Forsøk å kontakt brukerstøtte ved din vertsorganisasjon." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Du kan nå metadata i XML-format på en dedikert URL:" -msgid "Choose your home organization" -msgstr "Velg vertsorganisasjon" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Do kan skru av debug modus i den globale SimpleSAMLphp konfigurasjonsfila config/config.php." -msgid "Send e-mail to help desk" -msgstr "Send e-post til brukerstøtte" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Du presenterte ikke et gyldig sertifikat" -msgid "Metadata overview" -msgstr "Oversikt over metadata" +msgid "You have been logged out." +msgstr "Du er nå utlogget." -msgid "Title" -msgstr "Tittel" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Du har valgt %HOMEORG% som din vertsorganisasjon. Dersom dette er feil kan du velge en annen." -msgid "Manager" -msgstr "Overordnet" +msgid "You have previously chosen to authenticate at" +msgstr "Du har tidligere valg å autentisere deg hos" -msgid "Affiliation at home organization" -msgstr "Gruppetilhørighet" +msgid "You have successfully logged out from all services listed above." +msgstr "Du har nå logget ut fra alle tjenestene listet ovenfor." -msgid "Help desk homepage" -msgstr "Hjemmesiden til brukerstøtte" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Du kontaktet loginsiden, men passordet ble ikke sendt med. Forsøk igjen." -msgid "Configuration check" -msgstr "Sjekker konfigurasjonen" +msgid "Your attributes" +msgstr "Dine attributter" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Identitetsleverandør (ekstern) " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Her er metadata som SimpleSAMLphp har generert for deg. Du må utveksle metadata med de partene du stoler på for å sette opp en føderasjon." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Din sesjon er gyldig i %remaining% sekunder fra nå." -msgid "Organizational homepage" -msgstr "Organisasjonens hjemmeside" +msgid "[Preferred choice]" +msgstr "[Foretrukket valg]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Du har nå kommet til et test-oppsett. Dette oppsettet for autentisering er kun til bruk for testing og pre-produksjon verifikasjon. Hvis noen sendte deg en link som pekte hit, og du ikke er en tester så fikk du nok en feil link, og skulle ikke vært her." +msgid "not set" +msgstr "" diff --git a/locales/nl/LC_MESSAGES/messages.po b/locales/nl/LC_MESSAGES/messages.po index 61ce746c61..89347ce73c 100644 --- a/locales/nl/LC_MESSAGES/messages.po +++ b/locales/nl/LC_MESSAGES/messages.po @@ -1,788 +1,849 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Geen SAML response gevonden" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Geen SAML bericht opgegeven" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Voor deze dienst is authenticatie vereist. Geef je gebruikersnaam en wachtwoord in onderstaand formulier." + +msgid "ADFS IdP Metadata" +msgstr "ADFS IdP Metadata" + +msgid "ADFS Identity Provider (Hosted)" +msgstr "ADFS Identity Provider (Hosted)" + +msgid "ADFS SP Metadata" +msgstr "ADFS SP Metadata" + +msgid "ADFS Service Provider (Remote)" +msgstr "ADFS Service Provider (Remote)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Affiliatie" + +msgid "Affiliation at home organization" +msgstr "Groep" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Er is een fout opgetreden bij het aanmaken van een SAML request." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Er is een fout opgetreden tijdens het verwerken van een Logout Request." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Een onverwachte foutmelding is opgetreden" + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Omdat u in debug mode bent, kunt u de inhoud van het bericht dat u verstuurt inzien" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Authenticatie afgebroken" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Fout in authenticatiebron %AUTHSOURCE%. Als reden werd gegeven: %REASON%." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Authenticatie niet gelukt: uw browser stuurde een certificaat dat ongeldig is of niet gelezen kon worden" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Authenticatie niet gelukt: het certificaat dat uw browser stuurde is onbekend" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Authenticatie niet gelukt: uw browser stuurde geen certificaat" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Fout in authenticatiebron" +msgid "Authentication status" +msgstr "" + +msgid "Back" +msgstr "Terug" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Incorrect request ontvangen" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 -msgid "CAS Error" -msgstr "CAS Fout" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 -msgid "Configuration error" -msgstr "Configuratie fout" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Fout bij nieuw request" - #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 msgid "Bad request to discovery service" msgstr "Toegangsfout bij discovery service" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 -msgid "Could not create authentication response" -msgstr "Authenticatie response kon niet worden aangemaakt" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Ongeldig certificaat" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP Fout" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Logout informatie is verloren gegaan" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Fout bij het verwerken van een Logout Request" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 +msgid "CAS Error" +msgstr "CAS Fout" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 msgid "Cannot retrieve session data" msgstr "Kan sessie data niet ophalen" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Fout bij het laden van metadata" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadata niet gevonden" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Geen toegang" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Geen certificaat" +msgid "Certificates" +msgstr "Certificaten" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Geen RelayState" +msgid "Change your home organization" +msgstr "Verander je organisatie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Toestandsinformatie verloren" +msgid "Choose home organization" +msgstr "Kies je organisatie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Pagina niet gevonden" +msgid "Choose your home organization" +msgstr "Kies je organisatie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Wachtwoord niet ingevuld" +msgid "Common name" +msgstr "Algemene naam" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Fout in IdP response" +msgid "Completed" +msgstr "Voltooid" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 -msgid "Error processing request from Service Provider" -msgstr "Fout in Service Provider request" +msgid "Configuration check" +msgstr "Configuratie-validatie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 -msgid "Error received from Identity Provider" -msgstr "Foutmelding ontvangen van Identity Provider" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 +msgid "Configuration error" +msgstr "Configuratie fout" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 -msgid "No SAML request provided" -msgstr "Geen SAML request opgegeven" +msgid "Contact information:" +msgstr "Contactinformatie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Onverwachte foutmelding" +msgid "Converted metadata" +msgstr "Geconverteerde metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Onbekend certificaat" +msgid "Copy to clipboard" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Authenticatie afgebroken" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 +msgid "Could not create authentication response" +msgstr "Authenticatie response kon niet worden aangemaakt" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Incorrecte gebruikersnaam of wachtwoord" +msgid "Date of birth" +msgstr "Geboortedatum" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Je hebt de Assertion Consumer Service interface aangeroepen, maar hebt geen SAML Authentication Response meegestuurd." +msgid "Debug information" +msgstr "Debuginformatie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 -msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." -msgstr "Je hebt het Artifact Resolution Service interface aangeroepen, maar stuurde geen SAML ArtifactResolve bericht mee. Merk op dat dit 'endpoint' niet bedoeld is om direct benaderd te worden." +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Fout in authenticatiebron %AUTHSOURCE%. Als reden werd gegeven: %REASON%." +msgid "Display name" +msgstr "Weergavenaam" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Er is een fout opgetreden in het verzoek voor deze pagina. De oorzaak is: %REASON%" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Distinguished name (DN) van de organisatie van de persoon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Fout tijdens communicatie met de CAS server." +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Distinguished name (DN) van de organisatie hoofdafdeling waartoe de persoon behoort" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp is niet goed geconfigureerd." +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Distinguished name (DN) van de afdeling van de persoon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Er is een fout opgetreden bij het aanmaken van een SAML request." +msgid "Do you want to logout from all the services above?" +msgstr "Wil je uitloggen van alle bovenvermelde diensten?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "De parameters die naar de discovery service zijn gestuurd, zijn niet correct volgens de specificatie." +msgid "Domain component (DC)" +msgstr "Domeincomponent" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Tijdens het aanmaken van een authenticatie response door deze Identity Provider is er een fout opgetreden." +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Download de X509-certificaten in PEM-formaat." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Authenticatie niet gelukt: uw browser stuurde een certificaat dat ongeldig is of niet gelezen kon worden" +msgid "E-mail address:" +msgstr "E-mailadres:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "De account database is in LDAP opgeslagen en bij het inloggen moet er worden gecommuniceerd met een LDAP backend. Daarbij is een fout opgetreden." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "De opgegeven gebruikersnaam bestaat niet, of het wachtwoord is ongeldig. Verifieer de gebruikersnaam en probeer het nogmaals." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "De informatie over de huidige logout operatie is verloren gegaan. Je zou nu moeten terugkeren naar de dienst waar je probeerde uit te loggen, om het nogmaals te proberen. Deze fout kan optreden wanneer de logout informatie is verlopen. De logout informatie wordt gedurende een beperkte tijdsduur bewaard, normaal gesproken een aantal uren. Dit is langer dan een normale logout operatie zou moeten duren, dus deze fout kan er op wijzen dat er een configuratie probleem is. Als het probleem zich blijft voordoen kun u contact opnemen met de Service Provider." +msgid "Enter your username and password" +msgstr "Geef je gebruikersnaam en wachtwoord" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Er is een fout opgetreden tijdens het verwerken van een Logout Request." +msgid "Entitlement regarding the service" +msgstr "Recht" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 -msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." -msgstr "Je sessie data kan op dit moment niet opgehaald worden door technische problemen. Probeer het over een paar minuten nogmaals." +msgid "Error" +msgstr "Fout" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "SimpleSAMLphp is niet goed geconfigureerd. De beheerder van deze dienst dient de metadata configuratie te controleren." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Fout bij nieuw request" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Kan geen metadata vinden voor %ENTITYID%" +msgid "Error in this metadata entry" +msgstr "Fout in metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Deze toegangsmogelijkheid is niet beschikbaar. Controleer de opties in de configuratie van SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Fout bij het laden van metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Authenticatie niet gelukt: uw browser stuurde geen certificaat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Error processing request from Service Provider" +msgstr "Fout in Service Provider request" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "De afzender van deze request heeft geen RelayState parameter meegestuurd om aan te geven wat de volgende bestemming is." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Fout in IdP response" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Informatie over de toestand is verloren, en het verzoek kan niet herstart worden" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Fout bij het verwerken van een Logout Request" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Deze pagina bestaat niet. De URL was: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 +msgid "Error received from Identity Provider" +msgstr "Foutmelding ontvangen van Identity Provider" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "De opgegeven pagina kon niet worden gevonden. De oorzaak is: %REASON%. De URL is: %URL%" +msgid "Error report sent" +msgstr "Foutmeldingsrapport verstuurd" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Het default wachtwoord in de configuratie (auth.adminpassword) is niet aangepast; pas de configuratie aan aub." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Fout tijdens communicatie met de CAS server." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Je hebt geen geldig certificaat meegegeven" +msgid "Explain what you did when this error occurred..." +msgstr "Leg uit wat je deed toen deze foutmelding optrad..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Het antwoord van de Identity Provider is niet geaccepteerd." +msgid "Fax number" +msgstr "Faxnummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Deze IdP heeft een authenticatie verzoek ontvangen van een Service Provider, maar er is een fout opgetreden bij het verwerken ervan." +msgid "Format" +msgstr "Formaat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "De Identity Provider antwoordde met een fout. (De statuscode in de SAML Response was niet success)" +msgid "Given name" +msgstr "Voornaam" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Je hebt de SingleLogoutService interface aangeroepen, maar hebt geen SAML LogoutRequest of LogoutResponse meegestuurd." +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Ga terug naar de SimpleSAMLphp installatiepagina" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 -msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." -msgstr "Je hebt het Single Sign On interface aangeroepen, maar stuurde geen SAML Authentication Request mee. Merk op dat dit 'endpoint' niet bedoeld is om direct benaderd te worden." +msgid "Go back to the file list" +msgstr "Ga terug naar de lijst van files." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Een onverwachte foutmelding is opgetreden" +msgid "Group membership" +msgstr "Groepslidmaatschap" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Authenticatie niet gelukt: het certificaat dat uw browser stuurde is onbekend" +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "De authenticatie is afgebroken door de gebruiker" +msgid "Help desk homepage" +msgstr "Helpdesk homepage" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "De opgegeven gebruikersnaam bestaat niet, of het wachtwoord is ongeldig. Verifieer de gebruikersnaam en probeer het nogmaals." +msgid "Help! I don't remember my password." +msgstr "Help! Ik weet mijn wachtwoord niet meer." -msgid "Format" -msgstr "Formaat" +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Dit is de metadata die automatisch is gegenereerd door SimpleSAMLphp. U kunt deze metadata uitwisselen met uw federatiepartners." msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "Dit is de overzichtspagina van SimpleSAMLphp. Hier kunt u zien of uw sessie nog geldig is, hoe lang het nog duurt voordat deze verloopt, en u kunt alle attributen bekijken die aanwezig zijn in deze sessie." -msgid "Logout" -msgstr "Afmelden" +msgid "Home organization domain name" +msgstr "Unieke Organisatie ID" -msgid "SAML Subject" -msgstr "SAML Subject" +msgid "Home postal address" +msgstr "Werkadres" -msgid "Your attributes" -msgstr "Uw attributen" +msgid "Home telephone" +msgstr "Thuistelefoon" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Uw sessie is nog %remaining% seconden geldig vanaf dit moment." +msgid "How to get help" +msgstr "Hoe kan ik hulp vragen" -msgid "not set" -msgstr "niet aanwezig" +msgid "Identity assurance profile" +msgstr "Identiteitsverzekeringsprofiel" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Selecteer de Identity Provider waar je wil authenticeren:" +msgid "Identity number assigned by public authorities" +msgstr "Burgerservicenummer" -msgid "Remember my choice" -msgstr "Onthoud mijn keuze" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Wanneer je deze fout rapporteert, geef dan AUB ook de volgende tracking ID door, waarmee het mogelijk is om jouw sessie in de logs terug te vinden:" -msgid "Select" -msgstr "Kies" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "In SAML 2.0 Metadata XML formaat:" -msgid "Select your identity provider" -msgstr "Kies je Identity Provider" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "In SimpleSAMLphp flat file formaat - gebruik dit wanneer uw federatiepartner ook SimpleSAMLphp gebruikt" -msgid "Sending message" -msgstr "Bericht" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Incorrecte gebruikersnaam of wachtwoord" -msgid "Yes, continue" -msgstr "Ja, ik ga akkoord" +msgid "Incorrect username or password." +msgstr "Gebruikersnaam of wachtwoord niet bekend." -msgid "Debug information" -msgstr "Debuginformatie" +msgid "Information about your current session" +msgstr "" -msgid "E-mail address:" -msgstr "E-mailadres:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Ongeldig certificaat" -msgid "Explain what you did when this error occurred..." -msgstr "Leg uit wat je deed toen deze foutmelding optrad..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -msgid "How to get help" -msgstr "Hoe kan ik hulp vragen" +msgid "JPEG Photo" +msgstr "JPEG-foto" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Wanneer je deze fout rapporteert, geef dan AUB ook de volgende tracking ID door, waarmee het mogelijk is om jouw sessie in de logs terug te vinden:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP Fout" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Voeg desgewenst je e-mailadres toe, zodat de beheerders contact kunnen zoeken voor verder informatie over dit probleem:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "De account database is in LDAP opgeslagen en bij het inloggen moet er worden gecommuniceerd met een LDAP backend. Daarbij is een fout opgetreden." -msgid "Report errors" -msgstr "Rapporteer fouten" +msgid "Labeled URI" +msgstr "URI" -msgid "Send error report" -msgstr "Verstuur het foutmeldingsrapport" +msgid "Language" +msgstr "" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Onderstaande debuginformatie kan van belang zijn voor de beheerder / helpdesk:" +msgid "Legal name" +msgstr "Officiële naam" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Deze foutmelding is waarschijnlijk ontstaan door onverwacht gedrag of door verkeerde configuratie van SimpleSAMLphp. Meld dit bij de beheerder van deze authenticatiedienst, en geef bovenstaande melding door." +msgid "Local identity number" +msgstr "Identiteitsnummer" -msgid "Back" -msgstr "Terug" +msgid "Locality" +msgstr "Plaats" -msgid "[Preferred choice]" -msgstr "[Voorkeurskeuze]" +msgid "Logged out" +msgstr "Uitgelogd" -msgid "Person's principal name at home organization" -msgstr "Persoons ID bij organisatie" +msgid "Logging out of the following services:" +msgstr "Uitloggen van de volgende diensten:" -msgid "Superfluous options in config file" -msgstr "Teveel opties in de config file" +msgid "Logging out..." +msgstr "Uitloggen..." -msgid "Mobile" -msgstr "Mobiel" +msgid "Login" +msgstr "Inloggen" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Service Provider (Hosted)" +msgid "Login at" +msgstr "Inloggen bij" -msgid "Display name" -msgstr "Weergavenaam" +msgid "Logout" +msgstr "Afmelden" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP Metadata" +msgid "Logout failed" +msgstr "Uitloggen mislukt" -msgid "ADFS IdP Metadata" -msgstr "ADFS IdP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Logout informatie is verloren gegaan" -msgid "Notices" -msgstr "Opmerkingen" +msgid "Mail" +msgstr "E-mail" -msgid "Home telephone" -msgstr "Thuistelefoon" +msgid "Manager" +msgstr "Manager" -msgid "Service Provider" -msgstr "Service Provider" +msgid "Message" +msgstr "Bericht" -msgid "Incorrect username or password." -msgstr "Gebruikersnaam of wachtwoord niet bekend." +msgid "Metadata" +msgstr "Metadata" -msgid "Submit message" -msgstr "Verstuur bericht" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadata niet gevonden" -msgid "Locality" -msgstr "Plaats" +msgid "Metadata overview" +msgstr "Metadata-overzicht" -msgid "The following required fields was not found" -msgstr "De volgende verplichte velden konden niet worden gevonden" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Download de X509-certificaten in PEM-formaat." +msgid "Mobile" +msgstr "Mobiel" -msgid "Organizational number" -msgstr "Organisatie nummer" +msgid "Next" +msgstr "Volgende" -msgid "Post office box" -msgstr "Postbus" +msgid "Nickname" +msgstr "Bijnaam" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Voor deze dienst is authenticatie vereist. Geef je gebruikersnaam en wachtwoord in onderstaand formulier." +msgid "No" +msgstr "Nee" -msgid "Error" -msgstr "Fout" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Geen RelayState" -msgid "Next" -msgstr "Volgende" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Geen SAML bericht opgegeven" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Distinguished name (DN) van de afdeling van de persoon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "Geen SAML request opgegeven" -msgid "Converted metadata" -msgstr "Geconverteerde metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Geen SAML response gevonden" -msgid "Mail" -msgstr "E-mail" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Geen toegang" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Geen certificaat" + +msgid "No errors found." +msgstr "Geen fouten gevonden." + +msgid "No identity providers found. Cannot continue." +msgstr "" msgid "No, cancel" msgstr "Nee" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Je hebt %HOMEORG% gekozen als je organisatie. Als dit niet correct is kun je een andere keuze maken." +msgid "No, only %SP%" +msgstr "Nee, alleen %SP%" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Distinguished name (DN) van de organisatie hoofdafdeling waartoe de persoon behoort" +msgid "Notices" +msgstr "Opmerkingen" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Klik op een SAML-entiteit om de details voor die entiteit te bekijken." +msgid "ORCID researcher identifiers" +msgstr "ORCID onderzoeker identifiers" -msgid "Enter your username and password" -msgstr "Geef je gebruikersnaam en wachtwoord" +msgid "On hold" +msgstr "Vastgehouden" -msgid "Login at" -msgstr "Inloggen bij" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Een of meer diensten waarop je bent inlogd hebben geen ondersteuning voor uitloggen. Om er zeker van te zijn dat al je sessies zijn beëindigd, kun je het beste je webbrowser afsluiten." + +msgid "Optional fields" +msgstr "Optionele velden" + +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Voeg desgewenst je e-mailadres toe, zodat de beheerders contact kunnen zoeken voor verder informatie over dit probleem:" + +msgid "Options missing from config file" +msgstr "Opties missen in de config file" + +msgid "Organization" +msgstr "Organisatie" + +msgid "Organization name" +msgstr "Organisatie naam" -msgid "No" -msgstr "Nee" +msgid "Organization's legal name" +msgstr "Organisatie naam" -msgid "Home postal address" -msgstr "Werkadres" +msgid "Organizational homepage" +msgstr "Organisatie homepage" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP Demo" +msgid "Organizational number" +msgstr "Organisatie nummer" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 Identity Provider (Remote)" +msgid "Organizational unit" +msgstr "Afdeling" -msgid "Do you want to logout from all the services above?" -msgstr "Wil je uitloggen van alle bovenvermelde diensten?" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Pagina niet gevonden" -msgid "Given name" -msgstr "Voornaam" +msgid "Parse" +msgstr "Parse" -msgid "Identity assurance profile" -msgstr "Identiteitsverzekeringsprofiel" +msgid "Password" +msgstr "Wachtwoord" -msgid "SAML 2.0 SP Demo Example" -msgstr "SAML 2.0 SP Demo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Wachtwoord niet ingevuld" -msgid "Organization name" -msgstr "Organisatie naam" +msgid "Persistent pseudonymous ID" +msgstr "Persistente anonieme ID" -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "U gaat een bericht versturen. Klik op de Verstuur bericht knop om door te gaan." +msgid "Person's non-reassignable, persistent pseudonymous ID at home organization" +msgstr "Niet opnieuw toekenbare, persistente pseudonieme ID bij organisatie van de persoon" -msgid "Home organization domain name" -msgstr "Unieke Organisatie ID" +msgid "Person's principal name at home organization" +msgstr "Persoons ID bij organisatie" -msgid "Go back to the file list" -msgstr "Ga terug naar de lijst van files." +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Selecteer de Identity Provider waar je wil authenticeren:" -msgid "Error report sent" -msgstr "Foutmeldingsrapport verstuurd" +msgid "Post office box" +msgstr "Postbus" -msgid "Common name" -msgstr "Algemene naam" +msgid "Postal address" +msgstr "Adres" -msgid "Logout failed" -msgstr "Uitloggen mislukt" +msgid "Postal code" +msgstr "Postcode" -msgid "Identity number assigned by public authorities" -msgstr "Burgerservicenummer" +msgid "Preferred language" +msgstr "Voorkeurstaal" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation Identity Provider (Remote)" +msgid "Primary affiliation" +msgstr "Primaire relatie" -msgid "Some error occurred" -msgstr "Er is een fout opgetreden" +msgid "Private information elements" +msgstr "Privé informatie-elementen" -msgid "Organization" -msgstr "Organisatie" +msgid "Processing..." +msgstr "Verwerken..." -msgid "Choose home organization" -msgstr "Kies je organisatie" +msgid "Remember" +msgstr "Bewaar toestemming" -msgid "Persistent pseudonymous ID" -msgstr "Persistente anonieme ID" +msgid "Remember me" +msgstr "Onthoud mij" -msgid "No errors found." -msgstr "Geen fouten gevonden." +msgid "Remember my choice" +msgstr "Onthoud mijn keuze" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Service Provider (Hosted)" +msgid "Remember my username" +msgstr "Onthoud gebruikersnaam" + +msgid "Report errors" +msgstr "Rapporteer fouten" msgid "Required fields" msgstr "Verplichte velden" -msgid "Domain component (DC)" -msgstr "Domeincomponent" +msgid "Return to service" +msgstr "Terug naar service" -msgid "Shib 1.3 Service Provider (Remote)" -msgstr "Shib 1.3 Service Provider (Remote)" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Identity Provider (Hosted)" -msgid "Password" -msgstr "Wachtwoord" +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 Identity Provider (Remote)" -msgid "ORCID researcher identifiers" -msgstr "ORCID onderzoeker identifiers" +msgid "SAML 2.0 SP Demo Example" +msgstr "SAML 2.0 SP Demo" -msgid "Nickname" -msgstr "Bijnaam" +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP Metadata" -msgid "The error report has been sent to the administrators." -msgstr "Het foutmeldingsrapport is verstuurd naar de beheerders" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Service Provider (Hosted)" -msgid "Date of birth" -msgstr "Geboortedatum" +msgid "SAML Subject" +msgstr "SAML Subject" -msgid "Private information elements" -msgstr "Privé informatie-elementen" +msgid "Select" +msgstr "Kies" -msgid "Person's non-reassignable, persistent pseudonymous ID at home organization" -msgstr "Niet opnieuw toekenbare, persistente pseudonieme ID bij organisatie van de persoon" +msgid "Select configuration file to check:" +msgstr "Selecteer een configuratiefile voor validatie:" -msgid "You are also logged in on these services:" -msgstr "Je bent ook ingelogd bij deze diensten:" +msgid "Select your identity provider" +msgstr "Kies je Identity Provider" -msgid "SimpleSAMLphp Diagnostics" -msgstr "SimpleSAMLphp controle" +msgid "Send e-mail to help desk" +msgstr "Stuur een e-mail naar de helpdesk" -msgid "No, only %SP%" -msgstr "Nee, alleen %SP%" +msgid "Send error report" +msgstr "Verstuur het foutmeldingsrapport" -msgid "Username" -msgstr "Gebruikersnaam" +msgid "Sending message" +msgstr "Bericht" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Ga terug naar de SimpleSAMLphp installatiepagina" +msgid "Service Provider" +msgstr "Service Provider" -msgid "You have successfully logged out from all services listed above." -msgstr "Je bent succesvol uitgelogd van de bovenvermelde services." +msgid "Session size: %SIZE%" +msgstr "Sessiegrootte: %SIZE%" -msgid "You are now successfully logged out from %SP%." -msgstr "Je bent nu succesvol uitgelogd van %SP%." +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metadata" -msgid "Affiliation" -msgstr "Affiliatie" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Identity Provider (Hosted)" -msgid "You have been logged out." -msgstr "U bent uitgelogd. Dank u voor het gebruiken van deze dienst." +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Identity Provider (Remote)" -msgid "Return to service" -msgstr "Terug naar service" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metadata" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation Service Provider (Hosted)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Service Provider (Hosted)" -msgid "Remember my username" -msgstr "Onthoud gebruikersnaam" +msgid "Shib 1.3 Service Provider (Remote)" +msgstr "Shib 1.3 Service Provider (Remote)" -msgid "Preferred language" -msgstr "Voorkeurstaal" +msgid "Shibboleth demo" +msgstr "Shibboleth demo" -msgid "Surname" -msgstr "Achternaam" +msgid "SimpleSAMLphp Diagnostics" +msgstr "SimpleSAMLphp controle" -msgid "The following fields was not recognized" -msgstr "De volgende velden zijn niet bekend" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp is niet goed geconfigureerd." -msgid "User ID" -msgstr "Gebruikers ID" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp-fout" -msgid "JPEG Photo" -msgstr "JPEG-foto" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "Postal address" -msgstr "Adres" +msgid "Some error occurred" +msgstr "Er is een fout opgetreden" -msgid "ADFS SP Metadata" -msgstr "ADFS SP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Toestandsinformatie verloren" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "In SAML 2.0 Metadata XML formaat:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Informatie over de toestand is verloren, en het verzoek kan niet herstart worden" -msgid "Logging out of the following services:" -msgstr "Uitloggen van de volgende diensten:" +msgid "Street" +msgstr "Straat" -msgid "Labeled URI" -msgstr "URI" +msgid "Submit message" +msgstr "Verstuur bericht" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Identity Provider (Hosted)" +msgid "Superfluous options in config file" +msgstr "Teveel opties in de config file" -msgid "Metadata" -msgstr "Metadata" +msgid "Surname" +msgstr "Achternaam" -msgid "Login" -msgstr "Inloggen" +msgid "Telephone number" +msgstr "Telefoonnummer" -msgid "Yes, all services" -msgstr "Ja, alle diensten" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "De Identity Provider antwoordde met een fout. (De statuscode in de SAML Response was niet success)" -msgid "Logged out" -msgstr "Uitgelogd" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "De authenticatie is afgebroken door de gebruiker" -msgid "Postal code" -msgstr "Postcode" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Onderstaande debuginformatie kan van belang zijn voor de beheerder / helpdesk:" -msgid "Logging out..." -msgstr "Uitloggen..." +msgid "The error report has been sent to the administrators." +msgstr "Het foutmeldingsrapport is verstuurd naar de beheerders" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Identity Provider (Hosted)" +msgid "The following fields was not recognized" +msgstr "De volgende velden zijn niet bekend" -msgid "Primary affiliation" -msgstr "Primaire relatie" +msgid "The following optional fields was not found" +msgstr "De volgende optionele velden konden niet worden gevonden" -msgid "XML metadata" -msgstr "XML metadata" +msgid "The following required fields was not found" +msgstr "De volgende verplichte velden konden niet worden gevonden" -msgid "Telephone number" -msgstr "Telefoonnummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Deze pagina bestaat niet. De URL was: %URL%" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Het was niet mogelijk bij een of meerdere diensten uit te loggen. Om alle sessies te sluiten, raden wij u aan uw webbrowser te af te sluiten." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "De opgegeven pagina kon niet worden gevonden. De oorzaak is: %REASON%. De URL is: %URL%" -msgid "Group membership" -msgstr "Groepslidmaatschap" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "De informatie over de huidige logout operatie is verloren gegaan. Je zou nu moeten terugkeren naar de dienst waar je probeerde uit te loggen, om het nogmaals te proberen. Deze fout kan optreden wanneer de logout informatie is verlopen. De logout informatie wordt gedurende een beperkte tijdsduur bewaard, normaal gesproken een aantal uren. Dit is langer dan een normale logout operatie zou moeten duren, dus deze fout kan er op wijzen dat er een configuratie probleem is. Als het probleem zich blijft voordoen kun u contact opnemen met de Service Provider." -msgid "Entitlement regarding the service" -msgstr "Recht" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "De afzender van deze request heeft geen RelayState parameter meegestuurd om aan te geven wat de volgende bestemming is." -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "De parameters die naar de discovery service zijn gestuurd, zijn niet correct volgens de specificatie." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Omdat u in debug mode bent, kunt u de inhoud van het bericht dat u verstuurt inzien" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Certificates" -msgstr "Certificaten" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Het default wachtwoord in de configuratie (auth.adminpassword) is niet aangepast; pas de configuratie aan aub." -msgid "Remember" -msgstr "Bewaar toestemming" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Er is een fout opgetreden in het verzoek voor deze pagina. De oorzaak is: %REASON%" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Distinguished name (DN) van de organisatie van de persoon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "SimpleSAMLphp is niet goed geconfigureerd. De beheerder van deze dienst dient de metadata configuratie te controleren." -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "U gaat een bericht versturen. Klik op de Verstuur bericht link om door te gaan." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Deze IdP heeft een authenticatie verzoek ontvangen van een Service Provider, maar er is een fout opgetreden bij het verwerken ervan." -msgid "Organizational unit" -msgstr "Afdeling" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Deze toegangsmogelijkheid is niet beschikbaar. Controleer de opties in de configuratie van SimpleSAMLphp." -msgid "Local identity number" -msgstr "Identiteitsnummer" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Deze foutmelding is waarschijnlijk ontstaan door onverwacht gedrag of door verkeerde configuratie van SimpleSAMLphp. Meld dit bij de beheerder van deze authenticatiedienst, en geef bovenstaande melding door." -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Metadata" +msgid "Title" +msgstr "Titel" -msgid "Change your home organization" -msgstr "Verander je organisatie" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Klik op een SAML-entiteit om de details voor die entiteit te bekijken." -msgid "User's password hash" -msgstr "Password hash" +msgid "Tracking number" +msgstr "" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "In SimpleSAMLphp flat file formaat - gebruik dit wanneer uw federatiepartner ook SimpleSAMLphp gebruikt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Kan geen metadata vinden voor %ENTITYID%" -msgid "Completed" -msgstr "Voltooid" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Het was niet mogelijk bij een of meerdere diensten uit te loggen. Om alle sessies te sluiten, raden wij u aan uw webbrowser te af te sluiten." -msgid "Select configuration file to check:" -msgstr "Selecteer een configuratiefile voor validatie:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "On hold" -msgstr "Vastgehouden" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Onverwachte foutmelding" -msgid "ADFS Identity Provider (Hosted)" -msgstr "ADFS Identity Provider (Hosted)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Onbekend certificaat" -msgid "Help! I don't remember my password." -msgstr "Help! Ik weet mijn wachtwoord niet meer." +msgid "User ID" +msgstr "Gebruikers ID" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "U kunt debug mode uitschakelen in de globale SimpleSAMLphp configuratie file config/config.php." +msgid "User's password hash" +msgstr "Password hash" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp-fout" +msgid "Username" +msgstr "Gebruikersnaam" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Een of meer diensten waarop je bent inlogd hebben geen ondersteuning voor uitloggen. Om er zeker van te zijn dat al je sessies zijn beëindigd, kun je het beste je webbrowser afsluiten." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP Demo" -msgid "or select a file:" -msgstr "of kies een file:" +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation Identity Provider (Remote)" -msgid "Remember me" -msgstr "Onthoud mij" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation Service Provider (Hosted)" -msgid "Organization's legal name" -msgstr "Organisatie naam" +msgid "Warning" +msgstr "" -msgid "Options missing from config file" -msgstr "Opties missen in de config file" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Het antwoord van de Identity Provider is niet geaccepteerd." -msgid "The following optional fields was not found" -msgstr "De volgende optionele velden konden niet worden gevonden" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Tijdens het aanmaken van een authenticatie response door deze Identity Provider is er een fout opgetreden." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "U kunt deze directe URL gebruiken om de metadata XML op te vragen:" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Zonder je gebruikersnaam en wachtwoord kun je je niet authenticeren en dus niet gebruikmaken van deze dienst." -msgid "Street" -msgstr "Straat" +msgid "World" +msgstr "" -msgid "Message" -msgstr "Bericht" +msgid "XML metadata" +msgstr "XML metadata" -msgid "Contact information:" -msgstr "Contactinformatie" +msgid "Yes, all services" +msgstr "Ja, alle diensten" -msgid "Legal name" -msgstr "Officiële naam" +msgid "Yes, continue" +msgstr "Ja, ik ga akkoord" -msgid "Optional fields" -msgstr "Optionele velden" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "Je hebt het Artifact Resolution Service interface aangeroepen, maar stuurde geen SAML ArtifactResolve bericht mee. Merk op dat dit 'endpoint' niet bedoeld is om direct benaderd te worden." -msgid "You have previously chosen to authenticate at" -msgstr "Je hebt eerder gekozen voor authenticatie bij" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Je hebt de Assertion Consumer Service interface aangeroepen, maar hebt geen SAML Authentication Response meegestuurd." -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Je hebt wel iets ingetikt, maar blijkbaar is je wachtwoord niet verstuurd. Probeer het opnieuw AUB." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "Je hebt het Single Sign On interface aangeroepen, maar stuurde geen SAML Authentication Request mee. Merk op dat dit 'endpoint' niet bedoeld is om direct benaderd te worden." -msgid "Fax number" -msgstr "Faxnummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Je hebt de SingleLogoutService interface aangeroepen, maar hebt geen SAML LogoutRequest of LogoutResponse meegestuurd." -msgid "Shibboleth demo" -msgstr "Shibboleth demo" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "U gaat een bericht versturen. Klik op de Verstuur bericht knop om door te gaan." -msgid "Error in this metadata entry" -msgstr "Fout in metadata" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "U gaat een bericht versturen. Klik op de Verstuur bericht link om door te gaan." -msgid "Session size: %SIZE%" -msgstr "Sessiegrootte: %SIZE%" +msgid "You are also logged in on these services:" +msgstr "Je bent ook ingelogd bij deze diensten:" -msgid "Parse" -msgstr "Parse" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Je gaat nu een pre-productiesysteem gebruiken. Deze authenticatie is uitsluitend opgezet voor testen en pre-productie-verfificatie. Als iemand je een link hierheen stuurde, en je bent geen tester, dan is dit waarschijnlijk een vergissing en zou je niet hier moeten zijn." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Zonder je gebruikersnaam en wachtwoord kun je je niet authenticeren en dus niet gebruikmaken van deze dienst." +msgid "You are now successfully logged out from %SP%." +msgstr "Je bent nu succesvol uitgelogd van %SP%." -msgid "ADFS Service Provider (Remote)" -msgstr "ADFS Service Provider (Remote)" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "U kunt deze directe URL gebruiken om de metadata XML op te vragen:" -msgid "Choose your home organization" -msgstr "Kies je organisatie" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "U kunt debug mode uitschakelen in de globale SimpleSAMLphp configuratie file config/config.php." -msgid "Send e-mail to help desk" -msgstr "Stuur een e-mail naar de helpdesk" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Je hebt geen geldig certificaat meegegeven" -msgid "Metadata overview" -msgstr "Metadata-overzicht" +msgid "You have been logged out." +msgstr "U bent uitgelogd. Dank u voor het gebruiken van deze dienst." -msgid "Title" -msgstr "Titel" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Je hebt %HOMEORG% gekozen als je organisatie. Als dit niet correct is kun je een andere keuze maken." -msgid "Manager" -msgstr "Manager" +msgid "You have previously chosen to authenticate at" +msgstr "Je hebt eerder gekozen voor authenticatie bij" -msgid "Affiliation at home organization" -msgstr "Groep" +msgid "You have successfully logged out from all services listed above." +msgstr "Je bent succesvol uitgelogd van de bovenvermelde services." -msgid "Help desk homepage" -msgstr "Helpdesk homepage" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Je hebt wel iets ingetikt, maar blijkbaar is je wachtwoord niet verstuurd. Probeer het opnieuw AUB." -msgid "Configuration check" -msgstr "Configuratie-validatie" +msgid "Your attributes" +msgstr "Uw attributen" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Identity Provider (Remote)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "Je sessie data kan op dit moment niet opgehaald worden door technische problemen. Probeer het over een paar minuten nogmaals." -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Dit is de metadata die automatisch is gegenereerd door SimpleSAMLphp. U kunt deze metadata uitwisselen met uw federatiepartners." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Uw sessie is nog %remaining% seconden geldig vanaf dit moment." -msgid "Organizational homepage" -msgstr "Organisatie homepage" +msgid "[Preferred choice]" +msgstr "[Voorkeurskeuze]" -msgid "Processing..." -msgstr "Verwerken..." +msgid "not set" +msgstr "niet aanwezig" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Je gaat nu een pre-productiesysteem gebruiken. Deze authenticatie is uitsluitend opgezet voor testen en pre-productie-verfificatie. Als iemand je een link hierheen stuurde, en je bent geen tester, dan is dit waarschijnlijk een vergissing en zou je niet hier moeten zijn." +msgid "or select a file:" +msgstr "of kies een file:" diff --git a/locales/nn/LC_MESSAGES/messages.po b/locales/nn/LC_MESSAGES/messages.po index fcc552218f..eefe482355 100644 --- a/locales/nn/LC_MESSAGES/messages.po +++ b/locales/nn/LC_MESSAGES/messages.po @@ -1,732 +1,816 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Fann ikkje SAML-svar" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Fann ikkje SAML-melding" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Ei webteneste har spurt etter autentisering av deg. Skriv inn brukarnamnet ditt og passordet ditt for å autentisera deg." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Rolle ved organisasjonen" + +msgid "Affiliation at home organization" +msgstr "Rolle hos organisasjonen " + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Ein feil oppsto i prosessen med laging av SAML-spørsmålet" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Handteringa av spørsmål om utlogging er ikkje ferdig, det oppsto ein feil." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Programvaren gjev melding om uventa feilsituasjon" + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Sidan du er inne i feilsøkingsmodus, ser du innhaldet av meldinga du sender: " + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Avbroten innlogging" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Innloggingsfeil knytta til %AUTHSOURCE% på grunn av %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Feil autentisering: sertifikatet frå browsaren din er ugyldig eller uleseleg" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Feil autentisering: ukjent sertifikat mottatt frå din browser" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Feil autentisering: din browser sender ikkje sertifikat" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Innloggingsfeil: autentisering" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Feil spørsmål mottatt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Feilforma spørsmål til Discovery Service" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS-feil" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Sertifikat" + +msgid "Change your home organization" +msgstr "Endra vertsorganisasjon" + +msgid "Choose home organization" +msgstr "Vel vertsorganisasjon" + +msgid "Choose your home organization" +msgstr "Vel vertsorganisasjon" + +msgid "Common name" +msgstr "Fullt namn" + +msgid "Completed" +msgstr "Ferdig" + +msgid "Configuration check" +msgstr "Konfigurasjonssjekk" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Konfigurasjonsfeil" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Feil under oppretting av SAML-spørsmål" +msgid "Contact information:" +msgstr "Kontaktinformasjon:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Feilforma spørsmål til Discovery Service" +msgid "Converted metadata" +msgstr "Konverterte metadata" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Kunne ikkje laga svar på autentiseringsspørsmål" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Ugyldig sertifikat" +msgid "Date of birth" +msgstr "Fødselsdato" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP-feil" +msgid "Debug information" +msgstr "Detaljar for feilsøking" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Mista utloggingsinformasjon" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Feil under prosessering av utloggingsspørsmål" +msgid "Display name" +msgstr "Namn slik det normalt blir vist fram" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Feil under lasting av metadata" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Eintydig namn (DN) til heimeorganisasjon for brukaren" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Finn ikkje metadata" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Eintydig namn (DN) til primær organisasjonseining for personen" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Ingen tilgang" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Eintydig namn (DN) til organisasjonseining for brukaren" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Manglar sertifikat" +msgid "Do you want to logout from all the services above?" +msgstr "Vil du logga ut frå alle tenestene?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Ingen RelayState" +msgid "Domain component (DC)" +msgstr "Namneledd (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Mista tilstandsinformasjon" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Last ned X509-sertifikat som PEM-koda filer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Fann ikkje sida" +msgid "E-mail address:" +msgstr "E-postadresse:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Finn ikkje passord" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Fann ingen brukar med det brukarnamnet du oppgav, eller passordet var feil. Sjekk brukarnamn og prøv igjen." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Feil under handtering av svar frå IdP" +msgid "Enter your username and password" +msgstr "Skriv inn brukarnamn og passord" + +msgid "Entitlement regarding the service" +msgstr "URI som viser til eit sett av rettar til spesifikke ressursar" + +msgid "Error" +msgstr "Feil" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Feil under oppretting av SAML-spørsmål" + +msgid "Error in this metadata entry" +msgstr "Feil i dette metadatainnslaget" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Feil under lasting av metadata" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Feil under handtering av svar frå tenesteleverandør (SP)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Feil under handtering av svar frå IdP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Feil under prosessering av utloggingsspørsmål" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Feil frå vertsorganisasjonen (IdP)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Feilsituasjon som ikkje er riktig handtert" +msgid "Error report sent" +msgstr "Feilrapport sendt" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Ukjent sertifikat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Feil under kommunikasjon med CAS-tenaren" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Avbroten innlogging" +msgid "Explain what you did when this error occurred..." +msgstr "Forklar kva du gjorde og korleis feilen oppsto..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Feil brukarnamn eller passord" +msgid "Fax number" +msgstr "Faksnummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Du har brukt grensesnittet for mottak av meldingar (Assertion Consumer Service), men utan å senda SAML autentiseringssvar (Authentication Response)" +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Innloggingsfeil knytta til %AUTHSOURCE% på grunn av %REASON%" +msgid "Given name" +msgstr "Fornamn" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Det er ein feil i spørringa etter denne sida. Grunnen til dette er %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Gå tilbake til SimpleSAMLphp installasjonssida" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Feil under kommunikasjon med CAS-tenaren" +msgid "Go back to the file list" +msgstr "Gå tilbake til filoversikten" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp ser ut til å vera feilkonfigurert" +msgid "Hello, %who%!" +msgstr "Hallo, %who%!" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Ein feil oppsto i prosessen med laging av SAML-spørsmålet" +msgid "Hello, Untranslated World!" +msgstr "Hallo, oversette verd!" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Parameter sendt til Discovery Service er ikkje i samsvar med spesifikasjon." +msgid "Help desk homepage" +msgstr "Heimeside for brukarstøtte" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Denne Identity Provider kunne ikkje laga svar på autentiseringsspørsmålet fordi det oppsto ein feilsituasjon." +msgid "Help! I don't remember my password." +msgstr "Hjelp! Eg har gløymd passordet mitt" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Feil autentisering: sertifikatet frå browsaren din er ugyldig eller uleseleg" +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Her er metadata generert av SimpleSAMLphp for deg. Du kan senda dette metadata-dokumentet til dine partnarar, slik at de kan setja opp ein tillitsføderasjon." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP er brukardatabase din. Når du prøver å logga inn må vi kontakta LDAP-basen. Denne gongen fekk vi ikkje kontakt på grunn av ein feil." +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Hei, dette er statussida for SimpleSAMLphp. Her kan du sjå om sesjonen din er gyldig, kor lenge han varer og du kan sjå alle attributt som blir brukte i sesjonen din." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Informasjon om utlogginga di har blitt borte. Du bør gå tilbake til tenesta du prøver å logga ut av, og prøva ein gong til. Feilen kan vera fordi utlogginga gjekk ut på tid. Utloggingsinformasjon er lagra i eit kort tidsrom (vanlegvis nokre få timar), og dersom utlogging tar lengre tid kan det vera feil i andre deler av konfigurasjonen på webstaden du var innlogga på. Dersom problemet ikkje blir borte, ta kontakt med webstaden du var innlogga på." +msgid "Home organization domain name" +msgstr "Unik ID for organisasjon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Handteringa av spørsmål om utlogging er ikkje ferdig, det oppsto ein feil." +msgid "Home postal address" +msgstr "Postadresse heime" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Installasjonen av SimpleSAMLphp er feilkonfigurert. Dersom du er administrator må du sjekka metadata-konfigurasjonen. Dersom du ikkje er administrator, ta kontakt med henne." +msgid "Home telephone" +msgstr "Heimetelefon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Klarer ikkje å finna metadata for %ENTITYID%" +msgid "How to get help" +msgstr "Send feilrapport" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Endepunktet er ikkje skrudd på. Sjekk Enable Options i konfigurasjonen av SimpleSAMLphp." +msgid "Identity assurance profile" +msgstr "Tillitsnivå for autentisering" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Feil autentisering: din browser sender ikkje sertifikat" +msgid "Identity number assigned by public authorities" +msgstr "Fødselsnummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Opphavsmann til denne meldinga har ikkje sendt med RelayState-parameter. Då veit vi ikke kvar vi skal, og det blir feil." +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Send med sporingsnummeret dersom du vil rapportera feilen. Sporingsnummeret gjer det enklare for systemadministratorane å finna ut kva som er problemet:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Mista tilstandsinformasjon, og klarer ikkje å gjera omstart" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "På SAML 2.0 metadata XML-format" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Fann ikkje den aktuelle sida. URL var: %URL%" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "På flat fil for SimpleSAMLphp. Bruk denne dersom du bruker SimpleSAMLphp på andre sida:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Fann ikkje den aktuelle sida på grunn av %REASON%. URLen var %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Feil brukarnamn eller passord" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Passordet i konfigurasjonen din (auth.adminpassword) er ikkje endra frå opprinneleg verdi, dette er usikkert. Gå inn i konfigurasjonen og bytt passord." +msgid "Incorrect username or password." +msgstr "Feil brukarnamn eller passord." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Du har ikkje brukt eit gyldig sertifikat i kommunikasjonen din" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Svaret frå IdP var ikkje akseptabelt for oss" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Ugyldig sertifikat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Denne identitetsleverandøren (IdP) mottok ei autentiseringsmelding frå ein tenesteleverandør (SP), men det oppsto ein feil under handteringa av meldinga" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Vertsorganisasjonen din (IdP) gav feilmelding (SAML-svaret hadde statuskode som varsla om feil)" +msgid "JPEG Photo" +msgstr "Foto på JPEG-format" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Du har bruk utloggingstenesta (SingleLogoutService), men har ikkje sendt utloggingsmelding (SAML LogoutRequest) eller utloggingssvar (SAML LogoutResponse)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP-feil" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Programvaren gjev melding om uventa feilsituasjon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP er brukardatabase din. Når du prøver å logga inn må vi kontakta LDAP-basen. Denne gongen fekk vi ikkje kontakt på grunn av ein feil." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Feil autentisering: ukjent sertifikat mottatt frå din browser" +msgid "Labeled URI" +msgstr "URI med valfri tilleggskommentar" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Innlogging blei avbroten av sluttbrukaren" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Fann ingen brukar med det brukarnamnet du oppgav, eller passordet var feil. Sjekk brukarnamn og prøv igjen." +msgid "Legal name" +msgstr "Namn registrert i Folkeregisteret" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Hei, dette er statussida for SimpleSAMLphp. Her kan du sjå om sesjonen din er gyldig, kor lenge han varer og du kan sjå alle attributt som blir brukte i sesjonen din." +msgid "Local identity number" +msgstr "Lokalt brukarnummer (ansattnummer, studentnummer, elevnummer osb)" -msgid "Logout" -msgstr "Logg ut" +msgid "Locality" +msgstr "Stad" -msgid "Your attributes" -msgstr "Dine attributtar" +msgid "Logged out" +msgstr "Utlogga" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Din sesjon er gyldig i %remaining% sekund frå no." +msgid "Logging out of the following services:" +msgstr "Logger ut frå følgende tenester:" -msgid "Hello, Untranslated World!" -msgstr "Hallo, oversette verd!" +msgid "Logging out..." +msgstr "Loggar ut..." -msgid "World" -msgstr "Verd" +msgid "Login" +msgstr "Logg inn" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Vel innloggingsteneste (IdP) der du ønskjer å logga inn." +msgid "Login at" +msgstr "Logg inn ved" -msgid "Remember my choice" -msgstr "Hugs mitt val" +msgid "Logout" +msgstr "Logg ut" -msgid "Select" -msgstr "Vel" +msgid "Logout failed" +msgstr "Utlogging feila" -msgid "Select your identity provider" -msgstr "Vel innloggingsteneste" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Mista utloggingsinformasjon" -msgid "Sending message" -msgstr "Sender melding" +msgid "Mail" +msgstr "Epostadresse" -msgid "Yes, continue" -msgstr "Ja, fortsett" +msgid "Manager" +msgstr "Overordna" -msgid "Debug information" -msgstr "Detaljar for feilsøking" +msgid "Message" +msgstr "Melding" -msgid "E-mail address:" -msgstr "E-postadresse:" +msgid "Metadata" +msgstr "Metadata" -msgid "Explain what you did when this error occurred..." -msgstr "Forklar kva du gjorde og korleis feilen oppsto..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Finn ikkje metadata" -msgid "How to get help" -msgstr "Send feilrapport" +msgid "Metadata overview" +msgstr "Oversikt over metadata" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Send med sporingsnummeret dersom du vil rapportera feilen. Sporingsnummeret gjer det enklare for systemadministratorane å finna ut kva som er problemet:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Om du vil at hjelpetenesta skal kontakta deg i samband med denne feilen, må du oppgi epostadressa di:" +msgid "Mobile" +msgstr "Mobiltelefon" -msgid "Report errors" -msgstr "Rapporter feil" +msgid "Next" +msgstr "Neste" -msgid "Send error report" -msgstr "Send feilrapport" +msgid "Nickname" +msgstr "Kallenamn" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Detaljane under kan vera av interesse for administrator eller hjelpetenesta" +msgid "No" +msgstr "Nei" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Denne feilen er truleg på grunn av feilkonfigurasjon av SimpleSAMLphp eller ein ukjent feil. Kontakt administrator av tenesta og rapporter detaljar om feilen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Ingen RelayState" -msgid "[Preferred choice]" -msgstr "Beste val" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Fann ikkje SAML-melding" -msgid "Hello, %who%!" -msgstr "Hallo, %who%!" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Person's principal name at home organization" -msgstr "Brukarnamn hos din organisasjon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Fann ikkje SAML-svar" -msgid "Superfluous options in config file" -msgstr "Overflødig informasjon i konfigurasjonsfila" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Ingen tilgang" -msgid "Mobile" -msgstr "Mobiltelefon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Manglar sertifikat" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Service Provider (Hosted)" +msgid "No errors found." +msgstr "Fann ingen feil" -msgid "Display name" -msgstr "Namn slik det normalt blir vist fram" +msgid "No identity providers found. Cannot continue." +msgstr "" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP Metadata" +msgid "No, cancel" +msgstr "Nei" + +msgid "No, only %SP%" +msgstr "Nei, logg berre ut frå %SP%" msgid "Notices" msgstr "Legg merke til" -msgid "Home telephone" -msgstr "Heimetelefon" +msgid "On hold" +msgstr "Venter" -msgid "Service Provider" -msgstr "Tenesteleverandør" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Ei eller fleire av tenestene du er innlogga på støtter ikkje utlogging. Lukk weblesaren din for å sikra at alle sesjonar blir lukka" -msgid "Incorrect username or password." -msgstr "Feil brukarnamn eller passord." +msgid "Optional fields" +msgstr "Valfrie felt" + +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Om du vil at hjelpetenesta skal kontakta deg i samband med denne feilen, må du oppgi epostadressa di:" + +msgid "Options missing from config file" +msgstr "Det manglar informasjon i konfigurasjonsfila" -msgid "Submit message" -msgstr "Send melding" +msgid "Organization" +msgstr "Organisasjon" -msgid "Locality" -msgstr "Stad" +msgid "Organization name" +msgstr "Namn på organisasjon" -msgid "The following required fields was not found" -msgstr "Fann ikkje følgjande nødvendige felt" +msgid "Organization's legal name" +msgstr "Formelt namn på organisasjonen" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Last ned X509-sertifikat som PEM-koda filer" +msgid "Organizational homepage" +msgstr "Organisasjonen si heimeside (URL)" msgid "Organizational number" msgstr "Organisasjonsnummer" -msgid "Post office box" -msgstr "Postboks" +msgid "Organizational unit" +msgstr "Organisasjonseining" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Ei webteneste har spurt etter autentisering av deg. Skriv inn brukarnamnet ditt og passordet ditt for å autentisera deg." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Fann ikkje sida" -msgid "Error" -msgstr "Feil" +msgid "Parse" +msgstr "Parser" -msgid "Next" -msgstr "Neste" +msgid "Password" +msgstr "Passord" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Eintydig namn (DN) til organisasjonseining for brukaren" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Finn ikkje passord" -msgid "Converted metadata" -msgstr "Konverterte metadata" +msgid "Persistent pseudonymous ID" +msgstr "Persistent anonym ID" -msgid "Mail" -msgstr "Epostadresse" +msgid "Person's principal name at home organization" +msgstr "Brukarnamn hos din organisasjon" -msgid "No, cancel" -msgstr "Nei" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Vel innloggingsteneste (IdP) der du ønskjer å logga inn." -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Du har vald %HOMEORG% som din vertsorganisasjon. Dersom dette er feil, kan du velja ein annan organisasjon frå menyen." +msgid "Post office box" +msgstr "Postboks" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Eintydig namn (DN) til primær organisasjonseining for personen" +msgid "Postal address" +msgstr "Postadresse" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "For å sjå på detaljane for ein SAML entitet, klikk på SAML entitet" +msgid "Postal code" +msgstr "Postnummer" -msgid "Enter your username and password" -msgstr "Skriv inn brukarnamn og passord" +msgid "Preferred language" +msgstr "Førsteval for språk eller målform" -msgid "Login at" -msgstr "Logg inn ved" +msgid "Primary affiliation" +msgstr "Primærtilknyting til organisasjonen" -msgid "No" -msgstr "Nei" +msgid "Private information elements" +msgstr "Private informasjonselement" -msgid "Home postal address" -msgstr "Postadresse heime" +msgid "Remember" +msgstr "Godta også for framtida" -msgid "WS-Fed SP Demo Example" -msgstr "Demonstrasjon av WS-Federation SP" +msgid "Remember my choice" +msgstr "Hugs mitt val" -msgid "Do you want to logout from all the services above?" -msgstr "Vil du logga ut frå alle tenestene?" +msgid "Report errors" +msgstr "Rapporter feil" -msgid "Given name" -msgstr "Fornamn" +msgid "Required fields" +msgstr "Nødvendige felt" -msgid "Identity assurance profile" -msgstr "Tillitsnivå for autentisering" +msgid "Return to service" +msgstr "Gå tilbake til tenesta" + +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Identity Provider (Hosted)" msgid "SAML 2.0 SP Demo Example" msgstr "Demonstrasjon av SAML 2.0 SP" -msgid "Organization name" -msgstr "Namn på organisasjon" +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP Metadata" -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Du er i ferd med å senda ei melding. Trykk på send-knappen for å gå vidare" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Service Provider (Hosted)" -msgid "Home organization domain name" -msgstr "Unik ID for organisasjon" +msgid "SAML 2.0 Service Provider (Remote)" +msgstr "SAML 2.0 Service Provider (Remote)" -msgid "Go back to the file list" -msgstr "Gå tilbake til filoversikten" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Feilrapport sendt" +msgid "Select" +msgstr "Vel" -msgid "Common name" -msgstr "Fullt namn" +msgid "Select configuration file to check:" +msgstr "Vel konfigurasjonsfil som skal sjekkast" -msgid "Logout failed" -msgstr "Utlogging feila" +msgid "Select your identity provider" +msgstr "Vel innloggingsteneste" -msgid "Identity number assigned by public authorities" -msgstr "Fødselsnummer" +msgid "Send e-mail to help desk" +msgstr "Send epost til brukarstøtte" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation Identity Provider (Remote)" +msgid "Send error report" +msgstr "Send feilrapport" -msgid "Some error occurred" -msgstr "Ein feilsituasjon oppsto" +msgid "Sending message" +msgstr "Sender melding" -msgid "Organization" -msgstr "Organisasjon" +msgid "Service Provider" +msgstr "Tenesteleverandør" -msgid "Choose home organization" -msgstr "Vel vertsorganisasjon" +msgid "Session size: %SIZE%" +msgstr "Sesjonsstorleik: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Persistent anonym ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metadata" -msgid "No errors found." -msgstr "Fann ingen feil" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Identity Provider (Hosted)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Service Provider (Hosted)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Identity Provider (Remote)" -msgid "Required fields" -msgstr "Nødvendige felt" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metadata" -msgid "Domain component (DC)" -msgstr "Namneledd (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Service Provider (Hosted)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 Service Provider (Remote)" -msgid "Password" -msgstr "Passord" - -msgid "Nickname" -msgstr "Kallenamn" - -msgid "The error report has been sent to the administrators." -msgstr "Feilrapport har blitt sendt til administrator" - -msgid "Date of birth" -msgstr "Fødselsdato" - -msgid "Private information elements" -msgstr "Private informasjonselement" - -msgid "You are also logged in on these services:" -msgstr "Du er i tillegg logga inn på desse tenestene:" +msgid "Shibboleth demo" +msgstr "Demonstrasjon av Shibboleth" msgid "SimpleSAMLphp Diagnostics" msgstr "Feilsøking av SimpleSAMLphp" -msgid "No, only %SP%" -msgstr "Nei, logg berre ut frå %SP%" - -msgid "Username" -msgstr "Brukarnamn" - -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Gå tilbake til SimpleSAMLphp installasjonssida" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp ser ut til å vera feilkonfigurert" -msgid "You have successfully logged out from all services listed above." -msgstr "Du er ferdig utlogga frå alle tenestene" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp feil" -msgid "You are now successfully logged out from %SP%." -msgstr "Du er ferdig utlogga frå %SP%." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "Affiliation" -msgstr "Rolle ved organisasjonen" +msgid "Some error occurred" +msgstr "Ein feilsituasjon oppsto" -msgid "You have been logged out." -msgstr "Du har blitt logga ut. Takk for at du brukte denne tenesta." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Mista tilstandsinformasjon" -msgid "Return to service" -msgstr "Gå tilbake til tenesta" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Mista tilstandsinformasjon, og klarer ikkje å gjera omstart" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation Service Provider (Hosted)" +msgid "Street" +msgstr "Gateadresse" -msgid "Preferred language" -msgstr "Førsteval for språk eller målform" +msgid "Submit message" +msgstr "Send melding" -msgid "SAML 2.0 Service Provider (Remote)" -msgstr "SAML 2.0 Service Provider (Remote)" +msgid "Superfluous options in config file" +msgstr "Overflødig informasjon i konfigurasjonsfila" msgid "Surname" msgstr "Etternamn" -msgid "The following fields was not recognized" -msgstr "Gjenkjenner ikkje følgjande felt" - -msgid "User ID" -msgstr "Lokalt brukarnamn" - -msgid "JPEG Photo" -msgstr "Foto på JPEG-format" - -msgid "Postal address" -msgstr "Postadresse" - -msgid "In SAML 2.0 Metadata XML format:" -msgstr "På SAML 2.0 metadata XML-format" +msgid "Telephone number" +msgstr "Telefon" -msgid "Logging out of the following services:" -msgstr "Logger ut frå følgende tenester:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Vertsorganisasjonen din (IdP) gav feilmelding (SAML-svaret hadde statuskode som varsla om feil)" -msgid "Labeled URI" -msgstr "URI med valfri tilleggskommentar" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Innlogging blei avbroten av sluttbrukaren" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Identity Provider (Hosted)" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Detaljane under kan vera av interesse for administrator eller hjelpetenesta" -msgid "Metadata" -msgstr "Metadata" +msgid "The error report has been sent to the administrators." +msgstr "Feilrapport har blitt sendt til administrator" -msgid "Login" -msgstr "Logg inn" +msgid "The following fields was not recognized" +msgstr "Gjenkjenner ikkje følgjande felt" -msgid "Yes, all services" -msgstr "Ja, logg ut frå alle" +msgid "The following optional fields was not found" +msgstr "Fann ikkje følgjande valfrie felt" -msgid "Logged out" -msgstr "Utlogga" +msgid "The following required fields was not found" +msgstr "Fann ikkje følgjande nødvendige felt" -msgid "Postal code" -msgstr "Postnummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Fann ikkje den aktuelle sida. URL var: %URL%" -msgid "Logging out..." -msgstr "Loggar ut..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Fann ikkje den aktuelle sida på grunn av %REASON%. URLen var %URL%" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Identity Provider (Hosted)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Informasjon om utlogginga di har blitt borte. Du bør gå tilbake til tenesta du prøver å logga ut av, og prøva ein gong til. Feilen kan vera fordi utlogginga gjekk ut på tid. Utloggingsinformasjon er lagra i eit kort tidsrom (vanlegvis nokre få timar), og dersom utlogging tar lengre tid kan det vera feil i andre deler av konfigurasjonen på webstaden du var innlogga på. Dersom problemet ikkje blir borte, ta kontakt med webstaden du var innlogga på." -msgid "Primary affiliation" -msgstr "Primærtilknyting til organisasjonen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Opphavsmann til denne meldinga har ikkje sendt med RelayState-parameter. Då veit vi ikke kvar vi skal, og det blir feil." -msgid "XML metadata" -msgstr "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Parameter sendt til Discovery Service er ikkje i samsvar med spesifikasjon." -msgid "Telephone number" -msgstr "Telefon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Greide ikkje å logge ut frå ein eller fleire tenester. For å sikre deg at du blir logga ut, oppfordrar vi deg til å lukke nettlesaren din." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Passordet i konfigurasjonen din (auth.adminpassword) er ikkje endra frå opprinneleg verdi, dette er usikkert. Gå inn i konfigurasjonen og bytt passord." -msgid "Entitlement regarding the service" -msgstr "URI som viser til eit sett av rettar til spesifikke ressursar" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Det er ein feil i spørringa etter denne sida. Grunnen til dette er %REASON%" -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Installasjonen av SimpleSAMLphp er feilkonfigurert. Dersom du er administrator må du sjekka metadata-konfigurasjonen. Dersom du ikkje er administrator, ta kontakt med henne." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Sidan du er inne i feilsøkingsmodus, ser du innhaldet av meldinga du sender: " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Denne identitetsleverandøren (IdP) mottok ei autentiseringsmelding frå ein tenesteleverandør (SP), men det oppsto ein feil under handteringa av meldinga" -msgid "Certificates" -msgstr "Sertifikat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Endepunktet er ikkje skrudd på. Sjekk Enable Options i konfigurasjonen av SimpleSAMLphp." -msgid "Remember" -msgstr "Godta også for framtida" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Denne feilen er truleg på grunn av feilkonfigurasjon av SimpleSAMLphp eller ein ukjent feil. Kontakt administrator av tenesta og rapporter detaljar om feilen." -msgid "Distinguished name (DN) of person's home organization" -msgstr "Eintydig namn (DN) til heimeorganisasjon for brukaren" +msgid "Title" +msgstr "Tittel" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Du er i ferd med å senda ei melding. Trykk på send-peikaren for å gå vidare" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "For å sjå på detaljane for ein SAML entitet, klikk på SAML entitet" -msgid "Organizational unit" -msgstr "Organisasjonseining" +msgid "Tracking number" +msgstr "" -msgid "Local identity number" -msgstr "Lokalt brukarnummer (ansattnummer, studentnummer, elevnummer osb)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Klarer ikkje å finna metadata for %ENTITYID%" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Metadata" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Greide ikkje å logge ut frå ein eller fleire tenester. For å sikre deg at du blir logga ut, oppfordrar vi deg til å lukke nettlesaren din." -msgid "Change your home organization" -msgstr "Endra vertsorganisasjon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "User's password hash" -msgstr "Passord for brukaren (lagra som hash-verdi)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Feilsituasjon som ikkje er riktig handtert" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "På flat fil for SimpleSAMLphp. Bruk denne dersom du bruker SimpleSAMLphp på andre sida:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Ukjent sertifikat" -msgid "Completed" -msgstr "Ferdig" +msgid "User ID" +msgstr "Lokalt brukarnamn" -msgid "Select configuration file to check:" -msgstr "Vel konfigurasjonsfil som skal sjekkast" +msgid "User's password hash" +msgstr "Passord for brukaren (lagra som hash-verdi)" -msgid "On hold" -msgstr "Venter" +msgid "Username" +msgstr "Brukarnamn" -msgid "Help! I don't remember my password." -msgstr "Hjelp! Eg har gløymd passordet mitt" +msgid "WS-Fed SP Demo Example" +msgstr "Demonstrasjon av WS-Federation SP" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Du kan skru av feilsøkingsmodus i den globale konfigurasjonsfila for SimpleSAMLphp config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation Identity Provider (Remote)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp feil" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation Service Provider (Hosted)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Ei eller fleire av tenestene du er innlogga på støtter ikkje utlogging. Lukk weblesaren din for å sikra at alle sesjonar blir lukka" +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Formelt namn på organisasjonen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Svaret frå IdP var ikkje akseptabelt for oss" -msgid "Options missing from config file" -msgstr "Det manglar informasjon i konfigurasjonsfila" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Denne Identity Provider kunne ikkje laga svar på autentiseringsspørsmålet fordi det oppsto ein feilsituasjon." -msgid "The following optional fields was not found" -msgstr "Fann ikkje følgjande valfrie felt" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Synd! - Utan riktig brukarnamn og passord kan du ikkje autentisera deg. Ta kontakt med brukarstøtte hos din organisasjon." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Du kan få metadata i XML på ein URL:" +msgid "World" +msgstr "Verd" -msgid "Street" -msgstr "Gateadresse" +msgid "XML metadata" +msgstr "XML metadata" -msgid "Message" -msgstr "Melding" +msgid "Yes, all services" +msgstr "Ja, logg ut frå alle" -msgid "Contact information:" -msgstr "Kontaktinformasjon:" +msgid "Yes, continue" +msgstr "Ja, fortsett" -msgid "Legal name" -msgstr "Namn registrert i Folkeregisteret" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Valfrie felt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Du har brukt grensesnittet for mottak av meldingar (Assertion Consumer Service), men utan å senda SAML autentiseringssvar (Authentication Response)" -msgid "You have previously chosen to authenticate at" -msgstr "Du har tidlegare logga inn ved" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Passordet blei ikkje sendt. Prøv på nytt." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Du har bruk utloggingstenesta (SingleLogoutService), men har ikkje sendt utloggingsmelding (SAML LogoutRequest) eller utloggingssvar (SAML LogoutResponse)" -msgid "Fax number" -msgstr "Faksnummer" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Du er i ferd med å senda ei melding. Trykk på send-knappen for å gå vidare" -msgid "Shibboleth demo" -msgstr "Demonstrasjon av Shibboleth" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Du er i ferd med å senda ei melding. Trykk på send-peikaren for å gå vidare" -msgid "Error in this metadata entry" -msgstr "Feil i dette metadatainnslaget" +msgid "You are also logged in on these services:" +msgstr "Du er i tillegg logga inn på desse tenestene:" -msgid "Session size: %SIZE%" -msgstr "Sesjonsstorleik: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Du er no inne på eit testsystem. Denne autentiseringsløysinga er for testing og beta-drift, ikkje for vanleg drift. Dersom du har fått peikar hit og du ikkje er utviklar, så er du truleg på feil plass og skulle ikkje vore her." -msgid "Parse" -msgstr "Parser" +msgid "You are now successfully logged out from %SP%." +msgstr "Du er ferdig utlogga frå %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Synd! - Utan riktig brukarnamn og passord kan du ikkje autentisera deg. Ta kontakt med brukarstøtte hos din organisasjon." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Du kan få metadata i XML på ein URL:" -msgid "Choose your home organization" -msgstr "Vel vertsorganisasjon" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Du kan skru av feilsøkingsmodus i den globale konfigurasjonsfila for SimpleSAMLphp config/config.php." -msgid "Send e-mail to help desk" -msgstr "Send epost til brukarstøtte" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Du har ikkje brukt eit gyldig sertifikat i kommunikasjonen din" -msgid "Metadata overview" -msgstr "Oversikt over metadata" +msgid "You have been logged out." +msgstr "Du har blitt logga ut. Takk for at du brukte denne tenesta." -msgid "Title" -msgstr "Tittel" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Du har vald %HOMEORG% som din vertsorganisasjon. Dersom dette er feil, kan du velja ein annan organisasjon frå menyen." -msgid "Manager" -msgstr "Overordna" +msgid "You have previously chosen to authenticate at" +msgstr "Du har tidlegare logga inn ved" -msgid "Affiliation at home organization" -msgstr "Rolle hos organisasjonen " +msgid "You have successfully logged out from all services listed above." +msgstr "Du er ferdig utlogga frå alle tenestene" -msgid "Help desk homepage" -msgstr "Heimeside for brukarstøtte" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Passordet blei ikkje sendt. Prøv på nytt." -msgid "Configuration check" -msgstr "Konfigurasjonssjekk" +msgid "Your attributes" +msgstr "Dine attributtar" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Identity Provider (Remote)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Her er metadata generert av SimpleSAMLphp for deg. Du kan senda dette metadata-dokumentet til dine partnarar, slik at de kan setja opp ein tillitsføderasjon." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Din sesjon er gyldig i %remaining% sekund frå no." -msgid "Organizational homepage" -msgstr "Organisasjonen si heimeside (URL)" +msgid "[Preferred choice]" +msgstr "Beste val" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Du er no inne på eit testsystem. Denne autentiseringsløysinga er for testing og beta-drift, ikkje for vanleg drift. Dersom du har fått peikar hit og du ikkje er utviklar, så er du truleg på feil plass og skulle ikkje vore her." +msgid "not set" +msgstr "" diff --git a/locales/no/LC_MESSAGES/messages.po b/locales/no/LC_MESSAGES/messages.po index e073827f6a..78de1037aa 100644 --- a/locales/no/LC_MESSAGES/messages.po +++ b/locales/no/LC_MESSAGES/messages.po @@ -1,732 +1,816 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: no\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Ingen SAML-respons angitt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Ingen SAML-melding angitt" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "En tjeneste har bedt om bekreftelse på din identitet. Skriv inn ditt brukernavn og passord for å autentisere deg." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Tilhørighet" + +msgid "Affiliation at home organization" +msgstr "Gruppetilhørighet" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "En feil oppstod da SAML-forespørselen skulle lages." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "En feil oppsto i behandlingen av logout-forespørselen." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "En uventet feilsituasjon oppstod" + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Siden du er i debug modus kan du se innholdet i meldingene du sender." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Godkjenning avbrutt" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Feil i autentiseringskilden %AUTHSOURCE%. Feilen var: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Autentisering feilet: sertifikatet nettleseren din sendte er ugyldig, og kan ikke leses" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Authentisering feilet: sertifikatet nettleseren din sendte er ukjent" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Autentisering feilet: nettleseren din sendte ikke noe klient-sertifikat" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Autentiseringskildefeil" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Feil forespørsel motatt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Ugyldig forespørsel til SAML 2.0 Discovery-tjenesten" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS-feil" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Sertifikater" + +msgid "Change your home organization" +msgstr "Endre din vertsorganisasjon" + +msgid "Choose home organization" +msgstr "Velg vertsorganisasjon" + +msgid "Choose your home organization" +msgstr "Velg vertsorganisasjon" + +msgid "Common name" +msgstr "Fullt navn" + +msgid "Completed" +msgstr "Fullført" + +msgid "Configuration check" +msgstr "Sjekker konfigurasjonen" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Feil i oppsettet" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Feil i laging av forespørselen" +msgid "Contact information:" +msgstr "Kontaktinformasjon:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Ugyldig forespørsel til SAML 2.0 Discovery-tjenesten" +msgid "Converted metadata" +msgstr "Konvertert metadata" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Fikk ikke svart på autentiserings-forespørsel" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Ugyldig sertifikat" +msgid "Date of birth" +msgstr "Fødselsdato" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP-feil" +msgid "Debug information" +msgstr "Detaljer for feilsøking" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Informasjon om utlogging er tapt" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Feil i behandling av logout-forespørselen" +msgid "Display name" +msgstr "Navn som normalt vises" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Feil ved lasting av metadata" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Entydig navn (DN) for brukerens vertsorganisasjon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Ingen metadata funnet" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Entydig navn for organisasjonsenheten som brukeren primært er tilknyttet" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Ingen tilgang" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Entydig navn (DN) for brukerens organisasjonsenhet" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Ikke noe sertifikat mottatt" +msgid "Do you want to logout from all the services above?" +msgstr "Vil du logge ut fra alle tjenestene ovenfor?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Spesifikasjon av RelayState mangler" +msgid "Domain component (DC)" +msgstr "Navneledd (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Tilstandsinformasjon tapt" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Last ned X509-sertifikatene som PEM-filer." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Kan ikke finne siden" +msgid "E-mail address:" +msgstr "E-postadresse:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Passordet er ikke satt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Enten var brukernavnet, eller kombinasjonen med brukernavn og passord feil. Sjekk brukernavn og passord og prøv igjen." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Feil i behandling av svar fra innloggingstjenesten" +msgid "Enter your username and password" +msgstr "Skriv inn brukernavn og passord" + +msgid "Entitlement regarding the service" +msgstr "Rettighet" + +msgid "Error" +msgstr "Feil" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Feil i laging av forespørselen" + +msgid "Error in this metadata entry" +msgstr "Feil i metadataoppføringen" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Feil ved lasting av metadata" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Feil ved behandling av forespørsel fra SP" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Feil i behandling av svar fra innloggingstjenesten" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Feil i behandling av logout-forespørselen" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Feilmelding mottatt fra innloggingstjenesten" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Uhåndtert feil" +msgid "Error report sent" +msgstr "Feilrapport sent" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Ukjent sertifikat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Feil i kommunikasjonen med CAS-tjeneren." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Godkjenning avbrutt" +msgid "Explain what you did when this error occurred..." +msgstr "Forklar hva du gjorde da feilen oppsto..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Feil brukernavn og passord" +msgid "Fax number" +msgstr "Faksnummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Du brukte AssertionConsumerService-grensesnittet uten å angi en SAML AuthenticationResponse." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Feil i autentiseringskilden %AUTHSOURCE%. Feilen var: %REASON%" +msgid "Given name" +msgstr "Fornavn" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "En feil oppsto i forespørselen til denne siden. Grunnen var: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Gå tilbake til SimpleSAMLphp installasjonen sin startside." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Feil i kommunikasjonen med CAS-tjeneren." +msgid "Go back to the file list" +msgstr "Gå tilbake til fil-listen" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Det virker som det er en feil i oppsettet av SimpleSAMLphp." +msgid "Hello, %who%!" +msgstr "Hallo, %who%!" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "En feil oppstod da SAML-forespørselen skulle lages." +msgid "Hello, Untranslated World!" +msgstr "Hallo, oversatte verden!" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Parametere sendt til discovery-tjenesten var ikke i korrekt format." +msgid "Help desk homepage" +msgstr "Hjemmesiden til brukerstøtte" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "En feil oppsto da innloggingstjenesten prøvde å lage et svar på autentiserings-forespørselen." +msgid "Help! I don't remember my password." +msgstr "Hjelp! Jeg har glemt passordet mitt." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Autentisering feilet: sertifikatet nettleseren din sendte er ugyldig, og kan ikke leses" +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Her er metadata som SimpleSAMLphp har generert for deg. Du må utveksle metadata med de partene du stoler på for å sette opp en føderasjon." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP er brukerkatalogen, og når du forsøker å logge inn prøver vi å kontakten en LDAP-katalog. Da vi forsøkte det denne gangen, oppsto en feil." +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Hei, dette er en statusside på SimpleSAMLphp. Her kan du se om sesjonen din er timet ut, hvor lenge det er til den timer ut og attributter som er knyttet til din sesjon." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Informasjonen om den nåværende utloggingen har gått tapt. Du bør gå tilbake til den opprinnelige tjesesten og prøve å logge ut på nytt. Informasjon om utloggingsoperasjoner er kun lagret i en begrenset tid - vanligvis noen timer. Dette er lengere tid enn en vanlig utlogging skal ta, så denne feilen kan tyde på at noe er galt med oppsettet. Ta kontakt med tjenesteyteren hvis problemet gjentar seg." +msgid "Home organization domain name" +msgstr "Unik ID for organisasjon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "En feil oppsto i behandlingen av logout-forespørselen." +msgid "Home postal address" +msgstr "Postadresse hjemme" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Det er en feil i oppsettet for din SimpleSAMLphp-installasjon. Hvis du er administrator for tjenesten, bør du kontrollere at metadata er satt opp riktig." +msgid "Home telephone" +msgstr "Hjemmetelefon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Ikke mulig å finne metadata for %ENTITYID%" +msgid "How to get help" +msgstr "Hvordan få hjelp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Dette endepunktet er ikke aktivert. Sjekk aktiveringsopsjonene i ditt SimpleSAMLphp-oppsett." +msgid "Identity assurance profile" +msgstr "Tillitsnivå for autentisering" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Autentisering feilet: nettleseren din sendte ikke noe klient-sertifikat" +msgid "Identity number assigned by public authorities" +msgstr "Fødselsnummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Kilden til denne forespørselen har ikke angitt noen RelayState-parameter som angir hvor vi skal fortsette etterpå." +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Hvis vil rapportere denne feilen, send også med dette sporingsnummeret. Det gjør det enklere for systemadministratorene å finne ut hva som gikk galt:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Tilstandsinformasjon tapt, det er ikke mulig å gjenoppta forespørselen" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "I SAML 2.0 Metadata XML Format:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Den angitte siden finnes ike. URLen var: %URL%" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "I SimpleSAMLphp format - bruk denne dersom du benytter SimpleSAMLphp i den andre enden:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Den angitte siden finnes ikke. Grunnen er: %REASON%. URLen var: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Feil brukernavn og passord" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Admin passordet i konfigurasjonen (auth.adminpassword) er ikke satt til noe annet enn default verdien. Bytt passord i config.php." +msgid "Incorrect username or password." +msgstr "Feil brukernavn eller passord." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Du presenterte ikke et gyldig sertifikat" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Svaret mottatt fra innloggingstjenesten kan ikke aksepteres." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Ugyldig sertifikat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Innloggingstjenesten mottok en autentiserings-forespørsel fra en tjeneste, men en feil oppsto i behandling av forespørselen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Innloggingstjenesten svarte med en feilmelding. (Statuskoden i SAML-svaret var noe annet enn OK)" +msgid "JPEG Photo" +msgstr "JPEG-foto" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Du brukte SingleLogoutService-grensesnittet uten å angi enten en SAML LogoutRequest eller en LogoutResponse." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP-feil" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "En uventet feilsituasjon oppstod" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP er brukerkatalogen, og når du forsøker å logge inn prøver vi å kontakten en LDAP-katalog. Da vi forsøkte det denne gangen, oppsto en feil." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Authentisering feilet: sertifikatet nettleseren din sendte er ukjent" +msgid "Labeled URI" +msgstr "URI med valgfri tilleggskommentar" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Godkjenningen ble avbrutt av brukeren" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Enten var brukernavnet, eller kombinasjonen med brukernavn og passord feil. Sjekk brukernavn og passord og prøv igjen." +msgid "Legal name" +msgstr "Folkeregistrert navn" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Hei, dette er en statusside på SimpleSAMLphp. Her kan du se om sesjonen din er timet ut, hvor lenge det er til den timer ut og attributter som er knyttet til din sesjon." +msgid "Local identity number" +msgstr "Lokalt ID-nummer" -msgid "Logout" -msgstr "Logg ut" +msgid "Locality" +msgstr "Sted" -msgid "Your attributes" -msgstr "Dine attributter" +msgid "Logged out" +msgstr "Utlogget" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Din sesjon er gyldig i %remaining% sekunder fra nå." +msgid "Logging out of the following services:" +msgstr "Logger ut fra følgende tjenester:" -msgid "Hello, Untranslated World!" -msgstr "Hallo, oversatte verden!" +msgid "Logging out..." +msgstr "Logger ut..." -msgid "World" -msgstr "Verden" +msgid "Login" +msgstr "Logg inn" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Vennligst velg hvilken identitetsleverandør du vil bruke for å logge inn:" +msgid "Login at" +msgstr "Logg inn hos" -msgid "Remember my choice" -msgstr "Husk mitt valg" +msgid "Logout" +msgstr "Logg ut" -msgid "Select" -msgstr "Velg" +msgid "Logout failed" +msgstr "Utlogging feilet" -msgid "Select your identity provider" -msgstr "Velg din identitetsleverandør" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Informasjon om utlogging er tapt" -msgid "Sending message" -msgstr "Sender melding" +msgid "Mail" +msgstr "E-post" -msgid "Yes, continue" -msgstr "Ja, fortsett" +msgid "Manager" +msgstr "Overordnet" -msgid "Debug information" -msgstr "Detaljer for feilsøking" +msgid "Message" +msgstr "Melding" -msgid "E-mail address:" -msgstr "E-postadresse:" +msgid "Metadata" +msgstr "Metadata" -msgid "Explain what you did when this error occurred..." -msgstr "Forklar hva du gjorde da feilen oppsto..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Ingen metadata funnet" -msgid "How to get help" -msgstr "Hvordan få hjelp" +msgid "Metadata overview" +msgstr "Oversikt over metadata" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Hvis vil rapportere denne feilen, send også med dette sporingsnummeret. Det gjør det enklere for systemadministratorene å finne ut hva som gikk galt:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Hvis du ønsker at brukerstøtte skal kunne kontakte deg igjen i forbindelse med denne feilen, må du oppgi e-postadressen din nedenfor:" +msgid "Mobile" +msgstr "Mobiltelefon" -msgid "Report errors" -msgstr "Rapporter feil" +msgid "Next" +msgstr "Fortsett" -msgid "Send error report" -msgstr "Send feilrapport" +msgid "Nickname" +msgstr "Kallenavn" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Detaljene nedenfor kan være av interesse for administratoren / brukerstøtte:" +msgid "No" +msgstr "Nei" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Denne feilen skyldes sannsynligvis feil i oppsettet av SimpleSAMLphp eller den er en følge av en uforutsett hendelse. Kontakt administratoren av denne tjenesten og rapporter så mye som mulig angående feilen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Spesifikasjon av RelayState mangler" -msgid "[Preferred choice]" -msgstr "[Foretrukket valg]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Ingen SAML-melding angitt" -msgid "Hello, %who%!" -msgstr "Hallo, %who%!" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Person's principal name at home organization" -msgstr "Personlig ID hos organisasjonen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Ingen SAML-respons angitt" -msgid "Superfluous options in config file" -msgstr "Overføldig element i konfigurasjonsfilen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Ingen tilgang" -msgid "Mobile" -msgstr "Mobiltelefon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Ikke noe sertifikat mottatt" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Tjenesteleverandør (intern)" +msgid "No errors found." +msgstr "Ingen feil funnet" -msgid "Display name" -msgstr "Navn som normalt vises" +msgid "No identity providers found. Cannot continue." +msgstr "" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP metadata" +msgid "No, cancel" +msgstr "Nei" + +msgid "No, only %SP%" +msgstr "Nei, bare %SP%" msgid "Notices" msgstr "Notiser" -msgid "Home telephone" -msgstr "Hjemmetelefon" +msgid "On hold" +msgstr "På vent" -msgid "Service Provider" -msgstr "Tjenesteleverandør" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "En eller flere av tjenestene du er logget inn på støtter ikke logout. Lukk nettleseren, dersom du ønsker å logge ut fra disse tjenestene." -msgid "Incorrect username or password." -msgstr "Feil brukernavn eller passord." +msgid "Optional fields" +msgstr "Valgbart felt" + +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Hvis du ønsker at brukerstøtte skal kunne kontakte deg igjen i forbindelse med denne feilen, må du oppgi e-postadressen din nedenfor:" + +msgid "Options missing from config file" +msgstr "Mangler element i konfigurasjonsfilen" -msgid "Submit message" -msgstr "Send melding" +msgid "Organization" +msgstr "Organisasjon" -msgid "Locality" -msgstr "Sted" +msgid "Organization name" +msgstr "Navn på organisasjon" -msgid "The following required fields was not found" -msgstr "Følgende obligatoriske felter ble ikke funnet" +msgid "Organization's legal name" +msgstr "Foretaksnavn" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Last ned X509-sertifikatene som PEM-filer." +msgid "Organizational homepage" +msgstr "Organisasjonens hjemmeside" msgid "Organizational number" msgstr "Organisasjonsnummer" -msgid "Post office box" -msgstr "Postboks" +msgid "Organizational unit" +msgstr "Organisasjonsenhet" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "En tjeneste har bedt om bekreftelse på din identitet. Skriv inn ditt brukernavn og passord for å autentisere deg." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Kan ikke finne siden" -msgid "Error" -msgstr "Feil" +msgid "Parse" +msgstr "Pars" -msgid "Next" -msgstr "Fortsett" +msgid "Password" +msgstr "Passord" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Entydig navn (DN) for brukerens organisasjonsenhet" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Passordet er ikke satt" -msgid "Converted metadata" -msgstr "Konvertert metadata" +msgid "Persistent pseudonymous ID" +msgstr "Persistent anonym ID" -msgid "Mail" -msgstr "E-post" +msgid "Person's principal name at home organization" +msgstr "Personlig ID hos organisasjonen" -msgid "No, cancel" -msgstr "Nei" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Vennligst velg hvilken identitetsleverandør du vil bruke for å logge inn:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Du har valgt %HOMEORG% som din vertsorganisasjon. Dersom dette er feil kan du velge en annen." +msgid "Post office box" +msgstr "Postboks" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Entydig navn for organisasjonsenheten som brukeren primært er tilknyttet" +msgid "Postal address" +msgstr "Postadresse" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "For å se på detaljene i en SAML-entitet, klikk på SAML-entitet overskriften" +msgid "Postal code" +msgstr "Postnummer" -msgid "Enter your username and password" -msgstr "Skriv inn brukernavn og passord" +msgid "Preferred language" +msgstr "Foretrukket språk" -msgid "Login at" -msgstr "Logg inn hos" +msgid "Primary affiliation" +msgstr "Primær tilknytning til organisasjon" -msgid "No" -msgstr "Nei" +msgid "Private information elements" +msgstr "Private informasjonselement" -msgid "Home postal address" -msgstr "Postadresse hjemme" +msgid "Remember" +msgstr "Godta også for fremtiden" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP Demo Eksempel" +msgid "Remember my choice" +msgstr "Husk mitt valg" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 Identitetsleverandør (ekstern)" +msgid "Report errors" +msgstr "Rapporter feil" -msgid "Do you want to logout from all the services above?" -msgstr "Vil du logge ut fra alle tjenestene ovenfor?" +msgid "Required fields" +msgstr "Obligatorisk felt" -msgid "Given name" -msgstr "Fornavn" +msgid "Return to service" +msgstr "Tilbake til tjenesten" -msgid "Identity assurance profile" -msgstr "Tillitsnivå for autentisering" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Identitetsleverandør (ekstern)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 Identitetsleverandør (ekstern)" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP Demo Eksempel" -msgid "Organization name" -msgstr "Navn på organisasjon" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Du er i ferd med å sende en melding. Trykk knappen «Send melding» for å fortsette." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP metadata" -msgid "Home organization domain name" -msgstr "Unik ID for organisasjon" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 tjenesteleverandør (intern)" -msgid "Go back to the file list" -msgstr "Gå tilbake til fil-listen" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Feilrapport sent" +msgid "Select" +msgstr "Velg" -msgid "Common name" -msgstr "Fullt navn" +msgid "Select configuration file to check:" +msgstr "Velg hvilken konfigurasjonfil som skal sjekkes" -msgid "Logout failed" -msgstr "Utlogging feilet" +msgid "Select your identity provider" +msgstr "Velg din identitetsleverandør" -msgid "Identity number assigned by public authorities" -msgstr "Fødselsnummer" +msgid "Send e-mail to help desk" +msgstr "Send e-post til brukerstøtte" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation identitetsleverandør (ekstern)" +msgid "Send error report" +msgstr "Send feilrapport" -msgid "Some error occurred" -msgstr "En feil har oppstått" +msgid "Sending message" +msgstr "Sender melding" -msgid "Organization" -msgstr "Organisasjon" +msgid "Service Provider" +msgstr "Tjenesteleverandør" -msgid "Choose home organization" -msgstr "Velg vertsorganisasjon" +msgid "Session size: %SIZE%" +msgstr "Sesjons størrelse: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Persistent anonym ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP metadata" -msgid "No errors found." -msgstr "Ingen feil funnet" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Identitetsleverandør (ekstern)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 tjenesteleverandør (intern)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Identitetsleverandør (ekstern) " -msgid "Required fields" -msgstr "Obligatorisk felt" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP metadata" -msgid "Domain component (DC)" -msgstr "Navneledd (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Tjenesteleverandør (intern)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 Tjenesteleverandør (ekstern)" -msgid "Password" -msgstr "Passord" - -msgid "Nickname" -msgstr "Kallenavn" - -msgid "The error report has been sent to the administrators." -msgstr "Feilrapport er sent til administrator." - -msgid "Date of birth" -msgstr "Fødselsdato" - -msgid "Private information elements" -msgstr "Private informasjonselement" - -msgid "You are also logged in on these services:" -msgstr "Du er også logget inn på disse tjenestene:" +msgid "Shibboleth demo" +msgstr "Shibboleth Demo" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp diagnostikk" -msgid "No, only %SP%" -msgstr "Nei, bare %SP%" - -msgid "Username" -msgstr "Brukernavn" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Det virker som det er en feil i oppsettet av SimpleSAMLphp." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Gå tilbake til SimpleSAMLphp installasjonen sin startside." +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp-feil" -msgid "You have successfully logged out from all services listed above." -msgstr "Du har nå logget ut fra alle tjenestene listet ovenfor." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Du er nå logget ut fra %SP%." +msgid "Some error occurred" +msgstr "En feil har oppstått" -msgid "Affiliation" -msgstr "Tilhørighet" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Tilstandsinformasjon tapt" -msgid "You have been logged out." -msgstr "Du er nå utlogget." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Tilstandsinformasjon tapt, det er ikke mulig å gjenoppta forespørselen" -msgid "Return to service" -msgstr "Tilbake til tjenesten" +msgid "Street" +msgstr "Gate" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation tjenesteleverandør (intern)" +msgid "Submit message" +msgstr "Send melding" -msgid "Preferred language" -msgstr "Foretrukket språk" +msgid "Superfluous options in config file" +msgstr "Overføldig element i konfigurasjonsfilen" msgid "Surname" msgstr "Etternavn" -msgid "The following fields was not recognized" -msgstr "Følgende felt ble ikke gjenkjent" - -msgid "User ID" -msgstr "Bruker-ID" - -msgid "JPEG Photo" -msgstr "JPEG-foto" - -msgid "Postal address" -msgstr "Postadresse" - -msgid "In SAML 2.0 Metadata XML format:" -msgstr "I SAML 2.0 Metadata XML Format:" +msgid "Telephone number" +msgstr "Telefon" -msgid "Logging out of the following services:" -msgstr "Logger ut fra følgende tjenester:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Innloggingstjenesten svarte med en feilmelding. (Statuskoden i SAML-svaret var noe annet enn OK)" -msgid "Labeled URI" -msgstr "URI med valgfri tilleggskommentar" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Godkjenningen ble avbrutt av brukeren" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Identitetsleverandør (ekstern)" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Detaljene nedenfor kan være av interesse for administratoren / brukerstøtte:" -msgid "Metadata" -msgstr "Metadata" +msgid "The error report has been sent to the administrators." +msgstr "Feilrapport er sent til administrator." -msgid "Login" -msgstr "Logg inn" +msgid "The following fields was not recognized" +msgstr "Følgende felt ble ikke gjenkjent" -msgid "Yes, all services" -msgstr "Ja, alle tjenestene over" +msgid "The following optional fields was not found" +msgstr "Følgende valgbare felt ble ikke funnet" -msgid "Logged out" -msgstr "Utlogget" +msgid "The following required fields was not found" +msgstr "Følgende obligatoriske felter ble ikke funnet" -msgid "Postal code" -msgstr "Postnummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Den angitte siden finnes ike. URLen var: %URL%" -msgid "Logging out..." -msgstr "Logger ut..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Den angitte siden finnes ikke. Grunnen er: %REASON%. URLen var: %URL%" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Identitetsleverandør (ekstern)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Informasjonen om den nåværende utloggingen har gått tapt. Du bør gå tilbake til den opprinnelige tjesesten og prøve å logge ut på nytt. Informasjon om utloggingsoperasjoner er kun lagret i en begrenset tid - vanligvis noen timer. Dette er lengere tid enn en vanlig utlogging skal ta, så denne feilen kan tyde på at noe er galt med oppsettet. Ta kontakt med tjenesteyteren hvis problemet gjentar seg." -msgid "Primary affiliation" -msgstr "Primær tilknytning til organisasjon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Kilden til denne forespørselen har ikke angitt noen RelayState-parameter som angir hvor vi skal fortsette etterpå." -msgid "XML metadata" -msgstr "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Parametere sendt til discovery-tjenesten var ikke i korrekt format." -msgid "Telephone number" -msgstr "Telefon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Greide ikke å logge ut fra en eller flere tjenester. For å forsikre deg om at du blir logget ut, oppfordrer vi deg til å lukke nettleseren din." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Admin passordet i konfigurasjonen (auth.adminpassword) er ikke satt til noe annet enn default verdien. Bytt passord i config.php." -msgid "Entitlement regarding the service" -msgstr "Rettighet" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "En feil oppsto i forespørselen til denne siden. Grunnen var: %REASON%" -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Det er en feil i oppsettet for din SimpleSAMLphp-installasjon. Hvis du er administrator for tjenesten, bør du kontrollere at metadata er satt opp riktig." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Siden du er i debug modus kan du se innholdet i meldingene du sender." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Innloggingstjenesten mottok en autentiserings-forespørsel fra en tjeneste, men en feil oppsto i behandling av forespørselen." -msgid "Certificates" -msgstr "Sertifikater" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Dette endepunktet er ikke aktivert. Sjekk aktiveringsopsjonene i ditt SimpleSAMLphp-oppsett." -msgid "Remember" -msgstr "Godta også for fremtiden" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Denne feilen skyldes sannsynligvis feil i oppsettet av SimpleSAMLphp eller den er en følge av en uforutsett hendelse. Kontakt administratoren av denne tjenesten og rapporter så mye som mulig angående feilen." -msgid "Distinguished name (DN) of person's home organization" -msgstr "Entydig navn (DN) for brukerens vertsorganisasjon" +msgid "Title" +msgstr "Tittel" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Du er i ferd med å sende en melding. Trykk på send melding knappen for å fortsette." +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "For å se på detaljene i en SAML-entitet, klikk på SAML-entitet overskriften" -msgid "Organizational unit" -msgstr "Organisasjonsenhet" +msgid "Tracking number" +msgstr "" -msgid "Local identity number" -msgstr "Lokalt ID-nummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Ikke mulig å finne metadata for %ENTITYID%" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP metadata" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Greide ikke å logge ut fra en eller flere tjenester. For å forsikre deg om at du blir logget ut, oppfordrer vi deg til å lukke nettleseren din." -msgid "Change your home organization" -msgstr "Endre din vertsorganisasjon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "User's password hash" -msgstr "Hash av brukerens passord" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Uhåndtert feil" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "I SimpleSAMLphp format - bruk denne dersom du benytter SimpleSAMLphp i den andre enden:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Ukjent sertifikat" -msgid "Completed" -msgstr "Fullført" +msgid "User ID" +msgstr "Bruker-ID" -msgid "Select configuration file to check:" -msgstr "Velg hvilken konfigurasjonfil som skal sjekkes" +msgid "User's password hash" +msgstr "Hash av brukerens passord" -msgid "On hold" -msgstr "På vent" +msgid "Username" +msgstr "Brukernavn" -msgid "Help! I don't remember my password." -msgstr "Hjelp! Jeg har glemt passordet mitt." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP Demo Eksempel" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Do kan skru av debug modus i den globale SimpleSAMLphp konfigurasjonsfila config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation identitetsleverandør (ekstern)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp-feil" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation tjenesteleverandør (intern)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "En eller flere av tjenestene du er logget inn på støtter ikke logout. Lukk nettleseren, dersom du ønsker å logge ut fra disse tjenestene." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Foretaksnavn" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Svaret mottatt fra innloggingstjenesten kan ikke aksepteres." -msgid "Options missing from config file" -msgstr "Mangler element i konfigurasjonsfilen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "En feil oppsto da innloggingstjenesten prøvde å lage et svar på autentiserings-forespørselen." -msgid "The following optional fields was not found" -msgstr "Følgende valgbare felt ble ikke funnet" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Synd! - Uten riktig brukernavn og passord kan du ikke autentisere deg. Det kan være noen som kan hjelpe deg. Forsøk å kontakt brukerstøtte ved din vertsorganisasjon." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Du kan nå metadata i XML-format på en dedikert URL:" +msgid "World" +msgstr "Verden" -msgid "Street" -msgstr "Gate" +msgid "XML metadata" +msgstr "XML metadata" -msgid "Message" -msgstr "Melding" +msgid "Yes, all services" +msgstr "Ja, alle tjenestene over" -msgid "Contact information:" -msgstr "Kontaktinformasjon:" +msgid "Yes, continue" +msgstr "Ja, fortsett" -msgid "Legal name" -msgstr "Folkeregistrert navn" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Valgbart felt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Du brukte AssertionConsumerService-grensesnittet uten å angi en SAML AuthenticationResponse." -msgid "You have previously chosen to authenticate at" -msgstr "Du har tidligere valg å autentisere deg hos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Du kontaktet loginsiden, men passordet ble ikke sendt med. Forsøk igjen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Du brukte SingleLogoutService-grensesnittet uten å angi enten en SAML LogoutRequest eller en LogoutResponse." -msgid "Fax number" -msgstr "Faksnummer" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Du er i ferd med å sende en melding. Trykk knappen «Send melding» for å fortsette." -msgid "Shibboleth demo" -msgstr "Shibboleth Demo" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Du er i ferd med å sende en melding. Trykk på send melding knappen for å fortsette." -msgid "Error in this metadata entry" -msgstr "Feil i metadataoppføringen" +msgid "You are also logged in on these services:" +msgstr "Du er også logget inn på disse tjenestene:" -msgid "Session size: %SIZE%" -msgstr "Sesjons størrelse: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Du har nå kommet til et test-oppsett. Dette oppsettet for autentisering er kun til bruk for testing og pre-produksjon verifikasjon. Hvis noen sendte deg en link som pekte hit, og du ikke er en tester så fikk du nok en feil link, og skulle ikke vært her." -msgid "Parse" -msgstr "Pars" +msgid "You are now successfully logged out from %SP%." +msgstr "Du er nå logget ut fra %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Synd! - Uten riktig brukernavn og passord kan du ikke autentisere deg. Det kan være noen som kan hjelpe deg. Forsøk å kontakt brukerstøtte ved din vertsorganisasjon." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Du kan nå metadata i XML-format på en dedikert URL:" -msgid "Choose your home organization" -msgstr "Velg vertsorganisasjon" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Do kan skru av debug modus i den globale SimpleSAMLphp konfigurasjonsfila config/config.php." -msgid "Send e-mail to help desk" -msgstr "Send e-post til brukerstøtte" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Du presenterte ikke et gyldig sertifikat" -msgid "Metadata overview" -msgstr "Oversikt over metadata" +msgid "You have been logged out." +msgstr "Du er nå utlogget." -msgid "Title" -msgstr "Tittel" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Du har valgt %HOMEORG% som din vertsorganisasjon. Dersom dette er feil kan du velge en annen." -msgid "Manager" -msgstr "Overordnet" +msgid "You have previously chosen to authenticate at" +msgstr "Du har tidligere valg å autentisere deg hos" -msgid "Affiliation at home organization" -msgstr "Gruppetilhørighet" +msgid "You have successfully logged out from all services listed above." +msgstr "Du har nå logget ut fra alle tjenestene listet ovenfor." -msgid "Help desk homepage" -msgstr "Hjemmesiden til brukerstøtte" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Du kontaktet loginsiden, men passordet ble ikke sendt med. Forsøk igjen." -msgid "Configuration check" -msgstr "Sjekker konfigurasjonen" +msgid "Your attributes" +msgstr "Dine attributter" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Identitetsleverandør (ekstern) " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Her er metadata som SimpleSAMLphp har generert for deg. Du må utveksle metadata med de partene du stoler på for å sette opp en føderasjon." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Din sesjon er gyldig i %remaining% sekunder fra nå." -msgid "Organizational homepage" -msgstr "Organisasjonens hjemmeside" +msgid "[Preferred choice]" +msgstr "[Foretrukket valg]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Du har nå kommet til et test-oppsett. Dette oppsettet for autentisering er kun til bruk for testing og pre-produksjon verifikasjon. Hvis noen sendte deg en link som pekte hit, og du ikke er en tester så fikk du nok en feil link, og skulle ikke vært her." +msgid "not set" +msgstr "" diff --git a/locales/pl/LC_MESSAGES/messages.po b/locales/pl/LC_MESSAGES/messages.po index dcf3625d38..49c2f9073e 100644 --- a/locales/pl/LC_MESSAGES/messages.po +++ b/locales/pl/LC_MESSAGES/messages.po @@ -1,699 +1,789 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Nie dostarczo odpowiedzi SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Nie dostarczono komunikatu SAML" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Serwis zażądał autentykacji. Proszę w poniższym formularzu wprowadzić nazwę uzytkownika oraz hasło." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Przynależność (Affiliation)" + +msgid "Affiliation at home organization" +msgstr "Przynależność w macierzystej organizacji" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Wystąpił błąd podczas próby budowania żądania SAML" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Wystąpił bład podczas próby wylogowania." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Został zwrócony błąd, który nie może być obsłużony" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Przerwane uwierzytelnienie" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Błąd uwierzytelnienia dla źródła %AUTHSOURCE%. Przyczyną jest: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Nie powiodło się uwierzytelnienie: certyfikat przesłany przez przeglądarkę jest niepoprawny lub nie może zostać przeczytany" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Nie powiodło się uwierzytelnienie: certyfikat przesłany przez przeglądarkę jest nieznany" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Nie powiodło się uwierzytelnienie: przeglądarka nie przesłała certyfikatu" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Błąd źródła uwierzytelnienia" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Otrzymano nieprawidłowe żadanie" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "nieprawidłowe żadanie do listy serwisow" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "Błąd CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Change your home organization" +msgstr "Zmień swoją domową organizację" + +msgid "Choose home organization" +msgstr "Wybierz domową organizację" + +msgid "Choose your home organization" +msgstr "Wybierz swoją domową organizację" + +msgid "Common name" +msgstr "Nazwa (Common name)" + +msgid "Completed" +msgstr "Zakończono" + +msgid "Configuration check" +msgstr "Sprawdzenie konfiguracji" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Błąd konfiguracji" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Błąd podczas wykonywania żądania." +msgid "Contact information:" +msgstr "Informacje kontaktowe:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "nieprawidłowe żadanie do listy serwisow" +msgid "Converted metadata" +msgstr "Skonwertowane metadane" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Wystąpił problem z utworzeniem odpowiedzi uwierzytelniania" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Nieprawidłowy certyfikat" +msgid "Date of birth" +msgstr "Data urodzenia (Date of birth)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Bład LDAP'a" +msgid "Debug information" +msgstr "Informacja debugger'a" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Utracono informację o wylogowaniu" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Błąd przetwarzania żądania wylogowania" +msgid "Display name" +msgstr "Nazwa wyświetlana (Display name)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Błąd ładowania metadanych" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Distinguished name (DN) macierzystej organizacji osoby" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Nie znaleziono metadanych" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Nazwa osoby w jednostce organizacyjnej" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Brak dostępu" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Distinguished name (DN) macierzystej jednostki organizacyjnej osoby" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Brak certyfikatu" +msgid "Do you want to logout from all the services above?" +msgstr "Czy chcesz zostać wylogowany z powyższych serwisów?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Brak RelayState" +msgid "Domain component (DC)" +msgstr "Składnik nazwy domenowej (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Utracono informacje o stanie" +msgid "E-mail address:" +msgstr "Adres e-mail" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Nie znaleziono strony" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Nie istnieje użytkownik o tej nazwie, lub podano złe hasło. Sprawdź nazwę użytkownika i ponów próbę." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Nieustawione hasło" +msgid "Enter your username and password" +msgstr "Wprowadź nazwę uzytkownika i hasło" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Błąd przetwarzania odpowiedzi od Dostawcy Tożsamości" +msgid "Entitlement regarding the service" +msgstr "Uprawnienie dotyczące serwisu" + +msgid "Error" +msgstr "Błąd" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Błąd podczas wykonywania żądania." + +msgid "Error in this metadata entry" +msgstr "Błąd w metadanych" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Błąd ładowania metadanych" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Błąd przetwarzania żądania od Dostawcy Serwisu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Błąd przetwarzania odpowiedzi od Dostawcy Tożsamości" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Błąd przetwarzania żądania wylogowania" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Dostawca tożsamości przesłał błąd" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Nieobsługiwany błąd" +msgid "Error report sent" +msgstr "Raport o błędzie wysłany" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Nieznany certyfikat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Błąd podczas komunikacji z serwerem CAS" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Przerwane uwierzytelnienie" +msgid "Explain what you did when this error occurred..." +msgstr "Opisz, co zrobiłeś kiedy wystąpił błąd..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Blędna nazwa użytkownika lub hasło" +msgid "Fax number" +msgstr "Numer Faksu (Fax number)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Została wywołana usługa Assertion Consumer Service, ale nie dostarczono komunikatu SAML 'Authentication Response'" +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Błąd uwierzytelnienia dla źródła %AUTHSOURCE%. Przyczyną jest: %REASON%" +msgid "Given name" +msgstr "Imię (Given name)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Wystąpił następujący błąd w zleceniu: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Wróc do strony \"instalacja SimpleSAMLphp\"" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Błąd podczas komunikacji z serwerem CAS" +msgid "Go back to the file list" +msgstr "Powrót do listy plików" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "wydaje się, że SimpleSAMLphp jest błędnie skonfigurowany." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Wystąpił błąd podczas próby budowania żądania SAML" +msgid "Help desk homepage" +msgstr "Strona domowa pomocy technicznej (Helpdesk)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Parametry wysłane do usługi wyszukiwania nie są zgodne ze specyfikacją" +msgid "Help! I don't remember my password." +msgstr "Pomocy! Nie pamiętam hasła." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Wystapił bład podczas próby utworzenia przez Dostawcę Tożsamości odpowiedzi uwierzytelniania ." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Tutaj sa metadane, które SimpleSAMLphp wygenerował dla Ciebie. Możesz je wysłać zaufanym partnerom w celu stworzenia zaufanej federacji." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Nie powiodło się uwierzytelnienie: certyfikat przesłany przez przeglądarkę jest niepoprawny lub nie może zostać przeczytany" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Hej, to jest status strony SimpleSAMLphp. Tutaj możesz zaboaczyć, czy Twoja sesja jest nadal aktywna, jak długo pozostało czasu do zakończenia sesji i wszystkie atrybuty, które zostały załączone do sesji." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP jest bazą uzytkowników i kiedy Ty próbujesz się zalogować, to my musimy nawiązać połączenie z bazą LDAP. I właśnie w tym momencie wystąpił błąd." +msgid "Home organization domain name" +msgstr "Nazwa organizacji macierzystej" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Utracono informację o przebiegu operacji wylogowania. Powróć do usługi, z której próbowałeś się wylogować i ponów próbę. Ten błąd może być spowodowany przeterminowaniem informacji o wylogowaniu. Informacja o wylogowaniu jest przechowywana przez określony czas, zwykle kilka godzin. Jest to dłużej niż może zająć operacja wylogowania, więc błąd może mieć inną przyczynę, np. może oznaczać błędną konfigurację. Jeśli problem utrzymuje się, skontaktuj się z dostawcą usługi." +msgid "Home postal address" +msgstr "Domowy address pocztowy" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Wystąpił bład podczas próby wylogowania." +msgid "Home telephone" +msgstr "Telefon domowy (Home telephone)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Wykryto błąd w konfiguracji SimpleSAMLphp. Jeśli jesteś administratorem tej usługi, to sprawdź, czy prawidłowo zostały skonfigurowane metadane." +msgid "How to get help" +msgstr "Jak otrzymać pomoc." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Nie można zlokalizować metadanych dotyczących %ENTITYID%" +msgid "Identity number assigned by public authorities" +msgstr "Numer tożsamości wydany przez administrację publiczną" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Brak uprawnień. Sprawdź opcję enable w konfiguracji SimpleSAMLphp." +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Jeśli zgłaszasz ten bląd, podaj także ID zdarzenia, który umożliwi administratorowi zlokalizować Twoją sesje w logach:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Nie powiodło się uwierzytelnienie: przeglądarka nie przesłała certyfikatu" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "W formacie SAML 2.0 Metadata XML" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Inicjator zlecenia nie dostarczył parametru RelayState, wskazującego, gdzie przekazać zlecenie." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Blędna nazwa użytkownika lub hasło" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Utracono informacje o stanie i nie ma możliwości ponowienia zlecenia" +msgid "Incorrect username or password." +msgstr "Nieprawidłowa nazwa użytkownika lub hasło." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Podana strona nie została znaleziona. Adres URL był: %URL%" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Podana strona nie została znaleziona. Przyczyną było: %REASON% Adres strony: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Nieprawidłowy certyfikat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Hasło w konfiguracji (auth.adminpassword) ma domyślną wartość. Proszę poprawić konfigurację." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Nie przedstawiłeś prawidłowego certyfikaty" +msgid "JPEG Photo" +msgstr "Fotografia JPEG" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Nie zakceptowaliśmy odpowiedzi wysłanej przez Dostawcę Tożsamości." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Bład LDAP'a" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Dostawca tożsamości otrzymał od dostawcy usługi zlecenie uwierzytelnienia, ale wystąpił błąd podczas przetwarzania zlecenia." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP jest bazą uzytkowników i kiedy Ty próbujesz się zalogować, to my musimy nawiązać połączenie z bazą LDAP. I właśnie w tym momencie wystąpił błąd." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Odpowiedź dostawcy tożsamości oznacza błąd (kod stanu w odpowiedzi SAML nie oznacza sukcesu)" +msgid "Labeled URI" +msgstr "Labeled URI" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Została wywołana usługa SingleLogoutService, ale nie dostarczono komunikatu SAML LogoutRequest lub LogoutResponse." +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Został zwrócony błąd, który nie może być obsłużony" +msgid "Legal name" +msgstr "Formalna nazwa użytkownika" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Nie powiodło się uwierzytelnienie: certyfikat przesłany przez przeglądarkę jest nieznany" +msgid "Local identity number" +msgstr "Local identity number" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Uwierzytelnienie zostało przerwane przez użytkownika" +msgid "Locality" +msgstr "Locality" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Nie istnieje użytkownik o tej nazwie, lub podano złe hasło. Sprawdź nazwę użytkownika i ponów próbę." +msgid "Logged out" +msgstr "Wylogowano" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Hej, to jest status strony SimpleSAMLphp. Tutaj możesz zaboaczyć, czy Twoja sesja jest nadal aktywna, jak długo pozostało czasu do zakończenia sesji i wszystkie atrybuty, które zostały załączone do sesji." +msgid "Logging out of the following services:" +msgstr "Wylogowanie z następujących serwisów:" -msgid "Logout" -msgstr "Wyloguj" +msgid "Logging out..." +msgstr "Wylogowywanie..." -msgid "Your attributes" -msgstr "Twoje atrybuty" +msgid "Login" +msgstr "Login" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Twoja sesja jest jeszcze ważna przez %remaining% sekund" +msgid "Login at" +msgstr "Zaloguj w" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Proszę wybrać Dostawcę Tożsamości, przez którego chcesz się uwierzytelnić:" +msgid "Logout" +msgstr "Wyloguj" -msgid "Remember my choice" -msgstr "Zapamiętaj mój wybór" +msgid "Logout failed" +msgstr "Wystąpił bład podczas wylogowania" -msgid "Select" -msgstr "Wybierz" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Utracono informację o wylogowaniu" -msgid "Select your identity provider" -msgstr "wybierz swojego Dostawcę Tożsamości." +msgid "Mail" +msgstr "E-mail" -msgid "Sending message" -msgstr "Wysyłanie wiadomości" +msgid "Manager" +msgstr "Menadżer (Manager)" -msgid "Yes, continue" -msgstr "Tak, akceptuję" +msgid "Message" +msgstr "Wiadomość" -msgid "Debug information" -msgstr "Informacja debugger'a" +msgid "Metadata" +msgstr "Metadane" -msgid "E-mail address:" -msgstr "Adres e-mail" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Nie znaleziono metadanych" -msgid "Explain what you did when this error occurred..." -msgstr "Opisz, co zrobiłeś kiedy wystąpił błąd..." +msgid "Metadata overview" +msgstr "Przegląd metadanych" -msgid "How to get help" -msgstr "Jak otrzymać pomoc." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Jeśli zgłaszasz ten bląd, podaj także ID zdarzenia, który umożliwi administratorowi zlokalizować Twoją sesje w logach:" +msgid "Mobile" +msgstr "Telefon komórkowy (Mobile)" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Możesz podać swój adres email, jeśli chcesz umożliwić administratorowi skontaktować się z Tobą w razie dalszych pytań związanych z Twoim problemem." +msgid "Next" +msgstr "Następny" -msgid "Report errors" -msgstr "Raport błędów" +msgid "Nickname" +msgstr "Ksywka (Nickname)" -msgid "Send error report" -msgstr "Wyślij raport o błędzie" +msgid "No" +msgstr "Nie" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Poniższa informacja debugger'a może być przydatna dla administara / helpdesk:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Brak RelayState" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Błąd ten wystąpił w związku z nieprzewidzianą sytuacją lub błędną konfigurację SimpleSAMLphp. Skontaktuj się z administratorem tego serwisu i wyślij mu powyższy błąd." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Nie dostarczono komunikatu SAML" -msgid "[Preferred choice]" -msgstr "Preferowany wybór" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Person's principal name at home organization" -msgstr "Główna nazwa użytkownika w instytucji macierzystej" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Nie dostarczo odpowiedzi SAML" -msgid "Superfluous options in config file" -msgstr "Zbędne opcje w pliku konfiguracyjnym" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Brak dostępu" -msgid "Mobile" -msgstr "Telefon komórkowy (Mobile)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Brak certyfikatu" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Dostawca Serwisu (Lokalny)" +msgid "No errors found." +msgstr "Nie znaleziono błędów." + +msgid "No identity providers found. Cannot continue." +msgstr "" -msgid "Display name" -msgstr "Nazwa wyświetlana (Display name)" +msgid "No, cancel" +msgstr "Nie" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP - Metadane" +msgid "No, only %SP%" +msgstr "Nie, tylko %SP%" msgid "Notices" msgstr "Uwagi" -msgid "Home telephone" -msgstr "Telefon domowy (Home telephone)" +msgid "On hold" +msgstr "W zawieszeniu" -msgid "Service Provider" -msgstr "Dostawca serwisu" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Jeden lub więcej serwisów , w których jesteś zalogowany nie obsługuje procesu wylogowania. W celu upewnienia się, że wszystkie sesje są zakończone, zalecane jest abyś zamknął przeglądarkę" -msgid "Incorrect username or password." -msgstr "Nieprawidłowa nazwa użytkownika lub hasło." +msgid "Optional fields" +msgstr "Pola opcjonalne" -msgid "Submit message" -msgstr "Wyślij wiadomość" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Możesz podać swój adres email, jeśli chcesz umożliwić administratorowi skontaktować się z Tobą w razie dalszych pytań związanych z Twoim problemem." -msgid "Locality" -msgstr "Locality" +msgid "Options missing from config file" +msgstr "Brakujące opcje z pliku konfiguracyjnego" -msgid "The following required fields was not found" -msgstr "Nastepujące wymagane pola nie zostały znalezione" +msgid "Organization" +msgstr "Organizacja" + +msgid "Organization name" +msgstr "Nazwa organizacji (Organization name)" + +msgid "Organization's legal name" +msgstr "Zarejestrowana nazwa organizacji" + +msgid "Organizational homepage" +msgstr "Strona domowa organizacji" msgid "Organizational number" msgstr "Numer organizacji" -msgid "Post office box" -msgstr "Skrzynka pocztowa (Post office box)" +msgid "Organizational unit" +msgstr "Jednostka organizacyjna (Organizational unit)" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Serwis zażądał autentykacji. Proszę w poniższym formularzu wprowadzić nazwę uzytkownika oraz hasło." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Nie znaleziono strony" -msgid "Error" -msgstr "Błąd" +msgid "Parse" +msgstr "Przetwórz" -msgid "Next" -msgstr "Następny" +msgid "Password" +msgstr "Hasło" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Distinguished name (DN) macierzystej jednostki organizacyjnej osoby" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Nieustawione hasło" -msgid "Converted metadata" -msgstr "Skonwertowane metadane" +msgid "Persistent pseudonymous ID" +msgstr "Trwały anonimowy identyfikator" -msgid "Mail" -msgstr "E-mail" +msgid "Person's principal name at home organization" +msgstr "Główna nazwa użytkownika w instytucji macierzystej" -msgid "No, cancel" -msgstr "Nie" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Proszę wybrać Dostawcę Tożsamości, przez którego chcesz się uwierzytelnić:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Wybrałeś %HOMEORG% jako swoją domową organizację. Jeśli nieprawidłowa możesz wybrać inną." +msgid "Post office box" +msgstr "Skrzynka pocztowa (Post office box)" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Nazwa osoby w jednostce organizacyjnej" +msgid "Postal address" +msgstr "Adres pocztowy (Postal address)" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Kliknij na nagłówek końcówki aby wyświetlić szczegóły SAML." +msgid "Postal code" +msgstr "Kod pocztowy" -msgid "Enter your username and password" -msgstr "Wprowadź nazwę uzytkownika i hasło" +msgid "Preferred language" +msgstr "Preferowany język (Preferred language)" -msgid "Login at" -msgstr "Zaloguj w" +msgid "Primary affiliation" +msgstr "Główna przynależność (Primary affiliation)" -msgid "No" -msgstr "Nie" +msgid "Private information elements" +msgstr "Poufne atrybuty" -msgid "Home postal address" -msgstr "Domowy address pocztowy" +msgid "Remember" +msgstr "Pamiętaj moją zgodę" -msgid "WS-Fed SP Demo Example" -msgstr "Przykładowe Demo WS-Fed SP" +msgid "Remember my choice" +msgstr "Zapamiętaj mój wybór" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 Dostawca Tożsamości (Zdalny)" +msgid "Report errors" +msgstr "Raport błędów" -msgid "Do you want to logout from all the services above?" -msgstr "Czy chcesz zostać wylogowany z powyższych serwisów?" +msgid "Required fields" +msgstr "Pola wymagane" -msgid "Given name" -msgstr "Imię (Given name)" +msgid "Return to service" +msgstr "Powrót do serwisu" + +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Dostawca Tożsamości (Lokalny)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 Dostawca Tożsamości (Zdalny)" msgid "SAML 2.0 SP Demo Example" msgstr "Przykładowe Demo SAML 2.0 SP" -msgid "Organization name" -msgstr "Nazwa organizacji (Organization name)" +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP - Metadane" -msgid "Home organization domain name" -msgstr "Nazwa organizacji macierzystej" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Dostawca Serwisu (Lokalny)" -msgid "Go back to the file list" -msgstr "Powrót do listy plików" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Raport o błędzie wysłany" +msgid "Select" +msgstr "Wybierz" -msgid "Common name" -msgstr "Nazwa (Common name)" +msgid "Select configuration file to check:" +msgstr "Wybierz plik konfiguracyjny do sprawdzenia:" -msgid "Logout failed" -msgstr "Wystąpił bład podczas wylogowania" +msgid "Select your identity provider" +msgstr "wybierz swojego Dostawcę Tożsamości." -msgid "Identity number assigned by public authorities" -msgstr "Numer tożsamości wydany przez administrację publiczną" +msgid "Send e-mail to help desk" +msgstr "wyślij e-mail do helpdesku" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation Dostawca Tożsamości (Zdalny)" +msgid "Send error report" +msgstr "Wyślij raport o błędzie" -msgid "Some error occurred" -msgstr "Wystapił jakiś błąd" +msgid "Sending message" +msgstr "Wysyłanie wiadomości" -msgid "Organization" -msgstr "Organizacja" +msgid "Service Provider" +msgstr "Dostawca serwisu" -msgid "Choose home organization" -msgstr "Wybierz domową organizację" +msgid "Session size: %SIZE%" +msgstr "Rozmiar sesji: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Trwały anonimowy identyfikator" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP - Metadane" -msgid "No errors found." -msgstr "Nie znaleziono błędów." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Dostawca Tożsamości (Lokalny)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Dostawca Serwisu (Lokalny)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Dostawca Tożsamości (Zdalny)" -msgid "Required fields" -msgstr "Pola wymagane" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP - Metadane" -msgid "Domain component (DC)" -msgstr "Składnik nazwy domenowej (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Dostawca Serwisu (Lokalny)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 Dostawca Serwisu (Zdalny)" -msgid "Password" -msgstr "Hasło" - -msgid "Nickname" -msgstr "Ksywka (Nickname)" +msgid "Shibboleth demo" +msgstr "Demo Shibboleth" -msgid "The error report has been sent to the administrators." -msgstr "Raport o błędzie został wysłany do administratorów." +msgid "SimpleSAMLphp Diagnostics" +msgstr "Diagnostyka SimpleSAMLphp" -msgid "Date of birth" -msgstr "Data urodzenia (Date of birth)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "wydaje się, że SimpleSAMLphp jest błędnie skonfigurowany." -msgid "Private information elements" -msgstr "Poufne atrybuty" +msgid "SimpleSAMLphp error" +msgstr "błąd SimpleSAMLphp" -msgid "You are also logged in on these services:" -msgstr "Jesteś także zalogowany w nastepujących serwisach:" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "SimpleSAMLphp Diagnostics" -msgstr "Diagnostyka SimpleSAMLphp" +msgid "Some error occurred" +msgstr "Wystapił jakiś błąd" -msgid "No, only %SP%" -msgstr "Nie, tylko %SP%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Utracono informacje o stanie" -msgid "Username" -msgstr "Nazwa użytkownika" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Utracono informacje o stanie i nie ma możliwości ponowienia zlecenia" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Wróc do strony \"instalacja SimpleSAMLphp\"" +msgid "Street" +msgstr "Ulica (Street)" -msgid "You have successfully logged out from all services listed above." -msgstr "Zostałeś pomyślnie wylogowany ze wszystkich powyższych serwisów." +msgid "Submit message" +msgstr "Wyślij wiadomość" -msgid "You are now successfully logged out from %SP%." -msgstr "Zostałeś pomyślnie wylogowany z %SP%." +msgid "Superfluous options in config file" +msgstr "Zbędne opcje w pliku konfiguracyjnym" -msgid "Affiliation" -msgstr "Przynależność (Affiliation)" +msgid "Surname" +msgstr "Nazwisko (Surname)" -msgid "You have been logged out." -msgstr "Zostałeś wylogowany. Dziękuję za skorzystanie z serwisu." +msgid "Telephone number" +msgstr "Numer telefonu (Telephone number)" -msgid "Return to service" -msgstr "Powrót do serwisu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Odpowiedź dostawcy tożsamości oznacza błąd (kod stanu w odpowiedzi SAML nie oznacza sukcesu)" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation Dostawca Serwisu (Lokalny)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Uwierzytelnienie zostało przerwane przez użytkownika" -msgid "Preferred language" -msgstr "Preferowany język (Preferred language)" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Poniższa informacja debugger'a może być przydatna dla administara / helpdesk:" -msgid "Surname" -msgstr "Nazwisko (Surname)" +msgid "The error report has been sent to the administrators." +msgstr "Raport o błędzie został wysłany do administratorów." msgid "The following fields was not recognized" msgstr "Nastepujące pola nie zostały rozpoznane" -msgid "User ID" -msgstr "ID użytkownika (User ID)" - -msgid "JPEG Photo" -msgstr "Fotografia JPEG" - -msgid "Postal address" -msgstr "Adres pocztowy (Postal address)" - -msgid "In SAML 2.0 Metadata XML format:" -msgstr "W formacie SAML 2.0 Metadata XML" +msgid "The following optional fields was not found" +msgstr "Nastepujące pola opcjonalne nie zostały znalezione" -msgid "Logging out of the following services:" -msgstr "Wylogowanie z następujących serwisów:" +msgid "The following required fields was not found" +msgstr "Nastepujące wymagane pola nie zostały znalezione" -msgid "Labeled URI" -msgstr "Labeled URI" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Podana strona nie została znaleziona. Adres URL był: %URL%" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Dostawca Tożsamości (Lokalny)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Podana strona nie została znaleziona. Przyczyną było: %REASON% Adres strony: %URL%" -msgid "Metadata" -msgstr "Metadane" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Utracono informację o przebiegu operacji wylogowania. Powróć do usługi, z której próbowałeś się wylogować i ponów próbę. Ten błąd może być spowodowany przeterminowaniem informacji o wylogowaniu. Informacja o wylogowaniu jest przechowywana przez określony czas, zwykle kilka godzin. Jest to dłużej niż może zająć operacja wylogowania, więc błąd może mieć inną przyczynę, np. może oznaczać błędną konfigurację. Jeśli problem utrzymuje się, skontaktuj się z dostawcą usługi." -msgid "Login" -msgstr "Login" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Inicjator zlecenia nie dostarczył parametru RelayState, wskazującego, gdzie przekazać zlecenie." -msgid "Yes, all services" -msgstr "Tak, wszystkie serwisy" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Parametry wysłane do usługi wyszukiwania nie są zgodne ze specyfikacją" -msgid "Logged out" -msgstr "Wylogowano" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Postal code" -msgstr "Kod pocztowy" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Hasło w konfiguracji (auth.adminpassword) ma domyślną wartość. Proszę poprawić konfigurację." -msgid "Logging out..." -msgstr "Wylogowywanie..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Wystąpił następujący błąd w zleceniu: %REASON%" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Dostawca Tożsamości (Lokalny)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Wykryto błąd w konfiguracji SimpleSAMLphp. Jeśli jesteś administratorem tej usługi, to sprawdź, czy prawidłowo zostały skonfigurowane metadane." -msgid "Primary affiliation" -msgstr "Główna przynależność (Primary affiliation)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Dostawca tożsamości otrzymał od dostawcy usługi zlecenie uwierzytelnienia, ale wystąpił błąd podczas przetwarzania zlecenia." -msgid "XML metadata" -msgstr "XML Metadane" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Brak uprawnień. Sprawdź opcję enable w konfiguracji SimpleSAMLphp." -msgid "Telephone number" -msgstr "Numer telefonu (Telephone number)" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Błąd ten wystąpił w związku z nieprzewidzianą sytuacją lub błędną konfigurację SimpleSAMLphp. Skontaktuj się z administratorem tego serwisu i wyślij mu powyższy błąd." -msgid "Entitlement regarding the service" -msgstr "Uprawnienie dotyczące serwisu" +msgid "Title" +msgstr "Tytuł (Title)" -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP - Metadane" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Kliknij na nagłówek końcówki aby wyświetlić szczegóły SAML." -msgid "Remember" -msgstr "Pamiętaj moją zgodę" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Distinguished name (DN) macierzystej organizacji osoby" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Nie można zlokalizować metadanych dotyczących %ENTITYID%" -msgid "Organizational unit" -msgstr "Jednostka organizacyjna (Organizational unit)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Local identity number" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Nieobsługiwany błąd" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP - Metadane" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Nieznany certyfikat" -msgid "Change your home organization" -msgstr "Zmień swoją domową organizację" +msgid "User ID" +msgstr "ID użytkownika (User ID)" msgid "User's password hash" msgstr "Zakodowane hasło użytkownika" -msgid "Completed" -msgstr "Zakończono" - -msgid "Select configuration file to check:" -msgstr "Wybierz plik konfiguracyjny do sprawdzenia:" - -msgid "On hold" -msgstr "W zawieszeniu" - -msgid "Help! I don't remember my password." -msgstr "Pomocy! Nie pamiętam hasła." - -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Możesz wyłaczyć globalnie tryb debugowania w pliku config/config.php." +msgid "Username" +msgstr "Nazwa użytkownika" -msgid "SimpleSAMLphp error" -msgstr "błąd SimpleSAMLphp" +msgid "WS-Fed SP Demo Example" +msgstr "Przykładowe Demo WS-Fed SP" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Jeden lub więcej serwisów , w których jesteś zalogowany nie obsługuje procesu wylogowania. W celu upewnienia się, że wszystkie sesje są zakończone, zalecane jest abyś zamknął przeglądarkę" +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation Dostawca Tożsamości (Zdalny)" -msgid "Organization's legal name" -msgstr "Zarejestrowana nazwa organizacji" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation Dostawca Serwisu (Lokalny)" -msgid "Options missing from config file" -msgstr "Brakujące opcje z pliku konfiguracyjnego" +msgid "Warning" +msgstr "" -msgid "The following optional fields was not found" -msgstr "Nastepujące pola opcjonalne nie zostały znalezione" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Nie zakceptowaliśmy odpowiedzi wysłanej przez Dostawcę Tożsamości." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Możesz pobrać metadane w formacie xml:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Wystapił bład podczas próby utworzenia przez Dostawcę Tożsamości odpowiedzi uwierzytelniania ." -msgid "Street" -msgstr "Ulica (Street)" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Niedobrze! - Bez nazwy użytkownika i/lub hasła nie możesz zostać uwierzytelniony dla tego serwisu. Może jest ktoś, kto może Ci pomóc. Skonsultuj się z działem pomocy technicznej na Twojej uczelni." -msgid "Message" -msgstr "Wiadomość" +msgid "World" +msgstr "" -msgid "Contact information:" -msgstr "Informacje kontaktowe:" +msgid "XML metadata" +msgstr "XML Metadane" -msgid "Legal name" -msgstr "Formalna nazwa użytkownika" +msgid "Yes, all services" +msgstr "Tak, wszystkie serwisy" -msgid "Optional fields" -msgstr "Pola opcjonalne" +msgid "Yes, continue" +msgstr "Tak, akceptuję" -msgid "You have previously chosen to authenticate at" -msgstr "Poprzednio wybrałeś" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Wysłałeś \"coś\" do strony logowania, ale z jakiś powodów hasło nie zostało wysłane. Spróbuj jeszcze raz." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Została wywołana usługa Assertion Consumer Service, ale nie dostarczono komunikatu SAML 'Authentication Response'" -msgid "Fax number" -msgstr "Numer Faksu (Fax number)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Shibboleth demo" -msgstr "Demo Shibboleth" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Została wywołana usługa SingleLogoutService, ale nie dostarczono komunikatu SAML LogoutRequest lub LogoutResponse." -msgid "Error in this metadata entry" -msgstr "Błąd w metadanych" +msgid "You are also logged in on these services:" +msgstr "Jesteś także zalogowany w nastepujących serwisach:" -msgid "Session size: %SIZE%" -msgstr "Rozmiar sesji: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Korzystasz w tej chwili z wersji testowej systemu. To ustawienie uwierzytelniania jest tylko dla testów. Jeśli ktoś wysłał Ci link kierujący tutaj, a ty nie jesteś testerem to prawdopodobnie otrzymałeś błędny link i nie powinieneś być tutaj." -msgid "Parse" -msgstr "Przetwórz" +msgid "You are now successfully logged out from %SP%." +msgstr "Zostałeś pomyślnie wylogowany z %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Niedobrze! - Bez nazwy użytkownika i/lub hasła nie możesz zostać uwierzytelniony dla tego serwisu. Może jest ktoś, kto może Ci pomóc. Skonsultuj się z działem pomocy technicznej na Twojej uczelni." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Możesz pobrać metadane w formacie xml:" -msgid "Choose your home organization" -msgstr "Wybierz swoją domową organizację" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Możesz wyłaczyć globalnie tryb debugowania w pliku config/config.php." -msgid "Send e-mail to help desk" -msgstr "wyślij e-mail do helpdesku" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Nie przedstawiłeś prawidłowego certyfikaty" -msgid "Metadata overview" -msgstr "Przegląd metadanych" +msgid "You have been logged out." +msgstr "Zostałeś wylogowany. Dziękuję za skorzystanie z serwisu." -msgid "Title" -msgstr "Tytuł (Title)" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Wybrałeś %HOMEORG% jako swoją domową organizację. Jeśli nieprawidłowa możesz wybrać inną." -msgid "Manager" -msgstr "Menadżer (Manager)" +msgid "You have previously chosen to authenticate at" +msgstr "Poprzednio wybrałeś" -msgid "Affiliation at home organization" -msgstr "Przynależność w macierzystej organizacji" +msgid "You have successfully logged out from all services listed above." +msgstr "Zostałeś pomyślnie wylogowany ze wszystkich powyższych serwisów." -msgid "Help desk homepage" -msgstr "Strona domowa pomocy technicznej (Helpdesk)" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Wysłałeś \"coś\" do strony logowania, ale z jakiś powodów hasło nie zostało wysłane. Spróbuj jeszcze raz." -msgid "Configuration check" -msgstr "Sprawdzenie konfiguracji" +msgid "Your attributes" +msgstr "Twoje atrybuty" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Dostawca Tożsamości (Zdalny)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Tutaj sa metadane, które SimpleSAMLphp wygenerował dla Ciebie. Możesz je wysłać zaufanym partnerom w celu stworzenia zaufanej federacji." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Twoja sesja jest jeszcze ważna przez %remaining% sekund" -msgid "Organizational homepage" -msgstr "Strona domowa organizacji" +msgid "[Preferred choice]" +msgstr "Preferowany wybór" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Korzystasz w tej chwili z wersji testowej systemu. To ustawienie uwierzytelniania jest tylko dla testów. Jeśli ktoś wysłał Ci link kierujący tutaj, a ty nie jesteś testerem to prawdopodobnie otrzymałeś błędny link i nie powinieneś być tutaj." +msgid "not set" +msgstr "" diff --git a/locales/pt/LC_MESSAGES/messages.po b/locales/pt/LC_MESSAGES/messages.po index 313eaf5fab..f3bf4af16d 100644 --- a/locales/pt/LC_MESSAGES/messages.po +++ b/locales/pt/LC_MESSAGES/messages.po @@ -1,658 +1,801 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Mensagem SAML não fornecida" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Mensagem SAML não fornecida" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Foi pedida a sua autenticação por um serviço. Por favor, introduza o seu nome de utilizador e senha nos campos seguintes." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Afiliação com a organização de origem" + +msgid "Affiliation at home organization" +msgstr "Afiliação com a organização de origem (com contexto)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Ocorreu um erro ao tentar criar o pedido SAML" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Ocorreu um erro ao processar o pedido de logout." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Foi despoletada um excepção que não foi tratada." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Estando em modo debug, pode consultar o conteúdo da mensagem que está a enviar:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 +msgid "Authentication source error" +msgstr "" + +msgid "Authentication status" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Pedido inválido recebido" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Pedido incorrecto efectuado ao serviço de descoberta de IdP" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "Erro de CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Change your home organization" +msgstr "Alterar a sua organização de origem" + +msgid "Choose home organization" +msgstr "Escolha a sua organização de origem" + +msgid "Choose your home organization" +msgstr "Escolha a sua organização de origem" + +msgid "Common name" +msgstr "Nome completo" + +msgid "Completed" +msgstr "Completa" + +msgid "Configuration check" +msgstr "Verificação da configuração" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Erro de configuração" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Erro ao criar o pedido" +msgid "Contact information:" +msgstr "Contactos:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Pedido incorrecto efectuado ao serviço de descoberta de IdP" +msgid "Converted metadata" +msgstr "Resultado da conversão de Metadados" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Não foi possível criar uma resposta de autenticação" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Certificado inválido" +msgid "Date of birth" +msgstr "Data de nascimento" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Erro de LDAP" +msgid "Debug information" +msgstr "Informação de debug" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Informação de logout perdida" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Erro ao processar o pedido de logout" +msgid "Display name" +msgstr "Nome de apresentação" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Erro na leitura dos metadados" +msgid "Distinguished name (DN) of person's home organization" +msgstr "DN da organização de origem" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Acesso negado" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "DN da unidade orgânica" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "RelayState não definido" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "DN da unidade orgânica na organização de origem" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Página não encontrada" +msgid "Do you want to logout from all the services above?" +msgstr "Deseja sair de todos os serviços listados em cima?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Password inalterada" +msgid "Domain component (DC)" +msgstr "Componente de domínio" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Erro ao processar a resposta do fornecedor de identidade (IdP)" +msgid "E-mail address:" +msgstr "Endereço de email:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "O utilizador ou senha fornecidos são incorrectos. Por favor tente de novo." + +msgid "Enter your username and password" +msgstr "Introduza o seu nome de utilizador e senha" + +msgid "Entitlement regarding the service" +msgstr "Direitos oferecidos pela organização de origem" + +msgid "Error" +msgstr "Erro" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Erro ao criar o pedido" + +msgid "Error in this metadata entry" +msgstr "Erro nesta entrada de metadados" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Erro na leitura dos metadados" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Erro ao processar o pedido do fornecedor de serviço (SP)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Erro ao processar a resposta do fornecedor de identidade (IdP)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Erro ao processar o pedido de logout" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Erro recebido do Fornecedor de Identidade" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Excepção não tratada" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Utilizador ou senha incorrecto" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Na interface Assertion Consumer Service deve fornecer uma mensagem SAML do tipo Authentication Response." - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Ocorreu um erro com o pedido a esta página. A razão foi: %REASON%" +msgid "Error report sent" +msgstr "Relatório de erro enviado" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 msgid "Error when communicating with the CAS server." msgstr "Ocorreu um erro ao comunicar com o servidor CAS." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "O software SimpleSAMLphp tem um problema de configuração." +msgid "Explain what you did when this error occurred..." +msgstr "Introduza uma breve explicação do sucedido..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Ocorreu um erro ao tentar criar o pedido SAML" +msgid "Fax number" +msgstr "Número de Fax" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "O pedido efectuado ao serviço de descoberta de IdP não está de acordo com as especificações." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Ocorreu um erro ao criar uma resposta de autenticação neste fornecedor de identidade." +msgid "Given name" +msgstr "Nome Próprio" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "Ocorreu um erro ao contactar a base de dados LDAP." +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Voltar à página de instalação do SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "A informação acerca da operação de logout foi perdida. Por favor, volte ao serviço de onde efectuou o logout e tente de novo esta operação. A informação de logout possui um tempo de expiração que é normalmente muito superior ao tempo normal de processamento desta operação. Se o problema persistir pode ser um erro de configuração e deverá ser comunicado." +msgid "Go back to the file list" +msgstr "Voltar à lista de ficheiros" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Ocorreu um erro ao processar o pedido de logout." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Existe uma má configuração desta instalação do SimpleSAMLphp. Se é o administrador deste serviço, verifique que a configuração dos metadados está correcta." +msgid "Help desk homepage" +msgstr "Página do serviço de apoio ao utilizador" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Este ponto de acesso (endpoint) não está disponível. Verifique as opções relevantes na configuração do SimpleSAMLphp." +msgid "Help! I don't remember my password." +msgstr "Não me lembro da minha senha" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Este pedido foi iniciado sem o parâmetro RelayState necessário para continuar com o processamento." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "De seguida pode encontrar os metadados gerados pelo SimpleSAMLphp. Pode enviar este documento de metadados aos seus parceiros para configurar uma federação." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "A página não foi encontrada. O URL fornecido foi: %URL%" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Está na página de status do SimpleSAMLphp. Aqui poderá consultar informações sobre a sua sessão: o tempo de expiração e os seus atributos." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "A página não foi encontrada. A razão foi: %REASON% O URL fornecido foi: %URL%" +msgid "Home organization domain name" +msgstr "Nome de domínio da Organização de origem" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "A password presente na configuração (auth.adminpassword) tem o valor de omissão. Por favor altere esta password no ficheiro de configuração." +msgid "Home postal address" +msgstr "Morada de redidência" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Não foi apresentado um certificado válido." +msgid "Home telephone" +msgstr "Telefone de residência" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "A resposta emitida pelo fornecedor de identidade não foi aceite." +msgid "How to get help" +msgstr "Como obter ajuda" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Ocorreu um erro ao processar o pedido de autenticação emitido pelo fornecedor de serviço." +msgid "Identity number assigned by public authorities" +msgstr "Número de Identificação atribuído por autoridades públicas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "O Fornecedor de Identidade respondeu com um erro. (A resposta SAML contém um código de insucesso)" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Se comunicar este erro ao administrador de sistemas inclua o seguinte identificador que possibilita a localização da sua sessão nos registos do serviço:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Na interface SingleLogoutService deve fornecer uma mensagem SAML do tipo LogoutRequest ou LogoutResponse." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Metadados no formato XML SAML 2.0" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Foi despoletada um excepção que não foi tratada." +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "Metadados no formato ficheiro de configuração do SimpleSAMLphp. Use esta alternativa se usar uma entidade SimpleSAMLphp no outro extremo:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "O utilizador ou senha fornecidos são incorrectos. Por favor tente de novo." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Utilizador ou senha incorrecto" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Está na página de status do SimpleSAMLphp. Aqui poderá consultar informações sobre a sua sessão: o tempo de expiração e os seus atributos." +msgid "Incorrect username or password." +msgstr "Nome de utilizador ou senha incorrecta." -msgid "Logout" -msgstr "Sair" +msgid "Information about your current session" +msgstr "" -msgid "Your attributes" -msgstr "Os seus atributos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Certificado inválido" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "A sua sessão é válida por %remaining% segundos." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Por favor, escolha o fornecedor de identidade (IdP) que irá usar para se autenticar:" +msgid "JPEG Photo" +msgstr "Foto JPEG" -msgid "Remember my choice" -msgstr "Lembrar esta escolha" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Erro de LDAP" -msgid "Select" -msgstr "Escolher" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "Ocorreu um erro ao contactar a base de dados LDAP." -msgid "Select your identity provider" -msgstr "Escolha o seu fornecedor de identidade (IdP)" +msgid "Labeled URI" +msgstr "Página web" -msgid "Sending message" -msgstr "A enviar a mensagem" +msgid "Language" +msgstr "" -msgid "Yes, continue" -msgstr "Sim, Aceito" +msgid "Local identity number" +msgstr "Número de Identificação local" -msgid "Debug information" -msgstr "Informação de debug" +msgid "Locality" +msgstr "Localidade" -msgid "E-mail address:" -msgstr "Endereço de email:" +msgid "Logged out" +msgstr "Saída efectuada com sucesso" -msgid "Explain what you did when this error occurred..." -msgstr "Introduza uma breve explicação do sucedido..." +msgid "Logging out of the following services:" +msgstr "A sair dos serviços seguintes:" -msgid "How to get help" -msgstr "Como obter ajuda" +msgid "Logging out..." +msgstr "A sair..." -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Se comunicar este erro ao administrador de sistemas inclua o seguinte identificador que possibilita a localização da sua sessão nos registos do serviço:" +msgid "Login" +msgstr "Entrar" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Opcionalmente, pode introduzir o seu email para o administrador de sistemas entrar em contacto consigo, caso tenha alguma questão relativamente ao seu problema." +msgid "Login at" +msgstr "Entrar em" -msgid "Report errors" -msgstr "Reportar um erro" +msgid "Logout" +msgstr "Sair" -msgid "Send error report" -msgstr "Enviar o relatório de erro" +msgid "Logout failed" +msgstr "Saída falhada" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "A informação de debug abaixo pode ter interesse para o administrador / apoio ao utilizador:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Informação de logout perdida" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Este erro ocorreu provavelmente devido a um comportamento inesperado ou uma má configuração do SimpleSAMLphp. Contacte o administrador deste serviço de login, e comunique a mensagem de erro." +msgid "Mail" +msgstr "E-mail" -msgid "[Preferred choice]" -msgstr "Escolha preferida" +msgid "Manager" +msgstr "Responsável hierárquico" -msgid "Person's principal name at home organization" -msgstr "Nome de utilizador na organização de origem" +msgid "Message" +msgstr "Mensagem" -msgid "Superfluous options in config file" -msgstr "Opções supérfluas do ficheiro de configuração" +msgid "Metadata" +msgstr "Metadados" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "" + +msgid "Metadata overview" +msgstr "Vista geral dos metadados" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" msgid "Mobile" msgstr "Telemóvel" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Fornecedor de serviço (SP) Shib 1.3 (Local)" +msgid "Next" +msgstr "Seguinte" + +msgid "Nickname" +msgstr "Alcunha" + +msgid "No" +msgstr "Não" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "RelayState não definido" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Mensagem SAML não fornecida" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Mensagem SAML não fornecida" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Acesso negado" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "" + +msgid "No errors found." +msgstr "Não foram encontrados erros." + +msgid "No identity providers found. Cannot continue." +msgstr "" -msgid "Display name" -msgstr "Nome de apresentação" +msgid "No, cancel" +msgstr "Não" -msgid "SAML 2.0 SP Metadata" -msgstr "Metadados SAML 2.0 SP" +msgid "No, only %SP%" +msgstr "Não, apenas %SP%" msgid "Notices" msgstr "Observações" -msgid "Home telephone" -msgstr "Telefone de residência" +msgid "On hold" +msgstr "Em espera" -msgid "Service Provider" -msgstr "Fornecedor de Serviço (SP)" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Um ou mais dos serviços onde se encontra autenticado não suporta(m) a saída. Para garantir que todas as sessões são encerradas, deverá encerrar o seu navegador Web." -msgid "Incorrect username or password." -msgstr "Nome de utilizador ou senha incorrecta." +msgid "Optional fields" +msgstr "Campos opcionais" -msgid "Submit message" -msgstr "Enviar mensagem" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Opcionalmente, pode introduzir o seu email para o administrador de sistemas entrar em contacto consigo, caso tenha alguma questão relativamente ao seu problema." -msgid "Locality" -msgstr "Localidade" +msgid "Options missing from config file" +msgstr "Opções ausentes do ficheiro de configuração" -msgid "The following required fields was not found" -msgstr "Os seguintes campos obrigatórios não foram encontrados" +msgid "Organization" +msgstr "Organização" + +msgid "Organization name" +msgstr "Nome da organização" + +msgid "Organization's legal name" +msgstr "Nome legal da organização de origem" + +msgid "Organizational homepage" +msgstr "Página web da organização de origem" msgid "Organizational number" msgstr "Número de Organização" -msgid "Post office box" -msgstr "Apartado" +msgid "Organizational unit" +msgstr "Unidade organizacional" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Foi pedida a sua autenticação por um serviço. Por favor, introduza o seu nome de utilizador e senha nos campos seguintes." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Página não encontrada" -msgid "Error" -msgstr "Erro" +msgid "Parse" +msgstr "Converter" -msgid "Next" -msgstr "Seguinte" +msgid "Password" +msgstr "Senha" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "DN da unidade orgânica na organização de origem" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Password inalterada" -msgid "Converted metadata" -msgstr "Resultado da conversão de Metadados" +msgid "Persistent pseudonymous ID" +msgstr "Identificação persistente tipo pseudónimo" -msgid "Mail" -msgstr "E-mail" +msgid "Person's principal name at home organization" +msgstr "Nome de utilizador na organização de origem" -msgid "No, cancel" -msgstr "Não" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Por favor, escolha o fornecedor de identidade (IdP) que irá usar para se autenticar:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Escolheu %HOMEORG% como a sua organização de origem. Se não estiver correcto, pode escolher outra." +msgid "Post office box" +msgstr "Apartado" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "DN da unidade orgânica" +msgid "Postal address" +msgstr "Morada" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Para obter detalhes sobre uma entidade SAML, clique no título da entidade." +msgid "Postal code" +msgstr "Código Postal" -msgid "Enter your username and password" -msgstr "Introduza o seu nome de utilizador e senha" +msgid "Preferred language" +msgstr "Idioma" -msgid "Login at" -msgstr "Entrar em" +msgid "Primary affiliation" +msgstr "Afiliação principal com a organização de origem" -msgid "No" -msgstr "Não" +msgid "Private information elements" +msgstr "Elementos privados de informação" -msgid "Home postal address" -msgstr "Morada de redidência" +msgid "Remember" +msgstr "Lembrar a minha escolha" -msgid "WS-Fed SP Demo Example" -msgstr "Exemplo de demonstração do SP WS-Fed" +msgid "Remember my choice" +msgstr "Lembrar esta escolha" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "Fornecedor de identidade (IdP) SAML 2.0 (Remoto)" +msgid "Report errors" +msgstr "Reportar um erro" -msgid "Do you want to logout from all the services above?" -msgstr "Deseja sair de todos os serviços listados em cima?" +msgid "Required fields" +msgstr "Campos obrigatórios" -msgid "Given name" -msgstr "Nome Próprio" +msgid "Return to service" +msgstr "Regressar ao serviço" + +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "Fornecedor de identidade (IdP) SAML 2.0 (Local)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "Fornecedor de identidade (IdP) SAML 2.0 (Remoto)" msgid "SAML 2.0 SP Demo Example" msgstr "Exemplo de demonstração do SP SAML 2.0" -msgid "Organization name" -msgstr "Nome da organização" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Está prestes a enviar uma mensagem. Carregue no botão para continuar." +msgid "SAML 2.0 SP Metadata" +msgstr "Metadados SAML 2.0 SP" -msgid "Home organization domain name" -msgstr "Nome de domínio da Organização de origem" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "Fornecedor de serviço (SP) SAML 2.0 (Local)" -msgid "Go back to the file list" -msgstr "Voltar à lista de ficheiros" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Relatório de erro enviado" +msgid "Select" +msgstr "Escolher" -msgid "Common name" -msgstr "Nome completo" +msgid "Select configuration file to check:" +msgstr "Escolha o ficheiro de configuração a verificar:" -msgid "Logout failed" -msgstr "Saída falhada" +msgid "Select your identity provider" +msgstr "Escolha o seu fornecedor de identidade (IdP)" -msgid "Identity number assigned by public authorities" -msgstr "Número de Identificação atribuído por autoridades públicas" +msgid "Send e-mail to help desk" +msgstr "Enviar um e-mail para o serviço de apoio ao utilizador" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "Fornecedor de identidade (IdP) WS-Federation (Remoto)" +msgid "Send error report" +msgstr "Enviar o relatório de erro" -msgid "Some error occurred" -msgstr "Ocorreu um erro" +msgid "Sending message" +msgstr "A enviar a mensagem" -msgid "Organization" -msgstr "Organização" +msgid "Service Provider" +msgstr "Fornecedor de Serviço (SP)" -msgid "Choose home organization" -msgstr "Escolha a sua organização de origem" +msgid "Session size: %SIZE%" +msgstr "Tamanho da sessão: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Identificação persistente tipo pseudónimo" +msgid "Shib 1.3 IdP Metadata" +msgstr "Metadados Shib 1.3 IdP" -msgid "No errors found." -msgstr "Não foram encontrados erros." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Fornecedor de identidade (IdP) Shib 1.3 (Local)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "Fornecedor de serviço (SP) SAML 2.0 (Local)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Fornecedor de identidade (IdP) Shib 1.3 (Remoto)" -msgid "Required fields" -msgstr "Campos obrigatórios" +msgid "Shib 1.3 SP Metadata" +msgstr "Metadados Shib 1.3 SP" -msgid "Domain component (DC)" -msgstr "Componente de domínio" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Fornecedor de serviço (SP) Shib 1.3 (Local)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Fornecedor de serviço (SP) SAML 2.0 (Remoto)" -msgid "Password" -msgstr "Senha" - -msgid "Nickname" -msgstr "Alcunha" - -msgid "The error report has been sent to the administrators." -msgstr "O relatório de erro foi enviado aos administradores" - -msgid "Date of birth" -msgstr "Data de nascimento" - -msgid "Private information elements" -msgstr "Elementos privados de informação" - -msgid "You are also logged in on these services:" -msgstr "Está também autenticado nos seguintes serviços:" +msgid "Shibboleth demo" +msgstr "Exemplo de demonstração do SP Shibboleth 1.3" msgid "SimpleSAMLphp Diagnostics" msgstr "Diagnósticos do SimpleSAMLphp" -msgid "No, only %SP%" -msgstr "Não, apenas %SP%" - -msgid "Username" -msgstr "Nome de utilizador" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "O software SimpleSAMLphp tem um problema de configuração." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Voltar à página de instalação do SimpleSAMLphp" +msgid "SimpleSAMLphp error" +msgstr "Erro no SimpleSAMLphp" -msgid "You have successfully logged out from all services listed above." -msgstr "Saiu com sucesso de todos os serviços listados em cima." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Saiu com sucesso de %SP%." +msgid "Some error occurred" +msgstr "Ocorreu um erro" -msgid "Affiliation" -msgstr "Afiliação com a organização de origem" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "" -msgid "You have been logged out." -msgstr "Saída efectuada com sucesso. Obrigado por ter usado este serviço." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "" -msgid "Return to service" -msgstr "Regressar ao serviço" +msgid "Street" +msgstr "Rua" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "Fornecedor de serviço (SP) WS-Federation (Local)" +msgid "Submit message" +msgstr "Enviar mensagem" -msgid "Preferred language" -msgstr "Idioma" +msgid "Superfluous options in config file" +msgstr "Opções supérfluas do ficheiro de configuração" msgid "Surname" msgstr "Nome de família" -msgid "The following fields was not recognized" -msgstr "Os seguintes campos não foram reconhecidos" +msgid "Telephone number" +msgstr "Telefone" -msgid "User ID" -msgstr "Identificação de utilizador" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "O Fornecedor de Identidade respondeu com um erro. (A resposta SAML contém um código de insucesso)" -msgid "JPEG Photo" -msgstr "Foto JPEG" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "" -msgid "Postal address" -msgstr "Morada" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "A informação de debug abaixo pode ter interesse para o administrador / apoio ao utilizador:" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Metadados no formato XML SAML 2.0" +msgid "The error report has been sent to the administrators." +msgstr "O relatório de erro foi enviado aos administradores" -msgid "Logging out of the following services:" -msgstr "A sair dos serviços seguintes:" +msgid "The following fields was not recognized" +msgstr "Os seguintes campos não foram reconhecidos" -msgid "Labeled URI" -msgstr "Página web" +msgid "The following optional fields was not found" +msgstr "Os seguintes campos opcionais não foram encontrados" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Fornecedor de identidade (IdP) Shib 1.3 (Local)" +msgid "The following required fields was not found" +msgstr "Os seguintes campos obrigatórios não foram encontrados" -msgid "Metadata" -msgstr "Metadados" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "A página não foi encontrada. O URL fornecido foi: %URL%" -msgid "Login" -msgstr "Entrar" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "A página não foi encontrada. A razão foi: %REASON% O URL fornecido foi: %URL%" -msgid "Yes, all services" -msgstr "Sim, todos os serviços" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "A informação acerca da operação de logout foi perdida. Por favor, volte ao serviço de onde efectuou o logout e tente de novo esta operação. A informação de logout possui um tempo de expiração que é normalmente muito superior ao tempo normal de processamento desta operação. Se o problema persistir pode ser um erro de configuração e deverá ser comunicado." -msgid "Logged out" -msgstr "Saída efectuada com sucesso" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Este pedido foi iniciado sem o parâmetro RelayState necessário para continuar com o processamento." -msgid "Postal code" -msgstr "Código Postal" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "O pedido efectuado ao serviço de descoberta de IdP não está de acordo com as especificações." -msgid "Logging out..." -msgstr "A sair..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "Fornecedor de identidade (IdP) SAML 2.0 (Local)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "A password presente na configuração (auth.adminpassword) tem o valor de omissão. Por favor altere esta password no ficheiro de configuração." -msgid "Primary affiliation" -msgstr "Afiliação principal com a organização de origem" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Ocorreu um erro com o pedido a esta página. A razão foi: %REASON%" -msgid "XML metadata" -msgstr "Metadados em XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Existe uma má configuração desta instalação do SimpleSAMLphp. Se é o administrador deste serviço, verifique que a configuração dos metadados está correcta." -msgid "Telephone number" -msgstr "Telefone" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Ocorreu um erro ao processar o pedido de autenticação emitido pelo fornecedor de serviço." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Não foi possível sair de um ou mais serviços. Para garantir que todas as suas sessões são fechadas, é recomendado fechar o seu browser." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Este ponto de acesso (endpoint) não está disponível. Verifique as opções relevantes na configuração do SimpleSAMLphp." -msgid "Entitlement regarding the service" -msgstr "Direitos oferecidos pela organização de origem" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Este erro ocorreu provavelmente devido a um comportamento inesperado ou uma má configuração do SimpleSAMLphp. Contacte o administrador deste serviço de login, e comunique a mensagem de erro." -msgid "Shib 1.3 SP Metadata" -msgstr "Metadados Shib 1.3 SP" +msgid "Title" +msgstr "Título" -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Estando em modo debug, pode consultar o conteúdo da mensagem que está a enviar:" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Para obter detalhes sobre uma entidade SAML, clique no título da entidade." -msgid "Remember" -msgstr "Lembrar a minha escolha" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "DN da organização de origem" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Está prestes a enviar uma mensagem. Carregue na ligação para continuar." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Não foi possível sair de um ou mais serviços. Para garantir que todas as suas sessões são fechadas, é recomendado fechar o seu browser." -msgid "Organizational unit" -msgstr "Unidade organizacional" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Número de Identificação local" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Excepção não tratada" -msgid "Shib 1.3 IdP Metadata" -msgstr "Metadados Shib 1.3 IdP" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "" -msgid "Change your home organization" -msgstr "Alterar a sua organização de origem" +msgid "User ID" +msgstr "Identificação de utilizador" msgid "User's password hash" msgstr "Senha do utilizador" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "Metadados no formato ficheiro de configuração do SimpleSAMLphp. Use esta alternativa se usar uma entidade SimpleSAMLphp no outro extremo:" - -msgid "Completed" -msgstr "Completa" - -msgid "Select configuration file to check:" -msgstr "Escolha o ficheiro de configuração a verificar:" +msgid "Username" +msgstr "Nome de utilizador" -msgid "On hold" -msgstr "Em espera" +msgid "WS-Fed SP Demo Example" +msgstr "Exemplo de demonstração do SP WS-Fed" -msgid "Help! I don't remember my password." -msgstr "Não me lembro da minha senha" +msgid "WS-Federation Identity Provider (Remote)" +msgstr "Fornecedor de identidade (IdP) WS-Federation (Remoto)" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Pode desligar o modo debug no ficheiro global de configuração config/config.php do SimpleSAMLphp." +msgid "WS-Federation Service Provider (Hosted)" +msgstr "Fornecedor de serviço (SP) WS-Federation (Local)" -msgid "SimpleSAMLphp error" -msgstr "Erro no SimpleSAMLphp" +msgid "Warning" +msgstr "" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Um ou mais dos serviços onde se encontra autenticado não suporta(m) a saída. Para garantir que todas as sessões são encerradas, deverá encerrar o seu navegador Web." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "A resposta emitida pelo fornecedor de identidade não foi aceite." -msgid "Organization's legal name" -msgstr "Nome legal da organização de origem" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Ocorreu um erro ao criar uma resposta de autenticação neste fornecedor de identidade." -msgid "Options missing from config file" -msgstr "Opções ausentes do ficheiro de configuração" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Sem o seu nome de utilizador e senha não se pode autenticar para acesso ao serviço. Para obter ajuda, consulte o seu serviço de apoio ao utilizador." -msgid "The following optional fields was not found" -msgstr "Os seguintes campos opcionais não foram encontrados" +msgid "World" +msgstr "" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Pode obter os metadados em XML num URL dedicado:" +msgid "XML metadata" +msgstr "Metadados em XML" -msgid "Street" -msgstr "Rua" +msgid "Yes, all services" +msgstr "Sim, todos os serviços" -msgid "Message" -msgstr "Mensagem" +msgid "Yes, continue" +msgstr "Sim, Aceito" -msgid "Contact information:" -msgstr "Contactos:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Campos opcionais" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Na interface Assertion Consumer Service deve fornecer uma mensagem SAML do tipo Authentication Response." -msgid "You have previously chosen to authenticate at" -msgstr "Escolheu autenticar-se anteriormente em" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "A senha não foi enviada no seu pedido. Por favor tente de novo." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Na interface SingleLogoutService deve fornecer uma mensagem SAML do tipo LogoutRequest ou LogoutResponse." -msgid "Fax number" -msgstr "Número de Fax" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Está prestes a enviar uma mensagem. Carregue no botão para continuar." -msgid "Shibboleth demo" -msgstr "Exemplo de demonstração do SP Shibboleth 1.3" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Está prestes a enviar uma mensagem. Carregue na ligação para continuar." -msgid "Error in this metadata entry" -msgstr "Erro nesta entrada de metadados" +msgid "You are also logged in on these services:" +msgstr "Está também autenticado nos seguintes serviços:" -msgid "Session size: %SIZE%" -msgstr "Tamanho da sessão: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Está a aceder a um sistema em pré-produção. Este passo de autenticação servirá apenas para testes e verificações de pré-produção. Se alguém lhe enviou este endereço, e você não é um testador, então provavelmente recebeu um link errado, e não deveria estar aqui." -msgid "Parse" -msgstr "Converter" +msgid "You are now successfully logged out from %SP%." +msgstr "Saiu com sucesso de %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Sem o seu nome de utilizador e senha não se pode autenticar para acesso ao serviço. Para obter ajuda, consulte o seu serviço de apoio ao utilizador." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Pode obter os metadados em XML num URL dedicado:" -msgid "Choose your home organization" -msgstr "Escolha a sua organização de origem" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Pode desligar o modo debug no ficheiro global de configuração config/config.php do SimpleSAMLphp." -msgid "Send e-mail to help desk" -msgstr "Enviar um e-mail para o serviço de apoio ao utilizador" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Não foi apresentado um certificado válido." -msgid "Metadata overview" -msgstr "Vista geral dos metadados" +msgid "You have been logged out." +msgstr "Saída efectuada com sucesso. Obrigado por ter usado este serviço." -msgid "Title" -msgstr "Título" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Escolheu %HOMEORG% como a sua organização de origem. Se não estiver correcto, pode escolher outra." -msgid "Manager" -msgstr "Responsável hierárquico" +msgid "You have previously chosen to authenticate at" +msgstr "Escolheu autenticar-se anteriormente em" -msgid "Affiliation at home organization" -msgstr "Afiliação com a organização de origem (com contexto)" +msgid "You have successfully logged out from all services listed above." +msgstr "Saiu com sucesso de todos os serviços listados em cima." -msgid "Help desk homepage" -msgstr "Página do serviço de apoio ao utilizador" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "A senha não foi enviada no seu pedido. Por favor tente de novo." -msgid "Configuration check" -msgstr "Verificação da configuração" +msgid "Your attributes" +msgstr "Os seus atributos" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Fornecedor de identidade (IdP) Shib 1.3 (Remoto)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "De seguida pode encontrar os metadados gerados pelo SimpleSAMLphp. Pode enviar este documento de metadados aos seus parceiros para configurar uma federação." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "A sua sessão é válida por %remaining% segundos." -msgid "Organizational homepage" -msgstr "Página web da organização de origem" +msgid "[Preferred choice]" +msgstr "Escolha preferida" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Está a aceder a um sistema em pré-produção. Este passo de autenticação servirá apenas para testes e verificações de pré-produção. Se alguém lhe enviou este endereço, e você não é um testador, então provavelmente recebeu um link errado, e não deveria estar aqui." +msgid "not set" +msgstr "" diff --git a/locales/pt-br/LC_MESSAGES/attributes.po b/locales/pt_BR/LC_MESSAGES/attributes.po similarity index 100% rename from locales/pt-br/LC_MESSAGES/attributes.po rename to locales/pt_BR/LC_MESSAGES/attributes.po diff --git a/locales/pt-br/LC_MESSAGES/messages.po b/locales/pt_BR/LC_MESSAGES/messages.po similarity index 90% rename from locales/pt-br/LC_MESSAGES/messages.po rename to locales/pt_BR/LC_MESSAGES/messages.po index 26a9f0c477..9e49499511 100644 --- a/locales/pt-br/LC_MESSAGES/messages.po +++ b/locales/pt_BR/LC_MESSAGES/messages.po @@ -1,711 +1,801 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Não fornecida a resposta SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Não fornecida a mensagem SAML" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Um serviço que você pediu necessita que você se autentique. Digite seu nome de usuário e senha no formulário abaixo." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Filiação" + +msgid "Affiliation at home organization" +msgstr "Filiação na organização principal" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Um erro ocorreu ao tentar criar o pedido do SAML." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Um erro ocorreu ao tentar processar a resposta da desconexão." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Uma exceção não tratada foi descartada." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Como você está no modo de debug, você pode ver o conteúdo da mensagem que você está enviando:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Autenticação abortada" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Erro de autenticação na origem %AUTHSOURCE%. O motivo foi:%REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Falha na Autenticação: O certificado que seu navegador (browser) enviou é inválido ou não pode ser lido" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Falha na Autenticação: O certificado que seu navegador (browser) enviou é desconhecido" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Falha na Autenticação: Seu navegador (browser) não enviou nenhum certificado" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Erro na fonte de autenticação" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "A solicitação recebida é inválida" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Pedido incorreto para o serviço de descoberta" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "Erro CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Change your home organization" +msgstr "Mudar a organização principal" + +msgid "Choose home organization" +msgstr "Escolher uma organização principal" + +msgid "Choose your home organization" +msgstr "Escolha a sua organização principal" + +msgid "Common name" +msgstr "Nome Comum (CN)" + +msgid "Completed" +msgstr "Completado" + +msgid "Configuration check" +msgstr "Verificar configuração" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Erro na configuração" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Erro ao criar o pedido" +msgid "Contact information:" +msgstr "Informações de Contato" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Pedido incorreto para o serviço de descoberta" +msgid "Converted metadata" +msgstr "Metadata convetida" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Não foi possível criar a resposta da autenticação" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Certificado inválido" +msgid "Date of birth" +msgstr "Data de Nascimento" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Erro no LDAP" +msgid "Debug information" +msgstr "Informação do Debug" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Informações de desconexão perdidas" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Erro ao processar a resposta da desconexão" +msgid "Display name" +msgstr "Nome a ser mostrado" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Erro ao carregar a metadata." +msgid "Distinguished name (DN) of person's home organization" +msgstr "Nome distinto (DN) da sua organização principal" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadado não encontrado" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Nome distinto (DN) da sua unidade organizacional principal" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Acesso negado." +msgid "Do you want to logout from all the services above?" +msgstr "Você quer sair de todos os serviços acima?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Sem Certificado" +msgid "Domain component (DC)" +msgstr "Componente do Domínio (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Sem RelayState" +msgid "E-mail address:" +msgstr "Endereço de e-mail:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Informações de estado perdidas" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Ou nenhum usuário com o nome de usuário pode ser encontrado, ou a senha que você digitou está incorreta. Verifique o nome de usuário e tente novamente." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Página não encontrada" +msgid "Enter your username and password" +msgstr "Digite seu usuário e senha" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Senha não definida" +msgid "Entitlement regarding the service" +msgstr "Titularidade sobre o serviço" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Erro processando a resposta do Provedor de Identidade." +msgid "Error" +msgstr "Erro" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Erro ao criar o pedido" + +msgid "Error in this metadata entry" +msgstr "Erro na entrada desta metadata" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Erro ao carregar a metadata." #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Erro processando o pedido do Provedor de Serviços." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Erro processando a resposta do Provedor de Identidade." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Erro ao processar a resposta da desconexão" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Erro recebido do Provedor de Identidade" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Exceção não tratada" +msgid "Error report sent" +msgstr "Relatório de erro enviado" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Certificado Desconhecido" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Erro ao comunicar-se com o servidor CAS" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Autenticação abortada" +msgid "Explain what you did when this error occurred..." +msgstr "Explique o que você estava fazendo quando aconteceu o erro..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Nome de usuário ou senha incorreto." +msgid "Fax number" +msgstr "Número do Fax" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Você acessou a interface do Assertion Consumer Service, mas não forneceu uma SAML Authentication Response." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Erro de autenticação na origem %AUTHSOURCE%. O motivo foi:%REASON%" +msgid "Given name" +msgstr "Nome" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Há um erro no pedido para esta página. O motivo foi: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Voltar a instalação do SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Erro ao comunicar-se com o servidor CAS" +msgid "Go back to the file list" +msgstr "Voltar a lista de arquivos" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp parece estar mal configurado." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Um erro ocorreu ao tentar criar o pedido do SAML." +msgid "Help desk homepage" +msgstr "Central de Ajuda" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Os parâmetros enviados para o serviço de descoberta não estão de acordo com as especificações." +msgid "Help! I don't remember my password." +msgstr "Ajude-me! Não lembro minha senha." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Ocorreu um erro quando este servidor de identidade tentou criar uma resposta de autenticação." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Aqui está a metadata que o SimpleSAMLphp gerou para você. Você pode enviar este documento metadata para parceiros confiáveis para a configuração de uma federação confiável." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Falha na Autenticação: O certificado que seu navegador (browser) enviou é inválido ou não pode ser lido" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Olá, esta é a página de status SimpleSAMLphp. Aqui você pode ver é se a sua sessão expirou, o tempo que dura até ele expirar e todos os atributos que estão anexados à sua sessão." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "O banco de dados de usuários é LDAP e quando você tentar efetuar o login é preciso entrar em contato com um banco de dados LDAP. Ocorreu um erro durante a tentativa de conexão." +msgid "Home organization domain name" +msgstr "Nome de domínio da organização principal" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "As informações sobre a operação de desconexão atual foram perdidas. Você deve voltar para o serviço que estava antes de tentar sair e tente novamente. Esse erro pode ser causado pela expiração das informações da desconexão. As informações são armazenadas em cache por uma quantia limitada de tempo - geralmente um número de horas. Esta é mais longa do que qualquer desconexão em funcionamento normal deve ter, de modo que este erro pode indicar algum outro erro com a configuração. Se o problema persistir, contate o seu fornecedor de serviços." +msgid "Home postal address" +msgstr "Endereço residencial" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Um erro ocorreu ao tentar processar a resposta da desconexão." +msgid "Home telephone" +msgstr "Telefone fixo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Há erros na sua instalação do SimpleSAMLphp. Se você é o administrador deste seriço, você deve certificar-se que a sua configuração de metadata está definida corretamente." +msgid "How to get help" +msgstr "Como conseguir ajuda" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Não foi possível localizar os metadados de %ENTITYID%" +msgid "Identity number assigned by public authorities" +msgstr "Número de identificação atribuído pelas autoridades públicas" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Este parâmetro não está ativado. Marque a opção habilitar na configuração do SimpleSAMLphp." +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Se informar sobre esse erro, por favor, também informe este ID do relatório de monitoramento que torna possível localizar a sua sessão nos registros disponíveis para o administrador do sistema:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Falha na Autenticação: Seu navegador (browser) não enviou nenhum certificado" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Em formato SAML 2.0 Metadata XML" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "O promotor deste pedido não fornecer um parâmetro RelayState indicando o local para onde seguir." +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "Em formato de arquivo plano SimpleSAMLphp - use isso se você estiver usando uma entidade SimpleSAMLphp do outro lado:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Informações de estado perdidas, e não é possível reiniciar a requisição" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Nome de usuário ou senha incorreto." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "A página determinada não foi encontrada. A URL foi: %URL%" +msgid "Incorrect username or password." +msgstr "Nome de usuário ou senha incorretos." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "A página determinada não foi encontrada. A razão foi: %REASON% A URL foi: %URL%" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "A senha na configuração (auth.adminpassword) não foi alterada. Edite o arquivo de configuração." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Certificado inválido" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Você não possui um certificado válido" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Nós não aceitamos a resposta enviada pelo Provedor de Identidade." +msgid "JPEG Photo" +msgstr "Foto JPEG" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Este Provedor de Identidade recebeu um Pedido de Autenticação de um Provedor de Serviços, mas um erro ocorreu ao tentar processar o pedido." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Erro no LDAP" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "O Provedor de Identidade respondeu com um erro. (O código de resposta do SAML não teve sucesso." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "O banco de dados de usuários é LDAP e quando você tentar efetuar o login é preciso entrar em contato com um banco de dados LDAP. Ocorreu um erro durante a tentativa de conexão." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Você acessou a interface do SingleLogoutService, mas não forneceu a SAML LogoutRequest ou LogoutResponse." +msgid "Labeled URI" +msgstr "URI rotulado" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Uma exceção não tratada foi descartada." +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Falha na Autenticação: O certificado que seu navegador (browser) enviou é desconhecido" +msgid "Local identity number" +msgstr "Número de Identificação Local" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "A autenticação foi abortada pelo usuário" +msgid "Locality" +msgstr "Localidade" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Ou nenhum usuário com o nome de usuário pode ser encontrado, ou a senha que você digitou está incorreta. Verifique o nome de usuário e tente novamente." +msgid "Logged out" +msgstr "Desconectado" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Olá, esta é a página de status SimpleSAMLphp. Aqui você pode ver é se a sua sessão expirou, o tempo que dura até ele expirar e todos os atributos que estão anexados à sua sessão." +msgid "Logging out of the following services:" +msgstr "Saindo dos seguintes serviços:" + +msgid "Logging out..." +msgstr "Saindo do serviço..." + +msgid "Login" +msgstr "Acessar" + +msgid "Login at" +msgstr "Logado como" msgid "Logout" msgstr "Desconectar" -msgid "Your attributes" -msgstr "Seus atributos" +msgid "Logout failed" +msgstr "Falha ao sair do serviço" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Sua sessão é válida por %remaining% segundos a partir de agora." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Informações de desconexão perdidas" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Por favor selecione o provedor de identidade ao qual deseja se autenticar" +msgid "Mail" +msgstr "E-mail" -msgid "Remember my choice" -msgstr "Lembrar minha escolha" +msgid "Manager" +msgstr "Administrador" -msgid "Select" -msgstr "Selecione" +msgid "Message" +msgstr "Mensagem" -msgid "Select your identity provider" -msgstr "Selecione seu provedor de identidade" +msgid "Metadata" +msgstr "Metadata" -msgid "Sending message" -msgstr "Enviando a mensagem" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadado não encontrado" -msgid "Yes, continue" -msgstr "Sim, Aceito" +msgid "Metadata overview" +msgstr "Visão geral da metadata" -msgid "Debug information" -msgstr "Informação do Debug" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "E-mail address:" -msgstr "Endereço de e-mail:" +msgid "Mobile" +msgstr "Celular" -msgid "Explain what you did when this error occurred..." -msgstr "Explique o que você estava fazendo quando aconteceu o erro..." +msgid "Next" +msgstr "Próximo" -msgid "How to get help" -msgstr "Como conseguir ajuda" +msgid "Nickname" +msgstr "Apelido" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Se informar sobre esse erro, por favor, também informe este ID do relatório de monitoramento que torna possível localizar a sua sessão nos registros disponíveis para o administrador do sistema:" +msgid "No" +msgstr "Não" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Opcionalmente digite o seu endereço de e-mail para que os administradores possam contatá-lo para mais perguntas sobre o seu problema:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Sem RelayState" -msgid "Report errors" -msgstr "Reportar erros" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Não fornecida a mensagem SAML" -msgid "Send error report" -msgstr "Enviar o relatório de erro" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "A informação a seguir é importante para seu administrador / Central de Dúvidas" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Não fornecida a resposta SAML" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Esse erro é provavelmente devido a algum imprevisto no comportamento do SimpleSAMLphp. Contate o administrador deste serviço de login e envie-lhe a mensagem de erro acima." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Acesso negado." -msgid "[Preferred choice]" -msgstr "[Opção preferida]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Sem Certificado" -msgid "Person's principal name at home organization" -msgstr "Diretor da organização principal" +msgid "No errors found." +msgstr "Não foram encontrados erros." -msgid "Superfluous options in config file" -msgstr "Opções supérfluas no arquivo de configuração" +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Não" + +msgid "No, only %SP%" +msgstr "Não, apenas de %SP%" + +msgid "Notices" +msgstr "Avisos" + +msgid "On hold" +msgstr "Aguardando" + +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Um ou mais dos serviços que você está conectado não suportam logout. Para garantir que todas as suas sessões serão fechadas, incentivamos você a fechar seu navegador." + +msgid "Optional fields" +msgstr "Campos opcionais" + +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Opcionalmente digite o seu endereço de e-mail para que os administradores possam contatá-lo para mais perguntas sobre o seu problema:" + +msgid "Options missing from config file" +msgstr "Opções faltando no arquivo de configuração" + +msgid "Organization" +msgstr "Organização" -msgid "Mobile" -msgstr "Celular" +msgid "Organization name" +msgstr "Nome da Organização (O)" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Service Provider (Local)" +msgid "Organization's legal name" +msgstr "Nome legal da Organização" -msgid "Display name" -msgstr "Nome a ser mostrado" +msgid "Organizational homepage" +msgstr "Site da organização" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP Metadata" +msgid "Organizational number" +msgstr "Número Organizacional" -msgid "Notices" -msgstr "Avisos" +msgid "Organizational unit" +msgstr "Unidade Organizacional (OU)" -msgid "Home telephone" -msgstr "Telefone fixo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Página não encontrada" -msgid "Service Provider" -msgstr "Provedor de Serviços" +msgid "Parse" +msgstr "Parse" -msgid "Incorrect username or password." -msgstr "Nome de usuário ou senha incorretos." +msgid "Password" +msgstr "Senha" -msgid "Submit message" -msgstr "Enviar mensagem" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Senha não definida" -msgid "Locality" -msgstr "Localidade" +msgid "Persistent pseudonymous ID" +msgstr "Apelido persistente ID" -msgid "The following required fields was not found" -msgstr "Os seguintes campos requeridos não foram encontrados" +msgid "Person's principal name at home organization" +msgstr "Diretor da organização principal" -msgid "Organizational number" -msgstr "Número Organizacional" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Por favor selecione o provedor de identidade ao qual deseja se autenticar" msgid "Post office box" msgstr "Caixa Postal" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Um serviço que você pediu necessita que você se autentique. Digite seu nome de usuário e senha no formulário abaixo." - -msgid "Error" -msgstr "Erro" - -msgid "Next" -msgstr "Próximo" +msgid "Postal address" +msgstr "Endereço" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Nome distinto (DN) da sua unidade organizacional principal" +msgid "Postal code" +msgstr "CEP" -msgid "Converted metadata" -msgstr "Metadata convetida" +msgid "Preferred language" +msgstr "Linguagem preferida" -msgid "Mail" -msgstr "E-mail" +msgid "Primary affiliation" +msgstr "Filiação Primária" -msgid "No, cancel" -msgstr "Não" +msgid "Remember" +msgstr "Lembrar Consentimento" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Você escolheu %HOMEORG% como sua organização pessoal. Se isto estiver incorreto você pode escolher outra." +msgid "Remember me" +msgstr "Lembre-me" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Para ver os detalhes da entidade SAML, clique " +msgid "Remember my choice" +msgstr "Lembrar minha escolha" -msgid "Enter your username and password" -msgstr "Digite seu usuário e senha" +msgid "Remember my username" +msgstr "Lembrar meu nome de usuário" -msgid "Login at" -msgstr "Logado como" +msgid "Report errors" +msgstr "Reportar erros" -msgid "No" -msgstr "Não" +msgid "Required fields" +msgstr "Campos requeridos" -msgid "Home postal address" -msgstr "Endereço residencial" +msgid "Return to service" +msgstr "Retornar ao serviço" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP Exemplo" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Identity Provider (Local)" msgid "SAML 2.0 Identity Provider (Remote)" msgstr "SAML 2.0 Identity Provider (Remoto)" -msgid "Do you want to logout from all the services above?" -msgstr "Você quer sair de todos os serviços acima?" - -msgid "Given name" -msgstr "Nome" - msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP Exemplo" -msgid "Organization name" -msgstr "Nome da Organização (O)" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Você está prestes a enviar uma mensagem. Aperte o botão enviar mensagem para continuar." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP Metadata" -msgid "Home organization domain name" -msgstr "Nome de domínio da organização principal" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Service Provider (Local)" -msgid "Go back to the file list" -msgstr "Voltar a lista de arquivos" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Relatório de erro enviado" +msgid "Select" +msgstr "Selecione" -msgid "Common name" -msgstr "Nome Comum (CN)" +msgid "Select configuration file to check:" +msgstr "Selecione o arquivo de configuração para verificar" -msgid "Logout failed" -msgstr "Falha ao sair do serviço" +msgid "Select your identity provider" +msgstr "Selecione seu provedor de identidade" -msgid "Identity number assigned by public authorities" -msgstr "Número de identificação atribuído pelas autoridades públicas" +msgid "Send e-mail to help desk" +msgstr "Envie um e-mail para a Central de Ajuda." -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation Identity Provider (Remoto)" +msgid "Send error report" +msgstr "Enviar o relatório de erro" -msgid "Some error occurred" -msgstr "Ocorreu algum erro" +msgid "Sending message" +msgstr "Enviando a mensagem" -msgid "Organization" -msgstr "Organização" +msgid "Service Provider" +msgstr "Provedor de Serviços" -msgid "Choose home organization" -msgstr "Escolher uma organização principal" +msgid "Session size: %SIZE%" +msgstr "Tamanho da sessão: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Apelido persistente ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metadata" -msgid "No errors found." -msgstr "Não foram encontrados erros." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Identity Provider (Local)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Service Provider (Local)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Identity Provider (Remoto)" -msgid "Required fields" -msgstr "Campos requeridos" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metadata" -msgid "Domain component (DC)" -msgstr "Componente do Domínio (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Service Provider (Local)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 Service Provider (Remoto)" -msgid "Password" -msgstr "Senha" - -msgid "Nickname" -msgstr "Apelido" - -msgid "The error report has been sent to the administrators." -msgstr "O relatório de erro foi enviado com sucesso para os administradores." - -msgid "Date of birth" -msgstr "Data de Nascimento" - -msgid "You are also logged in on these services:" -msgstr "Você também está logado nestes serviços:" +msgid "Shibboleth demo" +msgstr "Shibboleth Demo" msgid "SimpleSAMLphp Diagnostics" msgstr "Diagnósticos do SimpleSAMLphp" -msgid "No, only %SP%" -msgstr "Não, apenas de %SP%" - -msgid "Username" -msgstr "Usuário" - -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Voltar a instalação do SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp parece estar mal configurado." -msgid "You have successfully logged out from all services listed above." -msgstr "Você saiu com sucesso de todos os serviços listados acima." +msgid "SimpleSAMLphp error" +msgstr "Erro do SimpleSAMLphp" -msgid "You are now successfully logged out from %SP%." -msgstr "Você está saiu com sucesso de %SP%." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "Affiliation" -msgstr "Filiação" +msgid "Some error occurred" +msgstr "Ocorreu algum erro" -msgid "You have been logged out." -msgstr "Você foi desconectado." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Informações de estado perdidas" -msgid "Return to service" -msgstr "Retornar ao serviço" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Informações de estado perdidas, e não é possível reiniciar a requisição" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation Service Provider (Local)" +msgid "Street" +msgstr "Rua" -msgid "Remember my username" -msgstr "Lembrar meu nome de usuário" +msgid "Submit message" +msgstr "Enviar mensagem" -msgid "Preferred language" -msgstr "Linguagem preferida" +msgid "Superfluous options in config file" +msgstr "Opções supérfluas no arquivo de configuração" msgid "Surname" msgstr "Sobrenome" -msgid "The following fields was not recognized" -msgstr "Os seguintes campos não foram reconhecidos" +msgid "Telephone number" +msgstr "Número de Telefone" -msgid "User ID" -msgstr "Identificação (UID)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "O Provedor de Identidade respondeu com um erro. (O código de resposta do SAML não teve sucesso." -msgid "JPEG Photo" -msgstr "Foto JPEG" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "A autenticação foi abortada pelo usuário" -msgid "Postal address" -msgstr "Endereço" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "A informação a seguir é importante para seu administrador / Central de Dúvidas" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Em formato SAML 2.0 Metadata XML" +msgid "The error report has been sent to the administrators." +msgstr "O relatório de erro foi enviado com sucesso para os administradores." -msgid "Logging out of the following services:" -msgstr "Saindo dos seguintes serviços:" +msgid "The following fields was not recognized" +msgstr "Os seguintes campos não foram reconhecidos" -msgid "Labeled URI" -msgstr "URI rotulado" +msgid "The following optional fields was not found" +msgstr "Os seguintes campos opcionais não foram encontrados" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Identity Provider (Local)" +msgid "The following required fields was not found" +msgstr "Os seguintes campos requeridos não foram encontrados" -msgid "Metadata" -msgstr "Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "A página determinada não foi encontrada. A URL foi: %URL%" -msgid "Login" -msgstr "Acessar" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "A página determinada não foi encontrada. A razão foi: %REASON% A URL foi: %URL%" -msgid "Yes, all services" -msgstr "Sim, todos os serviços" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "As informações sobre a operação de desconexão atual foram perdidas. Você deve voltar para o serviço que estava antes de tentar sair e tente novamente. Esse erro pode ser causado pela expiração das informações da desconexão. As informações são armazenadas em cache por uma quantia limitada de tempo - geralmente um número de horas. Esta é mais longa do que qualquer desconexão em funcionamento normal deve ter, de modo que este erro pode indicar algum outro erro com a configuração. Se o problema persistir, contate o seu fornecedor de serviços." -msgid "Logged out" -msgstr "Desconectado" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "O promotor deste pedido não fornecer um parâmetro RelayState indicando o local para onde seguir." -msgid "Postal code" -msgstr "CEP" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Os parâmetros enviados para o serviço de descoberta não estão de acordo com as especificações." -msgid "Logging out..." -msgstr "Saindo do serviço..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Identity Provider (Local)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "A senha na configuração (auth.adminpassword) não foi alterada. Edite o arquivo de configuração." -msgid "Primary affiliation" -msgstr "Filiação Primária" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Há um erro no pedido para esta página. O motivo foi: %REASON%" -msgid "XML metadata" -msgstr "Metadata XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Há erros na sua instalação do SimpleSAMLphp. Se você é o administrador deste seriço, você deve certificar-se que a sua configuração de metadata está definida corretamente." -msgid "Telephone number" -msgstr "Número de Telefone" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Este Provedor de Identidade recebeu um Pedido de Autenticação de um Provedor de Serviços, mas um erro ocorreu ao tentar processar o pedido." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Incapaz de sair de um ou mais serviços. Para garantir que todas as suas sessões serão fechadas, incentivamos você a fechar seu navegador." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Este parâmetro não está ativado. Marque a opção habilitar na configuração do SimpleSAMLphp." -msgid "Entitlement regarding the service" -msgstr "Titularidade sobre o serviço" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Esse erro é provavelmente devido a algum imprevisto no comportamento do SimpleSAMLphp. Contate o administrador deste serviço de login e envie-lhe a mensagem de erro acima." -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Metadata" +msgid "Title" +msgstr "Título" -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Como você está no modo de debug, você pode ver o conteúdo da mensagem que você está enviando:" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Para ver os detalhes da entidade SAML, clique " -msgid "Remember" -msgstr "Lembrar Consentimento" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Nome distinto (DN) da sua organização principal" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Não foi possível localizar os metadados de %ENTITYID%" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Você está prestes a enviar uma mensagem. Clique no link enviar a mensagem para continuar." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Incapaz de sair de um ou mais serviços. Para garantir que todas as suas sessões serão fechadas, incentivamos você a fechar seu navegador." -msgid "Organizational unit" -msgstr "Unidade Organizacional (OU)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Número de Identificação Local" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Exceção não tratada" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Certificado Desconhecido" -msgid "Change your home organization" -msgstr "Mudar a organização principal" +msgid "User ID" +msgstr "Identificação (UID)" msgid "User's password hash" msgstr "Hash da Senha do Usuário" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "Em formato de arquivo plano SimpleSAMLphp - use isso se você estiver usando uma entidade SimpleSAMLphp do outro lado:" - -msgid "Completed" -msgstr "Completado" - -msgid "Select configuration file to check:" -msgstr "Selecione o arquivo de configuração para verificar" - -msgid "On hold" -msgstr "Aguardando" +msgid "Username" +msgstr "Usuário" -msgid "Help! I don't remember my password." -msgstr "Ajude-me! Não lembro minha senha." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP Exemplo" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Você pode desligar o modo de debug no arquivo de configuração global do SimpleSAMLphp config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation Identity Provider (Remoto)" -msgid "SimpleSAMLphp error" -msgstr "Erro do SimpleSAMLphp" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation Service Provider (Local)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Um ou mais dos serviços que você está conectado não suportam logout. Para garantir que todas as suas sessões serão fechadas, incentivamos você a fechar seu navegador." +msgid "Warning" +msgstr "" -msgid "Remember me" -msgstr "Lembre-me" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Nós não aceitamos a resposta enviada pelo Provedor de Identidade." -msgid "Organization's legal name" -msgstr "Nome legal da Organização" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Ocorreu um erro quando este servidor de identidade tentou criar uma resposta de autenticação." -msgid "Options missing from config file" -msgstr "Opções faltando no arquivo de configuração" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Muito mal! - Sem o seu nome de usuário e a senha você não pode autenticar-se para acessar o serviço. Pode haver alguém que possa lhe ajudar. Consulte a central de dúvidas!" -msgid "The following optional fields was not found" -msgstr "Os seguintes campos opcionais não foram encontrados" +msgid "World" +msgstr "" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Você pode obter as metadatas xml em uma URL dedicada:" +msgid "XML metadata" +msgstr "Metadata XML" -msgid "Street" -msgstr "Rua" +msgid "Yes, all services" +msgstr "Sim, todos os serviços" -msgid "Message" -msgstr "Mensagem" +msgid "Yes, continue" +msgstr "Sim, Aceito" -msgid "Contact information:" -msgstr "Informações de Contato" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Campos opcionais" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Você acessou a interface do Assertion Consumer Service, mas não forneceu uma SAML Authentication Response." -msgid "You have previously chosen to authenticate at" -msgstr "Você já escolheu para autenticar a" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Você enviou alguma coisa para a página de login, mas por alguma razão a senha não foi enviada. Por favor tente novamente." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Você acessou a interface do SingleLogoutService, mas não forneceu a SAML LogoutRequest ou LogoutResponse." -msgid "Fax number" -msgstr "Número do Fax" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Você está prestes a enviar uma mensagem. Aperte o botão enviar mensagem para continuar." -msgid "Shibboleth demo" -msgstr "Shibboleth Demo" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Você está prestes a enviar uma mensagem. Clique no link enviar a mensagem para continuar." -msgid "Error in this metadata entry" -msgstr "Erro na entrada desta metadata" +msgid "You are also logged in on these services:" +msgstr "Você também está logado nestes serviços:" -msgid "Session size: %SIZE%" -msgstr "Tamanho da sessão: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Agora você está acessando um sistema de pré-produção. Esta configuração de autenticação é para testes e verificação de pré-produção apenas. Se alguém lhe enviou um link que apontava para aqui, e você não é um testador, você provavelmente tem o link errado, e não deveria estar aqui." -msgid "Parse" -msgstr "Parse" +msgid "You are now successfully logged out from %SP%." +msgstr "Você está saiu com sucesso de %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Muito mal! - Sem o seu nome de usuário e a senha você não pode autenticar-se para acessar o serviço. Pode haver alguém que possa lhe ajudar. Consulte a central de dúvidas!" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Você pode obter as metadatas xml em uma URL dedicada:" -msgid "Choose your home organization" -msgstr "Escolha a sua organização principal" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Você pode desligar o modo de debug no arquivo de configuração global do SimpleSAMLphp config/config.php." -msgid "Send e-mail to help desk" -msgstr "Envie um e-mail para a Central de Ajuda." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Você não possui um certificado válido" -msgid "Metadata overview" -msgstr "Visão geral da metadata" +msgid "You have been logged out." +msgstr "Você foi desconectado." -msgid "Title" -msgstr "Título" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Você escolheu %HOMEORG% como sua organização pessoal. Se isto estiver incorreto você pode escolher outra." -msgid "Manager" -msgstr "Administrador" +msgid "You have previously chosen to authenticate at" +msgstr "Você já escolheu para autenticar a" -msgid "Affiliation at home organization" -msgstr "Filiação na organização principal" +msgid "You have successfully logged out from all services listed above." +msgstr "Você saiu com sucesso de todos os serviços listados acima." -msgid "Help desk homepage" -msgstr "Central de Ajuda" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Você enviou alguma coisa para a página de login, mas por alguma razão a senha não foi enviada. Por favor tente novamente." -msgid "Configuration check" -msgstr "Verificar configuração" +msgid "Your attributes" +msgstr "Seus atributos" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Identity Provider (Remoto)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Aqui está a metadata que o SimpleSAMLphp gerou para você. Você pode enviar este documento metadata para parceiros confiáveis para a configuração de uma federação confiável." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Sua sessão é válida por %remaining% segundos a partir de agora." -msgid "Organizational homepage" -msgstr "Site da organização" +msgid "[Preferred choice]" +msgstr "[Opção preferida]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Agora você está acessando um sistema de pré-produção. Esta configuração de autenticação é para testes e verificação de pré-produção apenas. Se alguém lhe enviou um link que apontava para aqui, e você não é um testador, você provavelmente tem o link errado, e não deveria estar aqui." +msgid "not set" +msgstr "" diff --git a/locales/ro/LC_MESSAGES/messages.po b/locales/ro/LC_MESSAGES/messages.po index 6bc046e1e6..437aa0f28c 100644 --- a/locales/ro/LC_MESSAGES/messages.po +++ b/locales/ro/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Nu a fost furnizat răspunsul SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Nu a fost furnizat mesajul SAML" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Un serviciu a solicitat autentificarea dumneavoastră. Vă rugăm să completați numele de utilizator și parola în câmpurile de mai jos." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Afiliere" + +msgid "Affiliation at home organization" +msgstr "Afiliere în cadrul instituției de origine" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "A apărut o eroare la crearea cererii SAML." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "A apărut o eroare la procesarea cererii de deautentificare." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "A apărut o excepție netratată." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Întrucât sunteți în modul depanare, veți vedea conținutul mesajului care va fi trimis:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Autentificare întreruptă" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Eroare de autentificare la sursa %AUTHSOURCE%. Motivul a fost: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Autentificare eșuată: certificatul trimis de browser-ul dumneavoastră nu este valid sau nu poate fi citit" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Autentificare eșuată: certificatul trimis de browser-ul dumneavoastră nu este recunoscut" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Autentificare eșuată: browser-ul dumneavoastră nu a trimis niciun certificat" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Eroare sursă de autentificare" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "S-a primit o cerere incorectă" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Cerere eronată către serviciul de căutare" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "Eroare CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Certificate" + +msgid "Change your home organization" +msgstr "Modificați instituția de origine" + +msgid "Choose home organization" +msgstr "Alegeți instituția de origine" + +msgid "Choose your home organization" +msgstr "Alegeți instituția de origine" + +msgid "Common name" +msgstr "Nume comun" + +msgid "Completed" +msgstr "Terminat" + +msgid "Configuration check" +msgstr "Verificarea configurației" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Eroare de configurare" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Eroare la crearea cererii" +msgid "Contact information:" +msgstr "Informații de contact:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Cerere eronată către serviciul de căutare" +msgid "Converted metadata" +msgstr "Metadate convertite" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Nu a fost posibilă crearea răspunsului de autentificare" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Certificat nevalid" +msgid "Date of birth" +msgstr "Data nașterii" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Eroare LDAP" +msgid "Debug information" +msgstr "Informații de depanare" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Informația de deautentificare a fost pierdută" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Eroare la procesarea cererii de deautentificare" +msgid "Display name" +msgstr "Nume afișat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Eroare la încărcarea metadatelor" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Nume distincitv (DN) al instituție de origine a persoanei" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadatele nu au fost găsite" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Nume distincitv (DN) al unității organizaționale primare a persoanei" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Accesul este interzis" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Nume distincitv (DN) al unității organizaționale de origine a persoanei" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Lipsește certificatul" +msgid "Do you want to logout from all the services above?" +msgstr "Doriți să vă deautentificați de la toate serviciile de mai sus ?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Nu există RelayState" +msgid "Domain component (DC)" +msgstr "Componenta de domeniu (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Informația de stare a fost pierdută" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Descărcați certificatele X509 ca fișiere PEM." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Pagina nu a fost găsită" +msgid "E-mail address:" +msgstr "Adresa e-mail:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Parola nu este configurată" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Nu a fost găsit niciun utilizator cu numele de utilizator specificat, sau parola introdusă este greșită. Vă rugăm să încercați din nou." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Eroare la procesarea răspunsului primit de la furnizorul de identitate" +msgid "Enter your username and password" +msgstr "Vă rugăm să completați numele de utilizator și parola" + +msgid "Entitlement regarding the service" +msgstr "Drepturi relativ la acest serviciu" + +msgid "Error" +msgstr "Eroare" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Eroare la crearea cererii" + +msgid "Error in this metadata entry" +msgstr "Eroare în această metadată" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Eroare la încărcarea metadatelor" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Eroare la procesarea răspunsului primit de la furnizorul de servicii" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Eroare la procesarea răspunsului primit de la furnizorul de identitate" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Eroare la procesarea cererii de deautentificare" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Eroare primită de la furnizorul de identitate" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Excepție netratată" +msgid "Error report sent" +msgstr "Raportul cu erori a fost trimis" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Certificat necunoscut" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Eroare de comunicare cu serverul CAS." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Autentificare întreruptă" +msgid "Explain what you did when this error occurred..." +msgstr "Descrieți ce operațiuini executați când a apărut această eroare ..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Nume de utilizator incorect sau parolă incorectă" +msgid "Fax number" +msgstr "Număr de fax" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Ați accesat interfața Assertion Consumer Service dar nu ați furnizat răspunsul de autentificare SAML." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Eroare de autentificare la sursa %AUTHSOURCE%. Motivul a fost: %REASON%" +msgid "Given name" +msgstr "Prenume" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Există o eroare în cererea către această pagină. Motivul este: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Mergeți înapoi la pagina de instalare a SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Eroare de comunicare cu serverul CAS." +msgid "Go back to the file list" +msgstr "Mergeți înapoi la lista de fișiere" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Probleme la configurarea SimpleSAMLphp." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "A apărut o eroare la crearea cererii SAML." +msgid "Help desk homepage" +msgstr "Pagina echipei de suport tehnic" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Parametrii trimiși către serviciul de căutare nu sunt în conformitate cu specificațiile." +msgid "Help! I don't remember my password." +msgstr "Nu mai știu parola." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "A apărut o eroare când furnizorul de identitate încerca să creeze un răspuns de autentificare." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Acestea sunt metadate generate de SimpleSAMLphp. Metadatele pot fi trimise către parteneri de încredere pentru a configura o federație de încredere." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Autentificare eșuată: certificatul trimis de browser-ul dumneavoastră nu este valid sau nu poate fi citit" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Aceasta este pagina de stare pentru SimpleSAMLphp. Aici puteți verifica dacă sesiunea dumneavoastră a expirat, cât timp mai este până la expirarea sesiunii precum și toate atributele atașate sesiunii dumneavoastră." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP reprezintă o bază de date cu utilizatori. Când încercați să vă autentificați, trebuie contactată o bază de date LDAP. A apărut o eroare când s-a încercat această operațiune." +msgid "Home organization domain name" +msgstr "Njumele de domeniu pentru instituția de origine" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Informația de deautentificare pentru această operațiune a fost pierdută. Vă rugăm să vă întoarceți la serviciul din care ați încercat să vă deautentificați și să încercați din nou. Această eroare poate fi cauzată de expirarea informației de deautentificare. Informația de deautentificare este stocată pentru un timp limitat, dar de obicei câteva ore, ceea ce eate mai mult decât poate dura în mod obișnuit o operațiune de deautentificare. Prin urmare, mesajul poate indica o altă eroare de configurare. Dacă problema persistă, vă rugăm să contactați furnizorul de servicii." +msgid "Home postal address" +msgstr "Adresa poștală de acasă" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "A apărut o eroare la procesarea cererii de deautentificare." +msgid "Home telephone" +msgstr "Telefon acasă" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Există o eroare în configurarea SimpleSAMLphp. Dacă sunteți administratorul acestui serviciu, verificați configurarea metadatelor." +msgid "How to get help" +msgstr "Cum obțineți ajutor/asistență" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Nu pot fi localizate metadatele pentru %ENTITYID%" +msgid "Identity assurance profile" +msgstr "Profilul de asigurare a identității" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Acest capăt/obiectiv nu este activat. Verificați opțiunile de activare în configurarea SimpleSAMLphp." +msgid "Identity number assigned by public authorities" +msgstr "Număr de identitate atribuit de autorități publice" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Autentificare eșuată: browser-ul dumneavoastră nu a trimis niciun certificat" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Dacă raportați această eroare, vă rugăm să includeți următorul număr de înregistrare care va permite localizarea sesiunii dumneavoastră în jurnalele de sistem:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Inițiatorul acestei cereri nu a furnizat parametrul RelayState care indică următorul pas." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "În format metadate XML SAML 2.0:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Informația de stare a fost pierdută, cererea nu poate fi reluată" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "În format fișier simplu SimpleSAMLphp - utilizați această variantă dacă în capătul celălalt folosiți o entitate SimpleSAMLphp:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Pagina nu a fost găsită, URL-ul a fost următorul: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Nume de utilizator incorect sau parolă incorectă" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Pagina nu a fost găsită, motivul a fost următorul: %REASON%, URL-ul a fost: %URL%" +msgid "Incorrect username or password." +msgstr "Nume de utilizator incorect sau parola incorectă." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Parola din configurare (auth.adminpassword) este cea implicită, vă rugăm să o modificați." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Nu ați oferit un certificat valid." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Certificat nevalid" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Răspunsul de la acest furnizor de identitate nu a fost acceptat." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Acest furnizor de identitate a primit o cerere de autentificare de la un furnizor de servicii, dar a apărut o eroare la procesarea cererii." +msgid "JPEG Photo" +msgstr "Fotografie JPEG" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Furnizorul de identitate a răspuns cu o eroare. (Codul de stare in răspunsul SAML a fost încercare nereușită)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Eroare LDAP" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Ați accesat interfața SingleLogoutService, dar nu ați furnizat o cerere de deautentificare sau un răspuns de deautentificare SAML." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP reprezintă o bază de date cu utilizatori. Când încercați să vă autentificați, trebuie contactată o bază de date LDAP. A apărut o eroare când s-a încercat această operațiune." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "A apărut o excepție netratată." +msgid "Labeled URI" +msgstr "URI etichetat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Autentificare eșuată: certificatul trimis de browser-ul dumneavoastră nu este recunoscut" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Autentificarea a fost întreruptă de utilizator" +msgid "Legal name" +msgstr "Nume legal" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Nu a fost găsit niciun utilizator cu numele de utilizator specificat, sau parola introdusă este greșită. Vă rugăm să încercați din nou." +msgid "Local identity number" +msgstr "Număr de identificare local" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Aceasta este pagina de stare pentru SimpleSAMLphp. Aici puteți verifica dacă sesiunea dumneavoastră a expirat, cât timp mai este până la expirarea sesiunii precum și toate atributele atașate sesiunii dumneavoastră." +msgid "Locality" +msgstr "Localitate" -msgid "Logout" -msgstr "Deautentificare" +msgid "Logged out" +msgstr "Ieșire din sistem (deautentificare)" -msgid "Your attributes" -msgstr "Atributele dumneavoastră" +msgid "Logging out of the following services:" +msgstr "Deautentificare din următoarele servicii:" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Sesiunea dumneavoastră mai este validă încă %remaining%." +msgid "Logging out..." +msgstr "Deautentificare ..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Vă rugăm să alegeți furnizorul de identitate pe care doriți să-l folosiți pentru autentificarea dumneavoastră:" +msgid "Login" +msgstr "Autentificare" -msgid "Remember my choice" -msgstr "Memorează alegerea făcută" +msgid "Login at" +msgstr "Autentificare la" -msgid "Select" -msgstr "Selectați" +msgid "Logout" +msgstr "Deautentificare" -msgid "Select your identity provider" -msgstr "Alegeți furnizorul de identitate" +msgid "Logout failed" +msgstr "Deautentificarea a eșuat" -msgid "Sending message" -msgstr "Se trimite mesajul" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Informația de deautentificare a fost pierdută" -msgid "Yes, continue" -msgstr "Da, continuă" +msgid "Mail" +msgstr "Mail" -msgid "Debug information" -msgstr "Informații de depanare" +msgid "Manager" +msgstr "Director/Manager" -msgid "E-mail address:" -msgstr "Adresa e-mail:" +msgid "Message" +msgstr "Mesaj" -msgid "Explain what you did when this error occurred..." -msgstr "Descrieți ce operațiuini executați când a apărut această eroare ..." +msgid "Metadata" +msgstr "Metadate" -msgid "How to get help" -msgstr "Cum obțineți ajutor/asistență" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadatele nu au fost găsite" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Dacă raportați această eroare, vă rugăm să includeți următorul număr de înregistrare care va permite localizarea sesiunii dumneavoastră în jurnalele de sistem:" +msgid "Metadata overview" +msgstr "Prezentare generală a metadatelor" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Opțional, treceți adresa dumneavoastră de e-mail. Administratorii de sistem vor putea să vă contacteze pentru eventuale informații suplimentare despre problema dumneavoastra:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "Raportați erorile" +msgid "Mobile" +msgstr "Mobil" -msgid "Send error report" -msgstr "Trimiteți raportul cu erorile observate" +msgid "Next" +msgstr "Următorul pas" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Informațiile de depanare de mai jos pot fi importante pentru administratorul de sistem:" +msgid "Nickname" +msgstr "Poreclă" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Această eroare a apărut probabil din cauza unui comportament neașteptat sau a erorilor de configurare a SimpleSAMLphp. Vă rugăm să contactați administratorul acestui serviciu și să-i furnizați mesajul de eroare de mai sus." +msgid "No" +msgstr "Nu" -msgid "[Preferred choice]" -msgstr "[Varianta preferată]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Nu există RelayState" -msgid "Person's principal name at home organization" -msgstr "Numele de identificare a persoanei la instituția de origine (de forma nume_utilizator@domeniu.ro)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Nu a fost furnizat mesajul SAML" -msgid "Superfluous options in config file" -msgstr "Opțiuni inutile în fișierul de configurare" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "Mobil" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Nu a fost furnizat răspunsul SAML" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Furnizor de servicii Shib 1.3 (găzduit)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Accesul este interzis" -msgid "Display name" -msgstr "Nume afișat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Lipsește certificatul" -msgid "SAML 2.0 SP Metadata" -msgstr "Metadate furnizor de servicii (SP) SAML 2.0" +msgid "No errors found." +msgstr "Nu au fost depistate erori." + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Nu" + +msgid "No, only %SP%" +msgstr "Nu, doar %SP%" msgid "Notices" msgstr "Note/Observații" -msgid "Home telephone" -msgstr "Telefon acasă" +msgid "On hold" +msgstr "În așteptare" -msgid "Service Provider" -msgstr "Furnizor de servicii" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Unul sau mai multe servicii în care sunteți autentificat nu suportă deautentificare. Pentru a fi sigur că toate sesiunile sunt închise, vă rugăm să închideți browser-ul." + +msgid "Optional fields" +msgstr "Câmpuri opționale" -msgid "Incorrect username or password." -msgstr "Nume de utilizator incorect sau parola incorectă." +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Opțional, treceți adresa dumneavoastră de e-mail. Administratorii de sistem vor putea să vă contacteze pentru eventuale informații suplimentare despre problema dumneavoastra:" -msgid "Submit message" -msgstr "Trimite mesajul" +msgid "Options missing from config file" +msgstr "Opțiuni care nu apar în fișierul de configurare" -msgid "Locality" -msgstr "Localitate" +msgid "Organization" +msgstr "Instituție" -msgid "The following required fields was not found" -msgstr "Următoarele câmpuri obligatorii nu au fost găsite" +msgid "Organization name" +msgstr "Denumirea instituției" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Descărcați certificatele X509 ca fișiere PEM." +msgid "Organization's legal name" +msgstr "Denumirea legală a instituției" + +msgid "Organizational homepage" +msgstr "Pagina web a institutuției" msgid "Organizational number" msgstr "Număr organizațional" -msgid "Post office box" -msgstr "Cutie poștală" +msgid "Organizational unit" +msgstr "Unitate organizațională" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Un serviciu a solicitat autentificarea dumneavoastră. Vă rugăm să completați numele de utilizator și parola în câmpurile de mai jos." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Pagina nu a fost găsită" -msgid "Error" -msgstr "Eroare" +msgid "Parse" +msgstr "Analizează" -msgid "Next" -msgstr "Următorul pas" +msgid "Password" +msgstr "Parola" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Nume distincitv (DN) al unității organizaționale de origine a persoanei" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Parola nu este configurată" -msgid "Converted metadata" -msgstr "Metadate convertite" +msgid "Persistent pseudonymous ID" +msgstr "ID pseudonim persistent" -msgid "Mail" -msgstr "Mail" +msgid "Person's principal name at home organization" +msgstr "Numele de identificare a persoanei la instituția de origine (de forma nume_utilizator@domeniu.ro)" -msgid "No, cancel" -msgstr "Nu" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Vă rugăm să alegeți furnizorul de identitate pe care doriți să-l folosiți pentru autentificarea dumneavoastră:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Ați ales ca instituție de origine%HOMEORG%. Dacă nu este corect vă rugăm să alegeți altă instituție." +msgid "Post office box" +msgstr "Cutie poștală" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Nume distincitv (DN) al unității organizaționale primare a persoanei" +msgid "Postal address" +msgstr "Adresa poștală" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Pentru a vizualiza detalii privind o entitate SAML, apăsați pe antetul entității SAML." +msgid "Postal code" +msgstr "Cod poștal" -msgid "Enter your username and password" -msgstr "Vă rugăm să completați numele de utilizator și parola" +msgid "Preferred language" +msgstr "Limba preferată" -msgid "Login at" -msgstr "Autentificare la" +msgid "Primary affiliation" +msgstr "Afiliere primară" -msgid "No" -msgstr "Nu" +msgid "Private information elements" +msgstr "Informații private" -msgid "Home postal address" -msgstr "Adresa poștală de acasă" +msgid "Remember" +msgstr "Ține minte" -msgid "WS-Fed SP Demo Example" -msgstr "Exemplu demonstrativ de WS-Fed" +msgid "Remember my choice" +msgstr "Memorează alegerea făcută" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "Furnizor de identitate SAML 2.0 (distant)" +msgid "Report errors" +msgstr "Raportați erorile" -msgid "Do you want to logout from all the services above?" -msgstr "Doriți să vă deautentificați de la toate serviciile de mai sus ?" +msgid "Required fields" +msgstr "Câmpuri obligatorii" -msgid "Given name" -msgstr "Prenume" +msgid "Return to service" +msgstr "Întoarcere la serviciu" -msgid "Identity assurance profile" -msgstr "Profilul de asigurare a identității" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "Furnizor de identitate SAML 2.0 (găzduit)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "Furnizor de identitate SAML 2.0 (distant)" msgid "SAML 2.0 SP Demo Example" msgstr "Exemplu demonstrativ de furnizor de servicii SAML 2.0" -msgid "Organization name" -msgstr "Denumirea instituției" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Mesajul este pregătit pentru a fi trimis. Apăsați butonul de trimitere pentru a continua." +msgid "SAML 2.0 SP Metadata" +msgstr "Metadate furnizor de servicii (SP) SAML 2.0" -msgid "Home organization domain name" -msgstr "Njumele de domeniu pentru instituția de origine" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "Furnizor de servicii SAML 2.0 (găzduit)" -msgid "Go back to the file list" -msgstr "Mergeți înapoi la lista de fișiere" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Raportul cu erori a fost trimis" +msgid "Select" +msgstr "Selectați" -msgid "Common name" -msgstr "Nume comun" +msgid "Select configuration file to check:" +msgstr "Alegeți fișierul de configurare care doriți să-l verificați:" -msgid "Logout failed" -msgstr "Deautentificarea a eșuat" +msgid "Select your identity provider" +msgstr "Alegeți furnizorul de identitate" -msgid "Identity number assigned by public authorities" -msgstr "Număr de identitate atribuit de autorități publice" +msgid "Send e-mail to help desk" +msgstr "Trimiteți un mesaj la echipa de suport tehnic" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "Furnizor de servicii federație WS (distant)" +msgid "Send error report" +msgstr "Trimiteți raportul cu erorile observate" -msgid "Some error occurred" -msgstr "A apărut o eroare" +msgid "Sending message" +msgstr "Se trimite mesajul" -msgid "Organization" -msgstr "Instituție" +msgid "Service Provider" +msgstr "Furnizor de servicii" -msgid "Choose home organization" -msgstr "Alegeți instituția de origine" +msgid "Session size: %SIZE%" +msgstr "Dimensiunea sesiunii: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "ID pseudonim persistent" +msgid "Shib 1.3 IdP Metadata" +msgstr "Metadate furnizor de identitate (IdP) Shib 1.3" -msgid "No errors found." -msgstr "Nu au fost depistate erori." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Furnizor de identitate Shib 1.3 (găzduit)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "Furnizor de servicii SAML 2.0 (găzduit)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Furnizor de identitate Shib 1.3 (distant)" -msgid "Required fields" -msgstr "Câmpuri obligatorii" +msgid "Shib 1.3 SP Metadata" +msgstr "Metadate furnizor de servicii (SP) Shib 1.3" -msgid "Domain component (DC)" -msgstr "Componenta de domeniu (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Furnizor de servicii Shib 1.3 (găzduit)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Furnizor de servicii Shib 1.3 (distant)" -msgid "Password" -msgstr "Parola" - -msgid "Nickname" -msgstr "Poreclă" - -msgid "The error report has been sent to the administrators." -msgstr "Raportul cu erori a fost trimis către administratori." - -msgid "Date of birth" -msgstr "Data nașterii" - -msgid "Private information elements" -msgstr "Informații private" - -msgid "You are also logged in on these services:" -msgstr "Sunteți autentificat și la următoarele servicii:" +msgid "Shibboleth demo" +msgstr "Demo Shibboleth" msgid "SimpleSAMLphp Diagnostics" msgstr "Diagnostic SimpleSAMLphp" -msgid "No, only %SP%" -msgstr "Nu, doar %SP%" - -msgid "Username" -msgstr "Nume de utilizator" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Probleme la configurarea SimpleSAMLphp." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Mergeți înapoi la pagina de instalare a SimpleSAMLphp" +msgid "SimpleSAMLphp error" +msgstr "Eroare SimpleSAMLphp" -msgid "You have successfully logged out from all services listed above." -msgstr "Ați fost deautentificat de la toate serviciile enumerate mai sus." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Ați fost deautentificat din %SP%." +msgid "Some error occurred" +msgstr "A apărut o eroare" -msgid "Affiliation" -msgstr "Afiliere" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Informația de stare a fost pierdută" -msgid "You have been logged out." -msgstr "Ați fost deautentificat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Informația de stare a fost pierdută, cererea nu poate fi reluată" -msgid "Return to service" -msgstr "Întoarcere la serviciu" +msgid "Street" +msgstr "Strada" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "Furnizor de servicii federație WS (găzduit)" +msgid "Submit message" +msgstr "Trimite mesajul" -msgid "Preferred language" -msgstr "Limba preferată" +msgid "Superfluous options in config file" +msgstr "Opțiuni inutile în fișierul de configurare" msgid "Surname" msgstr "Nume de familie" -msgid "The following fields was not recognized" -msgstr "Următoarele câmpuri nu au fost recunoscute" - -msgid "User ID" -msgstr "ID utilizator" +msgid "Telephone number" +msgstr "Număr de telefon" -msgid "JPEG Photo" -msgstr "Fotografie JPEG" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Furnizorul de identitate a răspuns cu o eroare. (Codul de stare in răspunsul SAML a fost încercare nereușită)" -msgid "Postal address" -msgstr "Adresa poștală" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Autentificarea a fost întreruptă de utilizator" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "În format metadate XML SAML 2.0:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Informațiile de depanare de mai jos pot fi importante pentru administratorul de sistem:" -msgid "Logging out of the following services:" -msgstr "Deautentificare din următoarele servicii:" +msgid "The error report has been sent to the administrators." +msgstr "Raportul cu erori a fost trimis către administratori." -msgid "Labeled URI" -msgstr "URI etichetat" +msgid "The following fields was not recognized" +msgstr "Următoarele câmpuri nu au fost recunoscute" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Furnizor de identitate Shib 1.3 (găzduit)" +msgid "The following optional fields was not found" +msgstr "Următoarele câmpuri opționale nu au fost găsite" -msgid "Metadata" -msgstr "Metadate" +msgid "The following required fields was not found" +msgstr "Următoarele câmpuri obligatorii nu au fost găsite" -msgid "Login" -msgstr "Autentificare" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Pagina nu a fost găsită, URL-ul a fost următorul: %URL%" -msgid "Yes, all services" -msgstr "Da, toate serviciile" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Pagina nu a fost găsită, motivul a fost următorul: %REASON%, URL-ul a fost: %URL%" -msgid "Logged out" -msgstr "Ieșire din sistem (deautentificare)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Informația de deautentificare pentru această operațiune a fost pierdută. Vă rugăm să vă întoarceți la serviciul din care ați încercat să vă deautentificați și să încercați din nou. Această eroare poate fi cauzată de expirarea informației de deautentificare. Informația de deautentificare este stocată pentru un timp limitat, dar de obicei câteva ore, ceea ce eate mai mult decât poate dura în mod obișnuit o operațiune de deautentificare. Prin urmare, mesajul poate indica o altă eroare de configurare. Dacă problema persistă, vă rugăm să contactați furnizorul de servicii." -msgid "Postal code" -msgstr "Cod poștal" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Inițiatorul acestei cereri nu a furnizat parametrul RelayState care indică următorul pas." -msgid "Logging out..." -msgstr "Deautentificare ..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Parametrii trimiși către serviciul de căutare nu sunt în conformitate cu specificațiile." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "Furnizor de identitate SAML 2.0 (găzduit)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Afiliere primară" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Parola din configurare (auth.adminpassword) este cea implicită, vă rugăm să o modificați." -msgid "XML metadata" -msgstr "Metadate XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Există o eroare în cererea către această pagină. Motivul este: %REASON%" -msgid "Telephone number" -msgstr "Număr de telefon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Există o eroare în configurarea SimpleSAMLphp. Dacă sunteți administratorul acestui serviciu, verificați configurarea metadatelor." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Nu a fost posibilă deautentificarea pentru unul sau mai multe servicii. Pentru a fi sigur că toate sesiunile sunt închise, vă rugăm să închideți browser-ul." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Acest furnizor de identitate a primit o cerere de autentificare de la un furnizor de servicii, dar a apărut o eroare la procesarea cererii." -msgid "Entitlement regarding the service" -msgstr "Drepturi relativ la acest serviciu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Acest capăt/obiectiv nu este activat. Verificați opțiunile de activare în configurarea SimpleSAMLphp." -msgid "Shib 1.3 SP Metadata" -msgstr "Metadate furnizor de servicii (SP) Shib 1.3" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Această eroare a apărut probabil din cauza unui comportament neașteptat sau a erorilor de configurare a SimpleSAMLphp. Vă rugăm să contactați administratorul acestui serviciu și să-i furnizați mesajul de eroare de mai sus." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Întrucât sunteți în modul depanare, veți vedea conținutul mesajului care va fi trimis:" +msgid "Title" +msgstr "Titlu/titulatură" -msgid "Certificates" -msgstr "Certificate" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Pentru a vizualiza detalii privind o entitate SAML, apăsați pe antetul entității SAML." -msgid "Remember" -msgstr "Ține minte" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Nume distincitv (DN) al instituție de origine a persoanei" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Nu pot fi localizate metadatele pentru %ENTITYID%" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Mesajul este pregătit pentru a fi trimis. Apăsați link-ul de trimitere pentru a continua." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Nu a fost posibilă deautentificarea pentru unul sau mai multe servicii. Pentru a fi sigur că toate sesiunile sunt închise, vă rugăm să închideți browser-ul." -msgid "Organizational unit" -msgstr "Unitate organizațională" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Număr de identificare local" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Excepție netratată" -msgid "Shib 1.3 IdP Metadata" -msgstr "Metadate furnizor de identitate (IdP) Shib 1.3" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Certificat necunoscut" -msgid "Change your home organization" -msgstr "Modificați instituția de origine" +msgid "User ID" +msgstr "ID utilizator" msgid "User's password hash" msgstr "Parola utilizatorului în format hash" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "În format fișier simplu SimpleSAMLphp - utilizați această variantă dacă în capătul celălalt folosiți o entitate SimpleSAMLphp:" - -msgid "Completed" -msgstr "Terminat" - -msgid "Select configuration file to check:" -msgstr "Alegeți fișierul de configurare care doriți să-l verificați:" - -msgid "On hold" -msgstr "În așteptare" +msgid "Username" +msgstr "Nume de utilizator" -msgid "Help! I don't remember my password." -msgstr "Nu mai știu parola." +msgid "WS-Fed SP Demo Example" +msgstr "Exemplu demonstrativ de WS-Fed" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Se poate opri modul de depanare în fișierul de configurare SimpleSAMLphp config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "Furnizor de servicii federație WS (distant)" -msgid "SimpleSAMLphp error" -msgstr "Eroare SimpleSAMLphp" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "Furnizor de servicii federație WS (găzduit)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Unul sau mai multe servicii în care sunteți autentificat nu suportă deautentificare. Pentru a fi sigur că toate sesiunile sunt închise, vă rugăm să închideți browser-ul." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Denumirea legală a instituției" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Răspunsul de la acest furnizor de identitate nu a fost acceptat." -msgid "Options missing from config file" -msgstr "Opțiuni care nu apar în fișierul de configurare" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "A apărut o eroare când furnizorul de identitate încerca să creeze un răspuns de autentificare." -msgid "The following optional fields was not found" -msgstr "Următoarele câmpuri opționale nu au fost găsite" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Din păcate fără nume de utilizator și parolă nu vă puteți autentifica pentru accesul la acest serviciu. Contactați echipa de suport tehnic de la universitatea dumneavoastră." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Puteți accesa metadatele xml de la un URL dedicat:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Strada" +msgid "XML metadata" +msgstr "Metadate XML" -msgid "Message" -msgstr "Mesaj" +msgid "Yes, all services" +msgstr "Da, toate serviciile" -msgid "Contact information:" -msgstr "Informații de contact:" +msgid "Yes, continue" +msgstr "Da, continuă" -msgid "Legal name" -msgstr "Nume legal" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Câmpuri opționale" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ați accesat interfața Assertion Consumer Service dar nu ați furnizat răspunsul de autentificare SAML." -msgid "You have previously chosen to authenticate at" -msgstr "Anterior ați ales să vă autentificați la" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Ați trimis informații către pagina de autentificare dar din motive necunoscute parola nu a fost trimisă. Vă rugăm să încercați din nou." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ați accesat interfața SingleLogoutService, dar nu ați furnizat o cerere de deautentificare sau un răspuns de deautentificare SAML." -msgid "Fax number" -msgstr "Număr de fax" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Mesajul este pregătit pentru a fi trimis. Apăsați butonul de trimitere pentru a continua." -msgid "Shibboleth demo" -msgstr "Demo Shibboleth" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Mesajul este pregătit pentru a fi trimis. Apăsați link-ul de trimitere pentru a continua." -msgid "Error in this metadata entry" -msgstr "Eroare în această metadată" +msgid "You are also logged in on these services:" +msgstr "Sunteți autentificat și la următoarele servicii:" -msgid "Session size: %SIZE%" -msgstr "Dimensiunea sesiunii: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "În acest moment accesați un sistem pre-producție. Acest sistem de autentificare este realizat doar pentru testare și verificare. Dacă ați primit de la cineva acest link și nu sunteți tester, atunci probabil ați primit un link greșit și nu ar fi trebuit să ajungeți aici." -msgid "Parse" -msgstr "Analizează" +msgid "You are now successfully logged out from %SP%." +msgstr "Ați fost deautentificat din %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Din păcate fără nume de utilizator și parolă nu vă puteți autentifica pentru accesul la acest serviciu. Contactați echipa de suport tehnic de la universitatea dumneavoastră." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Puteți accesa metadatele xml de la un URL dedicat:" -msgid "Choose your home organization" -msgstr "Alegeți instituția de origine" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Se poate opri modul de depanare în fișierul de configurare SimpleSAMLphp config/config.php." -msgid "Send e-mail to help desk" -msgstr "Trimiteți un mesaj la echipa de suport tehnic" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Nu ați oferit un certificat valid." -msgid "Metadata overview" -msgstr "Prezentare generală a metadatelor" +msgid "You have been logged out." +msgstr "Ați fost deautentificat" -msgid "Title" -msgstr "Titlu/titulatură" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Ați ales ca instituție de origine%HOMEORG%. Dacă nu este corect vă rugăm să alegeți altă instituție." -msgid "Manager" -msgstr "Director/Manager" +msgid "You have previously chosen to authenticate at" +msgstr "Anterior ați ales să vă autentificați la" -msgid "Affiliation at home organization" -msgstr "Afiliere în cadrul instituției de origine" +msgid "You have successfully logged out from all services listed above." +msgstr "Ați fost deautentificat de la toate serviciile enumerate mai sus." -msgid "Help desk homepage" -msgstr "Pagina echipei de suport tehnic" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Ați trimis informații către pagina de autentificare dar din motive necunoscute parola nu a fost trimisă. Vă rugăm să încercați din nou." -msgid "Configuration check" -msgstr "Verificarea configurației" +msgid "Your attributes" +msgstr "Atributele dumneavoastră" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Furnizor de identitate Shib 1.3 (distant)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Acestea sunt metadate generate de SimpleSAMLphp. Metadatele pot fi trimise către parteneri de încredere pentru a configura o federație de încredere." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Sesiunea dumneavoastră mai este validă încă %remaining%." -msgid "Organizational homepage" -msgstr "Pagina web a institutuției" +msgid "[Preferred choice]" +msgstr "[Varianta preferată]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "În acest moment accesați un sistem pre-producție. Acest sistem de autentificare este realizat doar pentru testare și verificare. Dacă ați primit de la cineva acest link și nu sunteți tester, atunci probabil ați primit un link greșit și nu ar fi trebuit să ajungeți aici." +msgid "not set" +msgstr "" diff --git a/locales/ru/LC_MESSAGES/messages.po b/locales/ru/LC_MESSAGES/messages.po index 2063321532..ead15dff0a 100644 --- a/locales/ru/LC_MESSAGES/messages.po +++ b/locales/ru/LC_MESSAGES/messages.po @@ -1,756 +1,837 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Отсутствует SAML отклик" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Отсутствует утверждение SAML " +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Служба запрашивает авторизацию. Пожалуйста, введите имя пользователя и пароль." + +msgid "ADFS IdP Metadata" +msgstr "Метаданные провайдера идентификации ADFS" + +msgid "ADFS Identity Provider (Hosted)" +msgstr "Провайдер идентификации ADFS (локальное размещение)" + +msgid "ADFS SP Metadata" +msgstr "Метаданные сервис провайдера ADFS" + +msgid "ADFS Service Provider (Remote)" +msgstr "Сервис провайдер ADFS (удаленное размещение)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Членство" + +msgid "Affiliation at home organization" +msgstr "Членство в главной организации" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Произошла ошибка при попытке создать SAML запрос." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Ошибка произошла при попытке обработки запроса на выход из системы" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Выдано необрабатываемое исключение." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Если вы находитесь в режиме отладки сообщения, вы сможете наблюдать содержимое сообщения." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Аутентификация прервана" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Ошибка источника аутентификации %AUTHSOURCE%. Причина: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Ошибка при аутентификации: ваш браузер выслал недействительный или нечитаемый сертификат" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Ошибка при аутентификации: ваш браузер выслал неизвестный сертификат" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Ошибка при аутентификации: ваш браузер не выслал сертификат" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Ошибка источника аутентификации" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Получен неправильный отклик" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Неправильный запрос к службе обнаружения" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "Ошибка CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Сертификаты" + +msgid "Change your home organization" +msgstr "Сменить домашнюю организацию" + +msgid "Choose home organization" +msgstr "Выберите домашнюю организацию" + +msgid "Choose your home organization" +msgstr "Выберите вашу домашнюю организацию" + +msgid "Common name" +msgstr "Полное имя" + +msgid "Completed" +msgstr "Выполнено" + +msgid "Configuration check" +msgstr "Проверка конфигурации" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Ошибка конфигурации" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Ошибка при создании запроса" +msgid "Contact information:" +msgstr "Контактная информация" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Неправильный запрос к службе обнаружения" +msgid "Converted metadata" +msgstr "Преобразованные метаданные" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Невозможно создать ответ по аутентификации" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Недействительный сертификат" +msgid "Date of birth" +msgstr "Дата рождения" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Ошибка LDAP" +msgid "Debug information" +msgstr "Отладочная информация" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Потеряна информация о выходе." +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Ошибка при обработке запроса на выход из системы " +msgid "Display name" +msgstr "Отображаемое имя" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Ошибка загрузки метаданных" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Отличительное имя (DN) человека домашней организации" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Метаданные не найдены" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Отличительное имя (DN) человека основного подразделения организации" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Отказ в доступе" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Отличительное имя (DN) человека подразделения домашней организации" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Сертификат отсутствует" +msgid "Do you want to logout from all the services above?" +msgstr "Вы хотите выйти из всех служб, перечисленных выше?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Отсутствует параметр RelayState" +msgid "Domain component (DC)" +msgstr "Компонент домена (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Информация о состоянии утеряна" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Скачать сертификаты X509 в формате PEM файлов." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Страница не найдена" +msgid "E-mail address:" +msgstr "Адрес вашей электронной почты:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Пароль не установлен" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Либо не существует пользователя с данным именем, либо неверный пароль.Пожалуйста, проверьте имя пользователя и пробуйте снова." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Ошибка при обработке отклика от провайдера идентификации" +msgid "Enter your username and password" +msgstr "Введите имя пользователя и пароль" + +msgid "Entitlement regarding the service" +msgstr "Право на предоставление услуг" + +msgid "Error" +msgstr "Ошибка" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Ошибка при создании запроса" + +msgid "Error in this metadata entry" +msgstr "Ошибка при вводе данной записи метаданных" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Ошибка загрузки метаданных" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Ошибка при обработке запроса от сервис провайдера" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Ошибка при обработке отклика от провайдера идентификации" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Ошибка при обработке запроса на выход из системы " + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "От провайдера идентификации получена ошибка" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Необрабатываемое исключение" +msgid "Error report sent" +msgstr "Сообщение об ошибке отправлено" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Неизвестный сертификат" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Произошла ошибка при обмене данными с сервером CAS." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Аутентификация прервана" +msgid "Explain what you did when this error occurred..." +msgstr "Уточните ваши действия перед появлением ошибки... " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Неправильное имя пользователя или пароль" +msgid "Fax number" +msgstr "Номер факса" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Вы получили доступ к интерфейсу Assertion Consumer Service, но не предоставили отклик SAML аутентификации." +msgid "Format" +msgstr "Формат" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Ошибка источника аутентификации %AUTHSOURCE%. Причина: %REASON%" +msgid "Given name" +msgstr "Имя" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Ошибка в запросе к этой странице. Причина: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Вернуться на страницу установки SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Произошла ошибка при обмене данными с сервером CAS." +msgid "Go back to the file list" +msgstr "Вернуться к списку файлов" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Видимо, SimpleSAMLphp сконфигурирован неправильно." +msgid "Group membership" +msgstr "Членство в группе" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Произошла ошибка при попытке создать SAML запрос." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Параметры, отправленные в службу обнаружения, не соответствуют спецификации." +msgid "Help desk homepage" +msgstr "Домашняя страница службы поддержки" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "При попытке провайдера идентификации создать ответ по аутентификации произошла ошибка." +msgid "Help! I don't remember my password." +msgstr "Помогите! Я не помню свой пароль." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Ошибка при аутентификации: ваш браузер выслал недействительный или нечитаемый сертификат" +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Метаданные, сгенерированные для вас с помощью SimpleSAMLphp. Вы можете отправить данный документ с метаданными доверенным партнерам для создания федерации." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP - это база данных пользователей, при вашей попытке входа в систему, нам необходимо связаться с базой данных LDAP. При этой попытке связаться с LDAP произошла ошибка. " +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Это страница со статусом SimpleSAMLphp. Можно обнаружить случаи окончания сессии, продолжительность сессии до истечения срока действия и все атрибуты в данной сессии." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Информацию о текущей операции выхода была потеряна. Вы должны вернуться на службу, из которой вы пытались выйти и попытаться выйти снова. Эта ошибка может быть вызвана устареванием информации о выходе. Информация о выходе хранится в течение ограниченного отрезка времени - обычно до несколькоих часов. Это больше, чем потребуется для любой нормальной операции выхода, поэтому эта ошибка может означать некоторые другие ошибки конфигурации. Если проблема не устранена, обратитесь к сервис провайдеру." +msgid "Home organization domain name" +msgstr "Доменное имя главной организации" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Ошибка произошла при попытке обработки запроса на выход из системы" +msgid "Home postal address" +msgstr "Домашний почтовый адрес" + +msgid "Home telephone" +msgstr "Домашний телефон" + +msgid "How to get help" +msgstr "Как получить помощь" + +msgid "Identity assurance profile" +msgstr "Идентификатор гарантированного профайла" + +msgid "Identity number assigned by public authorities" +msgstr "Идентификационный номер, присваиваемый органами государственной власти" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "При отправке сообщения об ошибке, пожалуйста, сообщите этот трекинговый номер (он позволит администратору найти информацию о вашей сессии в системных логах):" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Ваш SimpleSAMLphp содержит неправильные конфигурационные данные. Если вы являетесь администратором системы, проверьте конфигурацию метаданных." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "xml формат метаданных SAML 2.0:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Невозможно найти метаданные для %ENTITYID%" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "Формат простого SimpleSAMLphp файла" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Данная конечная точка не активирована. Проверьте опции в конфигурации вашего SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Неправильное имя пользователя или пароль" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Ошибка при аутентификации: ваш браузер не выслал сертификат" +msgid "Incorrect username or password." +msgstr "Неправильное имя пользователя или пароль." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Инициатор данного запроса не предоставил параметр RelayState с указанием следующей точки перехода." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Информация о состоянии утеряна, нет способа инициировать запрос заново" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Недействительный сертификат" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Запрашиваемая страница не найдена. Ссылка была: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Запрашиваемая страница не найдена. Причина: %REASON% Ссылка: %URL%" +msgid "JPEG Photo" +msgstr "Фотография в формате JPEG" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Пароль в файле конфигурации (auth.adminpassword) не изменен от значения по умолчанию. Пожалуйста, отредактируйте файл конфигурации." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Ошибка LDAP" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Вы не предоставили действительный сертификат." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP - это база данных пользователей, при вашей попытке входа в систему, нам необходимо связаться с базой данных LDAP. При этой попытке связаться с LDAP произошла ошибка. " -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Отклик от провайдера идентификации не получен." +msgid "Labeled URI" +msgstr "Маркированный URI (LabeledURI)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Провайдер идентификации получил запрос на аутентификацию от сервис провайдера, но произошла ошибка при обработке данного запроса." +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Провайдер идентификации сообщает об ошибке. (Код статус в отклике SAML сообщает о неуспешной попытке)" +msgid "Legal name" +msgstr "Официальное название" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Вы получили доступ к интерфейсу SingleLogoutService, но не предоставили SAML LogoutRequest или LogoutResponse утверждения." +msgid "Local identity number" +msgstr "Местный идентификационный номер" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Выдано необрабатываемое исключение." +msgid "Locality" +msgstr "Район" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Ошибка при аутентификации: ваш браузер выслал неизвестный сертификат" +msgid "Logged out" +msgstr "Успешный выход" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Аутентификация прервана пользователем" +msgid "Logging out of the following services:" +msgstr "Выход из следующих служб:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Либо не существует пользователя с данным именем, либо неверный пароль.Пожалуйста, проверьте имя пользователя и пробуйте снова." +msgid "Logging out..." +msgstr "Выход из системы..." -msgid "Format" -msgstr "Формат" +msgid "Login" +msgstr "Войти" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Это страница со статусом SimpleSAMLphp. Можно обнаружить случаи окончания сессии, продолжительность сессии до истечения срока действия и все атрибуты в данной сессии." +msgid "Login at" +msgstr "Войти в" msgid "Logout" msgstr "Выйти" -msgid "SAML Subject" -msgstr "Тема SAML" +msgid "Logout failed" +msgstr "Выход завершен неудачно" -msgid "Your attributes" -msgstr "Ваши атрибуты" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Потеряна информация о выходе." -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Ваша сессия действительна в течение следующих %remaining% секунд." +msgid "Mail" +msgstr "Почта" -msgid "not set" -msgstr "не установлен" +msgid "Manager" +msgstr "Управляющий" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Пожалуйста, выберите identity provider, с помощью которого вы хотите пройти аутентификацию:" +msgid "Message" +msgstr "Сообщение" -msgid "Remember my choice" -msgstr "Запомнить мой выбор" +msgid "Metadata" +msgstr "Метаданные" -msgid "Select" -msgstr "Выбрать" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Метаданные не найдены" -msgid "Select your identity provider" -msgstr "Выберите вашего identity provider" +msgid "Metadata overview" +msgstr "Краткое описание метаданных" -msgid "Sending message" -msgstr "Отправка сообщения" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Yes, continue" -msgstr "Да, продолжить" +msgid "Mobile" +msgstr "Мобильный" -msgid "Debug information" -msgstr "Отладочная информация" +msgid "Next" +msgstr "Далее" -msgid "E-mail address:" -msgstr "Адрес вашей электронной почты:" +msgid "Nickname" +msgstr "Псевдоним" -msgid "Explain what you did when this error occurred..." -msgstr "Уточните ваши действия перед появлением ошибки... " +msgid "No" +msgstr "Нет" -msgid "How to get help" -msgstr "Как получить помощь" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Отсутствует параметр RelayState" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "При отправке сообщения об ошибке, пожалуйста, сообщите этот трекинговый номер (он позволит администратору найти информацию о вашей сессии в системных логах):" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Отсутствует утверждение SAML " -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Введите адрес вашей электронной почты, чтобы администратор мог связаться с вами для прояснения данной ситуации (необязательно):" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Report errors" -msgstr "Сообщение об ошибках" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Отсутствует SAML отклик" -msgid "Send error report" -msgstr "Выслать сообщение об ошибке " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Отказ в доступе" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Нижеприведенная информация может быть полезна администратору системы:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Сертификат отсутствует" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Эта ошибка произошла, вероятно, из-за непредвиденной ситуации или неправильной конфигурации SimpleSAMLphp. Свяжитесь с администратором этого сервиса и отправьте ему вышеуказанное сообщение об ошибке." +msgid "No errors found." +msgstr "Ошибок не обнаружено." -msgid "[Preferred choice]" -msgstr "[Предпочтительный выбор]" +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Нет" + +msgid "No, only %SP%" +msgstr "Нет, только для службы %SP%" + +msgid "Notices" +msgstr "Уведомления" msgid "ORCID researcher identifiers" msgstr "Метаданные провайдера идентификации ADFS" -msgid "Person's principal name at home organization" -msgstr "Имя руководителя в главной организации" +msgid "On hold" +msgstr "В состоянии ожидания" -msgid "Superfluous options in config file" -msgstr "Избыточные параметры в файле конфигурации" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Некоторые службы, к которым вы подключены, не поддеживают выход из системы. Для обеспечения закрытия всех сессий, закройте ваш браузер." -msgid "Mobile" -msgstr "Мобильный" +msgid "Optional fields" +msgstr "Необязательные поля" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Сервис провайдер Shib 1.3 (локальное размещение)" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Введите адрес вашей электронной почты, чтобы администратор мог связаться с вами для прояснения данной ситуации (необязательно):" -msgid "Display name" -msgstr "Отображаемое имя" +msgid "Options missing from config file" +msgstr "Параметры, отсутствующие в файле конфигурации" -msgid "SAML 2.0 SP Metadata" -msgstr "Метаданные сервис провайдера SAML 2.0 SP" +msgid "Organization" +msgstr "Организация" -msgid "ADFS IdP Metadata" -msgstr "Метаданные провайдера идентификации ADFS" +msgid "Organization name" +msgstr "Название организации" -msgid "Notices" -msgstr "Уведомления" +msgid "Organization's legal name" +msgstr "Юридическое название организации" -msgid "Home telephone" -msgstr "Домашний телефон" +msgid "Organizational homepage" +msgstr "Домашняя страница организации" -msgid "Service Provider" -msgstr "Поставщик услуг" +msgid "Organizational number" +msgstr "Номер организации" -msgid "Incorrect username or password." -msgstr "Неправильное имя пользователя или пароль." +msgid "Organizational unit" +msgstr "Подразделение организации" -msgid "Submit message" -msgstr "Отправить сообщение" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Страница не найдена" + +msgid "Parse" +msgstr "Выполнить синтаксический анализ" + +msgid "Password" +msgstr "Пароль" -msgid "Locality" -msgstr "Район" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Пароль не установлен" -msgid "The following required fields was not found" -msgstr "Следующие обязательные поля не найдены" +msgid "Persistent pseudonymous ID" +msgstr "ID постоянного псевдонима" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Скачать сертификаты X509 в формате PEM файлов." +msgid "Person's principal name at home organization" +msgstr "Имя руководителя в главной организации" -msgid "Organizational number" -msgstr "Номер организации" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Пожалуйста, выберите identity provider, с помощью которого вы хотите пройти аутентификацию:" msgid "Post office box" msgstr "Абонементный почтовый ящик" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Служба запрашивает авторизацию. Пожалуйста, введите имя пользователя и пароль." - -msgid "Error" -msgstr "Ошибка" - -msgid "Next" -msgstr "Далее" +msgid "Postal address" +msgstr "Почтовый адрес" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Отличительное имя (DN) человека подразделения домашней организации" +msgid "Postal code" +msgstr "Почтовый индекс" -msgid "Converted metadata" -msgstr "Преобразованные метаданные" +msgid "Preferred language" +msgstr "Предпочитаемый язык" -msgid "Mail" -msgstr "Почта" +msgid "Primary affiliation" +msgstr "Главное членство" -msgid "No, cancel" -msgstr "Нет" +msgid "Private information elements" +msgstr "Элементы личной информации" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Вы выбрали %HOMEORG% как вашу домашнюю организацию. Если вы ошиблись - вы можете выбрать другую." +msgid "Remember" +msgstr "Запомнить" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Отличительное имя (DN) человека основного подразделения организации" +msgid "Remember me" +msgstr "Запомнить меня" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Для просмотра подробностей записи SAML, кликните на заголовок записи SAML." +msgid "Remember my choice" +msgstr "Запомнить мой выбор" -msgid "Enter your username and password" -msgstr "Введите имя пользователя и пароль" +msgid "Remember my username" +msgstr "Запомнить моё имя пользователя" -msgid "Login at" -msgstr "Войти в" +msgid "Report errors" +msgstr "Сообщение об ошибках" -msgid "No" -msgstr "Нет" +msgid "Required fields" +msgstr "Обязательные поля" -msgid "Home postal address" -msgstr "Домашний почтовый адрес" +msgid "Return to service" +msgstr "Вернуться к службе" -msgid "WS-Fed SP Demo Example" -msgstr "Демо пример сервис провайдера WS-Fed SP" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "Провайдер идентификации SAML 2.0 (локальное размещение)" msgid "SAML 2.0 Identity Provider (Remote)" msgstr "Провайдер идентификации SAML 2.0 (удаленное размещение)" -msgid "Do you want to logout from all the services above?" -msgstr "Вы хотите выйти из всех служб, перечисленных выше?" - -msgid "Given name" -msgstr "Имя" - -msgid "Identity assurance profile" -msgstr "Идентификатор гарантированного профайла" - msgid "SAML 2.0 SP Demo Example" msgstr "Демо пример сервис провайдера SAML 2.0 SP" -msgid "Organization name" -msgstr "Название организации" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Вы собираетесь отправить сообщение. Кликните клавишу отправки сообщения для продолжения." +msgid "SAML 2.0 SP Metadata" +msgstr "Метаданные сервис провайдера SAML 2.0 SP" -msgid "Home organization domain name" -msgstr "Доменное имя главной организации" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "Сервис провайдер SAML 2.0 (локальное размещение)" -msgid "Go back to the file list" -msgstr "Вернуться к списку файлов" +msgid "SAML Subject" +msgstr "Тема SAML" -msgid "Error report sent" -msgstr "Сообщение об ошибке отправлено" +msgid "Select" +msgstr "Выбрать" -msgid "Common name" -msgstr "Полное имя" +msgid "Select configuration file to check:" +msgstr "Выберите файл конфигурации для проверки:" -msgid "Logout failed" -msgstr "Выход завершен неудачно" +msgid "Select your identity provider" +msgstr "Выберите вашего identity provider" -msgid "Identity number assigned by public authorities" -msgstr "Идентификационный номер, присваиваемый органами государственной власти" +msgid "Send e-mail to help desk" +msgstr "Послать email в службу поддержки" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "Провайдер идентификации WS-Federation (удаленное размещение)" +msgid "Send error report" +msgstr "Выслать сообщение об ошибке " -msgid "Some error occurred" -msgstr "Произошла ошибка" +msgid "Sending message" +msgstr "Отправка сообщения" -msgid "Organization" -msgstr "Организация" +msgid "Service Provider" +msgstr "Поставщик услуг" -msgid "Choose home organization" -msgstr "Выберите домашнюю организацию" +msgid "Session size: %SIZE%" +msgstr "Размер сессии: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "ID постоянного псевдонима" +msgid "Shib 1.3 IdP Metadata" +msgstr "Метаданные провайдера идентификации Shib 1.3 IdP" -msgid "No errors found." -msgstr "Ошибок не обнаружено." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Провайдер идентификации Shib 1.3 (локальное размещение)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "Сервис провайдер SAML 2.0 (локальное размещение)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Провайдер идентификации Shib 1.3 (удаленное размещение)" -msgid "Required fields" -msgstr "Обязательные поля" +msgid "Shib 1.3 SP Metadata" +msgstr "Метаданные сервис провайдера Shib 1.3 SP" -msgid "Domain component (DC)" -msgstr "Компонент домена (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Сервис провайдер Shib 1.3 (локальное размещение)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Сервис провайдер Shib 1.3 (удаленное размещение)" -msgid "Password" -msgstr "Пароль" - -msgid "Nickname" -msgstr "Псевдоним" - -msgid "The error report has been sent to the administrators." -msgstr "Сообщение об ошибке было отправлено администраторам." - -msgid "Date of birth" -msgstr "Дата рождения" - -msgid "Private information elements" -msgstr "Элементы личной информации" - -msgid "You are also logged in on these services:" -msgstr "Вы также подключены к следующим службам:" +msgid "Shibboleth demo" +msgstr "Shibboleth демо" msgid "SimpleSAMLphp Diagnostics" msgstr "Диагностика SimpleSAMLphp" -msgid "No, only %SP%" -msgstr "Нет, только для службы %SP%" - -msgid "Username" -msgstr "Имя пользователя" - -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Вернуться на страницу установки SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Видимо, SimpleSAMLphp сконфигурирован неправильно." -msgid "You have successfully logged out from all services listed above." -msgstr "Вы успешно вышли из всех служб перечисленных выше." +msgid "SimpleSAMLphp error" +msgstr "Ошибка SimpleSAMLphp" -msgid "You are now successfully logged out from %SP%." -msgstr "Вы успешно вышли из службы %SP%." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "Affiliation" -msgstr "Членство" +msgid "Some error occurred" +msgstr "Произошла ошибка" -msgid "You have been logged out." -msgstr "Вы успешно вышли из системы" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Информация о состоянии утеряна" -msgid "Return to service" -msgstr "Вернуться к службе" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Информация о состоянии утеряна, нет способа инициировать запрос заново" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "Сервис провайдер WS-Federation (локальное размещение)" +msgid "Street" +msgstr "Улица" -msgid "Remember my username" -msgstr "Запомнить моё имя пользователя" +msgid "Submit message" +msgstr "Отправить сообщение" -msgid "Preferred language" -msgstr "Предпочитаемый язык" +msgid "Superfluous options in config file" +msgstr "Избыточные параметры в файле конфигурации" msgid "Surname" msgstr "Фамилия" -msgid "The following fields was not recognized" -msgstr "Следующие поля не распознаны" - -msgid "User ID" -msgstr "ID пользователя" - -msgid "JPEG Photo" -msgstr "Фотография в формате JPEG" - -msgid "Postal address" -msgstr "Почтовый адрес" - -msgid "ADFS SP Metadata" -msgstr "Метаданные сервис провайдера ADFS" - -msgid "In SAML 2.0 Metadata XML format:" -msgstr "xml формат метаданных SAML 2.0:" - -msgid "Logging out of the following services:" -msgstr "Выход из следующих служб:" - -msgid "Labeled URI" -msgstr "Маркированный URI (LabeledURI)" - -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Провайдер идентификации Shib 1.3 (локальное размещение)" - -msgid "Metadata" -msgstr "Метаданные" +msgid "Telephone number" +msgstr "Номер телефона" -msgid "Login" -msgstr "Войти" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Провайдер идентификации сообщает об ошибке. (Код статус в отклике SAML сообщает о неуспешной попытке)" -msgid "Yes, all services" -msgstr "Да, для всех служб" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Аутентификация прервана пользователем" -msgid "Logged out" -msgstr "Успешный выход" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Нижеприведенная информация может быть полезна администратору системы:" -msgid "Postal code" -msgstr "Почтовый индекс" +msgid "The error report has been sent to the administrators." +msgstr "Сообщение об ошибке было отправлено администраторам." -msgid "Logging out..." -msgstr "Выход из системы..." +msgid "The following fields was not recognized" +msgstr "Следующие поля не распознаны" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "Провайдер идентификации SAML 2.0 (локальное размещение)" +msgid "The following optional fields was not found" +msgstr "Следующие необязательные поля не найдены" -msgid "Primary affiliation" -msgstr "Главное членство" +msgid "The following required fields was not found" +msgstr "Следующие обязательные поля не найдены" -msgid "XML metadata" -msgstr "XML метаданные" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Запрашиваемая страница не найдена. Ссылка была: %URL%" -msgid "Telephone number" -msgstr "Номер телефона" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Запрашиваемая страница не найдена. Причина: %REASON% Ссылка: %URL%" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Невозможно выйти из некоторых служб. Для обеспечения закрытия всех сессий, закройте ваш браузер. " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Информацию о текущей операции выхода была потеряна. Вы должны вернуться на службу, из которой вы пытались выйти и попытаться выйти снова. Эта ошибка может быть вызвана устареванием информации о выходе. Информация о выходе хранится в течение ограниченного отрезка времени - обычно до несколькоих часов. Это больше, чем потребуется для любой нормальной операции выхода, поэтому эта ошибка может означать некоторые другие ошибки конфигурации. Если проблема не устранена, обратитесь к сервис провайдеру." -msgid "Group membership" -msgstr "Членство в группе" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Инициатор данного запроса не предоставил параметр RelayState с указанием следующей точки перехода." -msgid "Entitlement regarding the service" -msgstr "Право на предоставление услуг" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Параметры, отправленные в службу обнаружения, не соответствуют спецификации." -msgid "Shib 1.3 SP Metadata" -msgstr "Метаданные сервис провайдера Shib 1.3 SP" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Если вы находитесь в режиме отладки сообщения, вы сможете наблюдать содержимое сообщения." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Пароль в файле конфигурации (auth.adminpassword) не изменен от значения по умолчанию. Пожалуйста, отредактируйте файл конфигурации." -msgid "Certificates" -msgstr "Сертификаты" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Ошибка в запросе к этой странице. Причина: %REASON%" -msgid "Remember" -msgstr "Запомнить" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Ваш SimpleSAMLphp содержит неправильные конфигурационные данные. Если вы являетесь администратором системы, проверьте конфигурацию метаданных." -msgid "Distinguished name (DN) of person's home organization" -msgstr "Отличительное имя (DN) человека домашней организации" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Провайдер идентификации получил запрос на аутентификацию от сервис провайдера, но произошла ошибка при обработке данного запроса." -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Вы собираетесь отправить сообщение. Кликните ссылку отправки сообщения для продолжения." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Данная конечная точка не активирована. Проверьте опции в конфигурации вашего SimpleSAMLphp." -msgid "Organizational unit" -msgstr "Подразделение организации" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Эта ошибка произошла, вероятно, из-за непредвиденной ситуации или неправильной конфигурации SimpleSAMLphp. Свяжитесь с администратором этого сервиса и отправьте ему вышеуказанное сообщение об ошибке." -msgid "Local identity number" -msgstr "Местный идентификационный номер" +msgid "Title" +msgstr "Заглавие" -msgid "Shib 1.3 IdP Metadata" -msgstr "Метаданные провайдера идентификации Shib 1.3 IdP" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Для просмотра подробностей записи SAML, кликните на заголовок записи SAML." -msgid "Change your home organization" -msgstr "Сменить домашнюю организацию" +msgid "Tracking number" +msgstr "" -msgid "User's password hash" -msgstr "Хэш пароля пользователя" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Невозможно найти метаданные для %ENTITYID%" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "Формат простого SimpleSAMLphp файла" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Невозможно выйти из некоторых служб. Для обеспечения закрытия всех сессий, закройте ваш браузер. " -msgid "Completed" -msgstr "Выполнено" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Select configuration file to check:" -msgstr "Выберите файл конфигурации для проверки:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Необрабатываемое исключение" -msgid "On hold" -msgstr "В состоянии ожидания" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Неизвестный сертификат" -msgid "ADFS Identity Provider (Hosted)" -msgstr "Провайдер идентификации ADFS (локальное размещение)" +msgid "User ID" +msgstr "ID пользователя" -msgid "Help! I don't remember my password." -msgstr "Помогите! Я не помню свой пароль." +msgid "User's password hash" +msgstr "Хэш пароля пользователя" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Вы можете отключить режим отладки в файле конфигурации global SimpleSAMLphp -config/config.php. " +msgid "Username" +msgstr "Имя пользователя" -msgid "SimpleSAMLphp error" -msgstr "Ошибка SimpleSAMLphp" +msgid "WS-Fed SP Demo Example" +msgstr "Демо пример сервис провайдера WS-Fed SP" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Некоторые службы, к которым вы подключены, не поддеживают выход из системы. Для обеспечения закрытия всех сессий, закройте ваш браузер." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "Провайдер идентификации WS-Federation (удаленное размещение)" -msgid "Remember me" -msgstr "Запомнить меня" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "Сервис провайдер WS-Federation (локальное размещение)" -msgid "Organization's legal name" -msgstr "Юридическое название организации" +msgid "Warning" +msgstr "" -msgid "Options missing from config file" -msgstr "Параметры, отсутствующие в файле конфигурации" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Отклик от провайдера идентификации не получен." -msgid "The following optional fields was not found" -msgstr "Следующие необязательные поля не найдены" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "При попытке провайдера идентификации создать ответ по аутентификации произошла ошибка." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Вы можете получить xml файл с метаданными по следующему URL:" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Очень плохо! - Без ваших имени пользователя и пароля вы не можете подтвердить ваше право на доступ к службе. Может быть есть кто-нибудь, кто сможет помочь вам. Проконсультируйтесь со своей службой поддержки в вашем университете!" -msgid "Street" -msgstr "Улица" +msgid "World" +msgstr "" -msgid "Message" -msgstr "Сообщение" +msgid "XML metadata" +msgstr "XML метаданные" -msgid "Contact information:" -msgstr "Контактная информация" +msgid "Yes, all services" +msgstr "Да, для всех служб" -msgid "Legal name" -msgstr "Официальное название" +msgid "Yes, continue" +msgstr "Да, продолжить" -msgid "Optional fields" -msgstr "Необязательные поля" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You have previously chosen to authenticate at" -msgstr "Вы уже выбрали для аутентификации в" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Вы получили доступ к интерфейсу Assertion Consumer Service, но не предоставили отклик SAML аутентификации." -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Вы отправили информацию на страницу входа, но по каким-то причинам пароль не послан. Пожалуйста, попробуйте снова." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Fax number" -msgstr "Номер факса" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Вы получили доступ к интерфейсу SingleLogoutService, но не предоставили SAML LogoutRequest или LogoutResponse утверждения." -msgid "Shibboleth demo" -msgstr "Shibboleth демо" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Вы собираетесь отправить сообщение. Кликните клавишу отправки сообщения для продолжения." -msgid "Error in this metadata entry" -msgstr "Ошибка при вводе данной записи метаданных" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Вы собираетесь отправить сообщение. Кликните ссылку отправки сообщения для продолжения." -msgid "Session size: %SIZE%" -msgstr "Размер сессии: %SIZE%" +msgid "You are also logged in on these services:" +msgstr "Вы также подключены к следующим службам:" -msgid "Parse" -msgstr "Выполнить синтаксический анализ" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Сейчас вы имеете доступ к предварительной версии системы. Эта настройка аутентификации только для тестирования и проверки предварительной версии. Если кто-то прислал вам ссылку, которую вы указали здесь, и вы не тестер, то вы, вероятно, получили неправильную ссылку, и не должны быть здесь." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Очень плохо! - Без ваших имени пользователя и пароля вы не можете подтвердить ваше право на доступ к службе. Может быть есть кто-нибудь, кто сможет помочь вам. Проконсультируйтесь со своей службой поддержки в вашем университете!" +msgid "You are now successfully logged out from %SP%." +msgstr "Вы успешно вышли из службы %SP%." -msgid "ADFS Service Provider (Remote)" -msgstr "Сервис провайдер ADFS (удаленное размещение)" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Вы можете получить xml файл с метаданными по следующему URL:" -msgid "Choose your home organization" -msgstr "Выберите вашу домашнюю организацию" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Вы можете отключить режим отладки в файле конфигурации global SimpleSAMLphp -config/config.php. " -msgid "Send e-mail to help desk" -msgstr "Послать email в службу поддержки" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Вы не предоставили действительный сертификат." -msgid "Metadata overview" -msgstr "Краткое описание метаданных" +msgid "You have been logged out." +msgstr "Вы успешно вышли из системы" -msgid "Title" -msgstr "Заглавие" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Вы выбрали %HOMEORG% как вашу домашнюю организацию. Если вы ошиблись - вы можете выбрать другую." -msgid "Manager" -msgstr "Управляющий" +msgid "You have previously chosen to authenticate at" +msgstr "Вы уже выбрали для аутентификации в" -msgid "Affiliation at home organization" -msgstr "Членство в главной организации" +msgid "You have successfully logged out from all services listed above." +msgstr "Вы успешно вышли из всех служб перечисленных выше." -msgid "Help desk homepage" -msgstr "Домашняя страница службы поддержки" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Вы отправили информацию на страницу входа, но по каким-то причинам пароль не послан. Пожалуйста, попробуйте снова." -msgid "Configuration check" -msgstr "Проверка конфигурации" +msgid "Your attributes" +msgstr "Ваши атрибуты" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Провайдер идентификации Shib 1.3 (удаленное размещение)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Метаданные, сгенерированные для вас с помощью SimpleSAMLphp. Вы можете отправить данный документ с метаданными доверенным партнерам для создания федерации." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Ваша сессия действительна в течение следующих %remaining% секунд." -msgid "Organizational homepage" -msgstr "Домашняя страница организации" +msgid "[Preferred choice]" +msgstr "[Предпочтительный выбор]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Сейчас вы имеете доступ к предварительной версии системы. Эта настройка аутентификации только для тестирования и проверки предварительной версии. Если кто-то прислал вам ссылку, которую вы указали здесь, и вы не тестер, то вы, вероятно, получили неправильную ссылку, и не должны быть здесь." +msgid "not set" +msgstr "не установлен" diff --git a/locales/se/LC_MESSAGES/messages.po b/locales/se/LC_MESSAGES/messages.po index 9d49efe1bb..19eb423953 100644 --- a/locales/se/LC_MESSAGES/messages.po +++ b/locales/se/LC_MESSAGES/messages.po @@ -1,58 +1,441 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: se\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Du doaibma organisašuvnnas" + +msgid "Affiliation at home organization" +msgstr "Rolla diehto organisašuvnnas, dehe dihto domenas." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 +msgid "Authentication source error" +msgstr "" + +msgid "Authentication status" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 +msgid "Bad request received" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 +msgid "CAS Error" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Common name" +msgstr "Olles namma" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 +msgid "Configuration error" +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 +msgid "Could not create authentication response" +msgstr "" + +msgid "Debug information" +msgstr "" + +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "E-mail address:" msgstr "Elektrovnnalaš poastačijuhus" -msgid "Person's principal name at home organization" -msgstr "Feide-namma" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "" -msgid "Mobile" -msgstr "Mátketelefovdna" +msgid "Entitlement regarding the service" +msgstr "URI mii čilge dihto vuoigatvuođa dihto ressurssaide" -msgid "Incorrect username or password." -msgstr "Boastu geavahusnamma, beassansátni dehe organisašuvdna." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "" -msgid "Mail" -msgstr "Elektrovnnalaš poastačijuhus" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Error processing request from Service Provider" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 +msgid "Error received from Identity Provider" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "" + +msgid "Explain what you did when this error occurred..." +msgstr "" + +msgid "Format" +msgstr "" msgid "Given name" msgstr "Ovdanamma" -msgid "Common name" -msgstr "Olles namma" +msgid "Hello, Untranslated World!" +msgstr "" + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "" + +msgid "How to get help" +msgstr "" msgid "Identity number assigned by public authorities" msgstr "Riegadannummir" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "" + +msgid "Incorrect username or password." +msgstr "Boastu geavahusnamma, beassansátni dehe organisašuvdna." + +msgid "Information about your current session" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "" + +msgid "Language" +msgstr "" + +msgid "Login" +msgstr "Mana sis" + +msgid "Logout" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "" + +msgid "Mail" +msgstr "Elektrovnnalaš poastačijuhus" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" + +msgid "Mobile" +msgstr "Mátketelefovdna" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "" + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "" + msgid "Organization" msgstr "Organisašuvdna" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "" + msgid "Password" msgstr "Beassansátni" -msgid "Username" -msgstr "Geavahusnamma" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "" -msgid "Affiliation" -msgstr "Du doaibma organisašuvnnas" +msgid "Person's principal name at home organization" +msgstr "Feide-namma" + +msgid "Please select the identity provider where you want to authenticate:" +msgstr "" msgid "Preferred language" msgstr "Vuosttašválljejuvvon giella dehe giellahápmi" +msgid "Remember my choice" +msgstr "" + +msgid "Report errors" +msgstr "" + +msgid "SAML Subject" +msgstr "" + +msgid "Select" +msgstr "" + +msgid "Select your identity provider" +msgstr "" + +msgid "Send error report" +msgstr "" + +msgid "Sending message" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "" + +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "" + msgid "Surname" msgstr "Goargu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "" + +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "" + +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "" + +msgid "Tracking number" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "" + msgid "User ID" msgstr "Namahus" -msgid "Login" -msgstr "Mana sis" +msgid "Username" +msgstr "Geavahusnamma" -msgid "Entitlement regarding the service" -msgstr "URI mii čilge dihto vuoigatvuođa dihto ressurssaide" +msgid "Warning" +msgstr "" -msgid "Affiliation at home organization" -msgstr "Rolla diehto organisašuvnnas, dehe dihto domenas." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "" + +msgid "World" +msgstr "" + +msgid "Yes, continue" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "" + +msgid "Your attributes" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" + +msgid "not set" +msgstr "" diff --git a/locales/sk/LC_MESSAGES/messages.po b/locales/sk/LC_MESSAGES/messages.po index c3c0ac7c34..6f4fc977c0 100644 --- a/locales/sk/LC_MESSAGES/messages.po +++ b/locales/sk/LC_MESSAGES/messages.po @@ -1,827 +1,855 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Neposkytnutá žiadna SAML odpoveď" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Neposkytnutá žiadna SAML správa" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 -msgid "Authentication source error" -msgstr "Chyba zdroja autentifikácie" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 -msgid "Bad request received" -msgstr "Prijatá zlá požiadavka" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 -msgid "CAS Error" -msgstr "CAS Chyba" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 -msgid "Configuration error" -msgstr "Chyba konfigurácie" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Chyba pri vytváraní požiadavky" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Zlá požiadavka pre vyhľadávaciu službu" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 -msgid "Could not create authentication response" -msgstr "Nepodarilo sa vytvoriť autentifikačnú odpoveď" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Neplatný certifikát" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP Chyba" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Odhlasovacia informácia stratená" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Chyba pri spracovávaní požiadavky odhlásenia (Logout Request)" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 -msgid "Cannot retrieve session data" -msgstr "Nepodarilo sa získať dáta relácie" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Chyba pri načítavaní metadát" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Služba požaduje Vašu autentifikáciu. Zadajte, prosím, Vaše prihlasovacie meno a heslo do formulára nižšie." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadáta neboli nájdené" +msgid "ADFS IdP Metadata" +msgstr "ADFS IdP Metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Žiadny prístup" +msgid "ADFS Identity Provider (Hosted)" +msgstr "ADFS Identity Provider (lokálne prevádzkovaný)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Žiadny certifikát" +msgid "ADFS SP Metadata" +msgstr "ADFS SP Metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Žiadny RelayState" +msgid "ADFS Service Provider (Remote)" +msgstr "ADFS Service Provider (vzdialené)" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Stavová informácia stratená" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Stránka nebola nájdená" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Heslo nie je nastavené" +msgid "Admin password not set to a hashed value" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Nastala chyba pri spracovávaní odpovede z poskytovateľa identity (Identity Provider)" +msgid "Affiliation" +msgstr "Vzťah k organizácii" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 -msgid "Error processing request from Service Provider" -msgstr "Chyba pri spracovávaní požiadavky z poskytovateľa služby (Service Provider)" +msgid "Affiliation at home organization" +msgstr "Vzťah k domovskej organizácii" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 -msgid "Error received from Identity Provider" -msgstr "Prijatá chyba z poskytovateľa identity (Identity Provider)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Pri vytváraní SAML požiadavky nastala chyba." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 -msgid "No SAML request provided" -msgstr "Žiadna poskytnutá SAML požiadavka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Nastala chyba pri spracovávaní odhlasovacej požiadavky (Logout Request)." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Neočakávaná chyba" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Vznikla neočakávaná chyba." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Neznámy certifikát" +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Keďže ste v debug režime, zobrazuje sa Vám obsah správy, ktorú posielate:" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 msgid "Authentication aborted" msgstr "Autentifikácia zrušená" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Nesprávne prihlasovacie meno alebo heslo" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Pristúpili ste k Assertion Consumer Service rozhraní, ale neposkytli ste SAML Authentication Response. Berte prosím na vedomie, že tento endpoint nie je určený na priamy prístup." - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 -msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." -msgstr "Pristúpili ste k Artifact Resolution Service rozhraní, ale neposkytli ste SAML ArtifactResolve správu. Berte prosím na vedomie, že tento endpoint nie je určený na priamy prístup." - #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" msgstr "Chyba autentifikácie zo zdroja %AUTHSOURCE%. Dôvod: %REASON%" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "V požiadavke na túto stránku je chyba. Dôvod: %REASON%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Autentifikácia zlyhala: certifikát, ktorý poslal Váš prehliadač je neplatný alebo sa nedá čítať" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Chyba pri komunikácii s CAS serverom." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Autentifikácia zlyhala: certifikát zaslaný Vašim prehliadačom je neznámy" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp vyzerá byť zle nakonfigurovaný." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Autentifikácia zlyhala: Váš prehliadač neodoslal žiadny certifikát" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Pri vytváraní SAML požiadavky nastala chyba." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 +msgid "Authentication source error" +msgstr "Chyba zdroja autentifikácie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Parametre odoslané vyhľadávacej službe nie sú v súlade so špecifikáciou." +msgid "Authentication status" +msgstr "Stav autentifikácie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Nastala chyba pri vytváraní autentifikačnej odpovede." +msgid "Back" +msgstr "Späť" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Autentifikácia zlyhala: certifikát, ktorý poslal Váš prehliadač je neplatný alebo sa nedá čítať" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 +msgid "Bad request received" +msgstr "Prijatá zlá požiadavka" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP je databáza užívateľov a keď sa prihlasujete, potrebujeme sa na túto databázu pripojiť. Pri tomto pokuse nastala chyba." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Zlá požiadavka pre vyhľadávaciu službu" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Informácia o aktuálnej operácii odhlásenia bola stratená. Mali by ste sa vrátiť do služby, z ktorej sa snažíte odhlásiť, a skúsiť to znovu. Táto chyba môže byť zapríčinená expiráciou odhlasovacích informácií. Odhlasovacie informácie sú uložené po určitý čas - zvyčajne pár hodín, čo je dlhšie, ako by mal odhlasovací proces trvať, takže táto chyba môže indikovať problém s konfiguráciou. Ak tento problém pretrváva, kontaktujte Vášho poskytovateľa služby." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 +msgid "CAS Error" +msgstr "CAS Chyba" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Nastala chyba pri spracovávaní odhlasovacej požiadavky (Logout Request)." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "Nepodarilo sa získať dáta relácie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 -msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." -msgstr "Vaše dáta relácie sa nedajú momentálne získať kvôli technickým problémom. Skúste to prosím o pár minút." +msgid "Certificates" +msgstr "Certifikáty" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Vo Vašej inštalácii SimpleSAMLphp je niečo zle nakonfigurované. Ak ste administrátor tejto služby, mali by ste sa uistiť, že konfigurácia metadát je správna." +msgid "Change your home organization" +msgstr "Zmeniť Vašu domovskú organizáciu" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Nepodarilo sa nájsť metadáta pre %ENTITYID%" +msgid "Choose home organization" +msgstr "Vyberte domovskú organizáciu" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Tento endpoint nie je aktivovaný. Skontrolujte aktivačné nastavenia v konfigurácii SimpleSAMLphp." +msgid "Choose your home organization" +msgstr "Vyberte si domovskú organizáciu" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Autentifikácia zlyhala: Váš prehliadač neodoslal žiadny certifikát" +msgid "Common name" +msgstr "Názov (Common Name)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Iniciátor tejto požiadavky neposkytol parameter RelayState indikujúci kam pokračovať ďalej." +msgid "Completed" +msgstr "Dokončené" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Stavová informácia stratená a požiadavku sa nedá reštartovať" +msgid "Configuration check" +msgstr "Kontrola konfigurácie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Stránka nebola nájdená. URL je: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 +msgid "Configuration error" +msgstr "Chyba konfigurácie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Stránka nebola nájdená. Dôvod: %REASON% URL: %URL%" +msgid "Contact information:" +msgstr "Kontaktné informácie:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Heslo v konfiguračnom súbore (auth.adminpassword) nie je zmenené z prednastavenej hodnoty. Zmeňte prosím konfiguračný súbor." +msgid "Converted metadata" +msgstr "Konvertované metadáta" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Neposkytli ste platný certifikát." +msgid "Copy to clipboard" +msgstr "Kopírovať do schránky" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Neakceptovali sme odpoveď odoslanú z poskytovateľa identity." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 +msgid "Could not create authentication response" +msgstr "Nepodarilo sa vytvoriť autentifikačnú odpoveď" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgid "Date of birth" +msgstr "Dátum narodenia" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Poskytovateľ identity odpovedal chybou. (Kód stavu SAML odpovede nebol úspešný)" +msgid "Debug information" +msgstr "Debug informácie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Pristúpili ste k SingleLogoutService rozhraní, ale neposkytli ste SAML LogoutRequest alebo LogoutResponse. Berte prosím na vedomie, že tento endpoint nie je určený na priamy prístup." +msgid "Debug information to be used by your support staff" +msgstr "Debug informácie pre personál podpory" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 -msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." -msgstr "Pristúpili ste k Single Sign On Service rozhraní, ale neposkytli ste SAML Authentication Request. Berte prosím na vedomie, že tento endpoint nie je určený na priamy prístup." +msgid "Display name" +msgstr "Zobrazované meno" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Vznikla neočakávaná chyba." +msgid "Distinguished name (DN) of person's home organization" +msgstr "Jednoznačné meno (DN) užívateľovej domovskej organizácie" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Autentifikácia zlyhala: certifikát zaslaný Vašim prehliadačom je neznámy" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Jednoznačné meno (DN) primárnej organizačnej jednotky človeka" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Autentifikácia bola prerušená užívateľom" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Jednoznačné meno (DN) organizačnej jednotky človeka" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Buď sa užívateľ s týmto prihlasovacím menom nenašiel, alebo je zadané heslo nesprávne. Skontrolujte prosím prihlasovacie meno a heslo a skúste to znovu." +msgid "Do you want to logout from all the services above?" +msgstr "Chcete sa odhlásiť zo všetkých služieb vyššie?" -msgid "Authentication status" -msgstr "Stav autentifikácie" +msgid "Domain component (DC)" +msgstr "Doména (DC)" -msgid "Copy to clipboard" -msgstr "Kopírovať do schránky" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Stiahnuť X509 certifikáty ako PEM kódované súbory." -msgid "Debug information to be used by your support staff" -msgstr "Debug informácie pre personál podpory" +msgid "E-mail address:" +msgstr "E-mailová adresa:" -msgid "Format" -msgstr "Formát" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Buď sa užívateľ s týmto prihlasovacím menom nenašiel, alebo je zadané heslo nesprávne. Skontrolujte prosím prihlasovacie meno a heslo a skúste to znovu." -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Toto je stránka so stavom SimpleSAMLphp. Tu môžete vidieť, či Vaša relácia vypršala, ako dlho trvá, dokým vyprší a všetky atribúty, ktoré sú pripojené k Vašej relácii." +msgid "Enter your username and password" +msgstr "Zadajte Vaše prihlasovacie meno a heslo" -msgid "Information about your current session" -msgstr "Informácie o Vašej aktuálnej relácii" +msgid "Entitlement regarding the service" +msgstr "Entitlement regarding the service" -msgid "Logout" -msgstr "Odhlásiť sa" +msgid "Error" +msgstr "Chyba" -msgid "SAML Subject" -msgstr "SAML Subjekt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Chyba pri vytváraní požiadavky" -msgid "Tracking number" -msgstr "Sledovacie číslo" +msgid "Error in this metadata entry" +msgstr "Chyba v tomto metadáta zázname" -msgid "Your attributes" -msgstr "Vaše atribúty" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Chyba pri načítavaní metadát" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Vaša relácia je platná ešte %remaining% sekúnd." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Error processing request from Service Provider" +msgstr "Chyba pri spracovávaní požiadavky z poskytovateľa služby (Service Provider)" -msgid "not set" -msgstr "nenastavené" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Nastala chyba pri spracovávaní odpovede z poskytovateľa identity (Identity Provider)" -msgid "Hello, Untranslated World!" -msgstr "Ahoj, nepreložený svet!" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Chyba pri spracovávaní požiadavky odhlásenia (Logout Request)" -msgid "World" -msgstr "Svet" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 +msgid "Error received from Identity Provider" +msgstr "Prijatá chyba z poskytovateľa identity (Identity Provider)" -msgid "Language" -msgstr "Jazyk" +msgid "Error report sent" +msgstr "Chybové hlásenie odoslané" -msgid "No identity providers found. Cannot continue." -msgstr "Nenašli sa žiadni poskytovalia identity. Nedá sa pokračovať." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Chyba pri komunikácii s CAS serverom." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Vyberte si prosím poskytovateľa identity, cez ktorého sa chcete autentifikovať:" +msgid "Explain what you did when this error occurred..." +msgstr "Vysvetlite, čo ste robili, keď nastala táto chyba..." + +msgid "Fax number" +msgstr "Číslo faxu" -msgid "Remember my choice" -msgstr "Zapamätať moju voľbu" +msgid "Format" +msgstr "Formát" -msgid "Select" -msgstr "Vybrať" +msgid "Given name" +msgstr "Krstné meno" -msgid "Select your identity provider" -msgstr "Vyberte si poskytovateľa identity" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Ísť späť na inštalačnú stránku SimpleSAMLphp" -msgid "Sending message" -msgstr "Odosiela sa správa" +msgid "Go back to the file list" +msgstr "Ísť späť na zoznam súborov" -msgid "Since your browser does not support Javascript, you must press the button below to proceed." -msgstr "Keďže Váš prehliadač nepodporuje Javascript, musíte stlačiť tlačido nižšie pre pokračovanie." +msgid "Group membership" +msgstr "Členstvo v skupine" -msgid "Warning" -msgstr "Upozornenie" +msgid "Hello, %who%!" +msgstr "Vitajte, %who%!" -msgid "Yes, continue" -msgstr "Áno, pokračovať" +msgid "Hello, Untranslated World!" +msgstr "Ahoj, nepreložený svet!" -msgid "Debug information" -msgstr "Debug informácie" +msgid "Help desk homepage" +msgstr "Domovská stránka podpory" -msgid "E-mail address:" -msgstr "E-mailová adresa:" +msgid "Help! I don't remember my password." +msgstr "Pomoc! Nepamätám si heslo." -msgid "Explain what you did when this error occurred..." -msgstr "Vysvetlite, čo ste robili, keď nastala táto chyba..." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Tu sú metadáta, ktoré SimpleSAMLphp vygeneroval. Možno budete musieť odoslať tento dokument metadát dôveryhodným partnerom na nastavenie dôveryhodnej federácie." -msgid "How to get help" -msgstr "Ako získať pomoc" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Toto je stránka so stavom SimpleSAMLphp. Tu môžete vidieť, či Vaša relácia vypršala, ako dlho trvá, dokým vyprší a všetky atribúty, ktoré sú pripojené k Vašej relácii." -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Ak nahlasujete túto chybu, nahláste prosím aj toto sledovacie číslo, ktoré umožní administrátorovi nájsť Vašu reláciu v logoch:" +msgid "Home organization domain name" +msgstr "Doménové meno organizácie" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Dobrovoľne zadajte Vašu emailovú adresu, aby Vás administrátori mohli kontaktovať s ďalšími otázkami pre vyriešenie problému:" +msgid "Home postal address" +msgstr "Domovská poštová adresa" -msgid "Report errors" -msgstr "Nahlásiť chyby" +msgid "Home telephone" +msgstr "Telefón domov" -msgid "Send error report" -msgstr "Odoslať správu o chybe" +msgid "How to get help" +msgstr "Ako získať pomoc" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Detailné informácie nižšie môžu byť pre administrátora alebo podporu nápomocné:" +msgid "Identity assurance profile" +msgstr "Profil uistenia identity" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Táto chyba je pravdepodobne spôsobená nečakaným správaním alebo zlou konfiguráciou SimpleSAMLphp. Kontaktujte administrátorov tejto prihlasovacej služby s chybovou hláškou vyššie." +msgid "Identity number assigned by public authorities" +msgstr "Číslo identity pridelené verejnou autoritou" -msgid "Back" -msgstr "Späť" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Ak nahlasujete túto chybu, nahláste prosím aj toto sledovacie číslo, ktoré umožní administrátorovi nájsť Vašu reláciu v logoch:" -msgid "[Preferred choice]" -msgstr "[Preferovaná voľba]" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "V SAML 2.0 Metadata XML formáte:" -msgid "Hello, %who%!" -msgstr "Vitajte, %who%!" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "V SimpleSAMLphp formáte - toto použite, ak používate SimpleSAMLphp entitu na druhej strane:" -msgid "Person's principal name at home organization" -msgstr "Hlavné meno osoby v domovskej organizácii" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Nesprávne prihlasovacie meno alebo heslo" -msgid "Superfluous options in config file" -msgstr "Zbytočné nastavenia v konfiguračnom súbore" +msgid "Incorrect username or password." +msgstr "Nesprávne meno alebo heslo." -msgid "Mobile" -msgstr "Mobil" +msgid "Information about your current session" +msgstr "Informácie o Vašej aktuálnej relácii" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Service Provider (lokálne prevádzkovaný)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Neplatný certifikát" -msgid "Display name" -msgstr "Zobrazované meno" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP Metadata" +msgid "JPEG Photo" +msgstr "JPEG fotka" -msgid "ADFS IdP Metadata" -msgstr "ADFS IdP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP Chyba" -msgid "Notices" -msgstr "Oznámenia" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP je databáza užívateľov a keď sa prihlasujete, potrebujeme sa na túto databázu pripojiť. Pri tomto pokuse nastala chyba." -msgid "Home telephone" -msgstr "Telefón domov" +msgid "Labeled URI" +msgstr "Označená URI" -msgid "Service Provider" -msgstr "Poskytovateľ služby (Service Provider)" +msgid "Language" +msgstr "Jazyk" -msgid "Incorrect username or password." -msgstr "Nesprávne meno alebo heslo." +msgid "Legal name" +msgstr "Právny názov" -msgid "Submit message" -msgstr "Odoslať správu" +msgid "Local identity number" +msgstr "Lokálne číslo identity" msgid "Locality" msgstr "Lokalita" -msgid "The following required fields was not found" -msgstr "Nasledujúce povinné údaje neboli nájdené" +msgid "Logged out" +msgstr "Odhlásený" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Stiahnuť X509 certifikáty ako PEM kódované súbory." +msgid "Logging out of the following services:" +msgstr "Odhlasovanie z nasledujúcich služieb:" -msgid "Organizational number" -msgstr "Číslo organizácie" +msgid "Logging out..." +msgstr "Odhlasovanie..." -msgid "Post office box" -msgstr "Poštová schránka" +msgid "Login" +msgstr "Prihlásiť sa" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Služba požaduje Vašu autentifikáciu. Zadajte, prosím, Vaše prihlasovacie meno a heslo do formulára nižšie." +msgid "Login at" +msgstr "Prihlásenie na" -msgid "Error" -msgstr "Chyba" +msgid "Logo" +msgstr "Logo" -msgid "Next" -msgstr "Ďalší" +msgid "Logout" +msgstr "Odhlásiť sa" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Jednoznačné meno (DN) organizačnej jednotky človeka" +msgid "Logout failed" +msgstr "Odhlásenie zlyhalo" -msgid "Converted metadata" -msgstr "Konvertované metadáta" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Odhlasovacia informácia stratená" msgid "Mail" msgstr "Email" -msgid "No, cancel" -msgstr "Nie, zrušiť" +msgid "Manager" +msgstr "Manažér" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Vybrali ste si %HOMEORG% ako svoju domovskú organizáciu. Ak toto nie je správne, môžete vybrať inú." +msgid "Message" +msgstr "Správa" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Jednoznačné meno (DN) primárnej organizačnej jednotky človeka" +msgid "Metadata" +msgstr "Metadáta" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Pre detaily kliknite na hlavičku SAML entity." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadáta neboli nájdené" -msgid "Enter your username and password" -msgstr "Zadajte Vaše prihlasovacie meno a heslo" +msgid "Metadata overview" +msgstr "Prehľad metadát" -msgid "Login at" -msgstr "Prihlásenie na" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" + +msgid "Mobile" +msgstr "Mobil" + +msgid "Next" +msgstr "Ďalší" + +msgid "Nickname" +msgstr "Prezývka" msgid "No" msgstr "Nie" -msgid "Home postal address" -msgstr "Domovská poštová adresa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Žiadny RelayState" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP Demo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Neposkytnutá žiadna SAML správa" -msgid "Do you want to logout from all the services above?" -msgstr "Chcete sa odhlásiť zo všetkých služieb vyššie?" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "Žiadna poskytnutá SAML požiadavka" -msgid "Given name" -msgstr "Krstné meno" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Neposkytnutá žiadna SAML odpoveď" -msgid "Identity assurance profile" -msgstr "Profil uistenia identity" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Žiadny prístup" -msgid "SAML 2.0 SP Demo Example" -msgstr "SAML 2.0 SP Demo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Žiadny certifikát" -msgid "Organization name" -msgstr "Názov organizácie" +msgid "No errors found." +msgstr "Neboli nájdene žiadne chyby." -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Chystáte sa poslať správu. Kliknite na tlačidlo odoslania pre pokračovanie." +msgid "No identity providers found. Cannot continue." +msgstr "Nenašli sa žiadni poskytovalia identity. Nedá sa pokračovať." -msgid "Home organization domain name" -msgstr "Doménové meno organizácie" +msgid "No, cancel" +msgstr "Nie, zrušiť" -msgid "Go back to the file list" -msgstr "Ísť späť na zoznam súborov" +msgid "No, only %SP%" +msgstr "Nie, len %SP%" -msgid "Error report sent" -msgstr "Chybové hlásenie odoslané" +msgid "Notices" +msgstr "Oznámenia" + +msgid "ORCID researcher identifiers" +msgstr "ORCID researcher identifikátory" -msgid "Common name" -msgstr "Názov (Common Name)" +msgid "On hold" +msgstr "Podržané" -msgid "Logout failed" -msgstr "Odhlásenie zlyhalo" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Jedna alebo viacero služieb, do ktorých ste prihlásený, nepodporuje odhlásenie. Aby ste uistili, že sú všetky relácie zatvorené, je odporúčané zatvoriť Váš prehliadač." -msgid "Identity number assigned by public authorities" -msgstr "Číslo identity pridelené verejnou autoritou" +msgid "Optional fields" +msgstr "Voliteľné údaje" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation Identity Provider (vzdialené)" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Dobrovoľne zadajte Vašu emailovú adresu, aby Vás administrátori mohli kontaktovať s ďalšími otázkami pre vyriešenie problému:" -msgid "Some error occurred" -msgstr "Nastala nejaká chyba" +msgid "Options missing from config file" +msgstr "Nastavenia chýbajúce v konfiguračnom súbore" msgid "Organization" msgstr "Organizácia" -msgid "Choose home organization" -msgstr "Vyberte domovskú organizáciu" +msgid "Organization name" +msgstr "Názov organizácie" -msgid "Persistent pseudonymous ID" -msgstr "Perzistentné pseudonymné ID" +msgid "Organization's legal name" +msgstr "Právny názov organizácie" -msgid "No errors found." -msgstr "Neboli nájdene žiadne chyby." +msgid "Organizational homepage" +msgstr "Domovská stránka organizácie" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Service Provider (lokálne prevádzkovaný)" +msgid "Organizational number" +msgstr "Číslo organizácie" -msgid "Required fields" -msgstr "Povinné údaje" +msgid "Organizational unit" +msgstr "Organizačná jednotka" -msgid "Domain component (DC)" -msgstr "Doména (DC)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Stránka nebola nájdená" -msgid "Shib 1.3 Service Provider (Remote)" -msgstr "Shib 1.3 Service Provider (vzdialené)" +msgid "Parse" +msgstr "Parsovať" msgid "Password" msgstr "Heslo" -msgid "ORCID researcher identifiers" -msgstr "ORCID researcher identifikátory" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Heslo nie je nastavené" -msgid "Nickname" -msgstr "Prezývka" +msgid "Persistent pseudonymous ID" +msgstr "Perzistentné pseudonymné ID" -msgid "The error report has been sent to the administrators." -msgstr "Správa o chybe bola odoslaná administrátorom." +msgid "Person's non-reassignable, persistent pseudonymous ID at home organization" +msgstr "Nepreraditeľné, perzistentné pseudonymné ID užívateľa v domovskej organizácii" -msgid "Date of birth" -msgstr "Dátum narodenia" +msgid "Person's principal name at home organization" +msgstr "Hlavné meno osoby v domovskej organizácii" -msgid "Private information elements" -msgstr "Privátne informačné prvky" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Vyberte si prosím poskytovateľa identity, cez ktorého sa chcete autentifikovať:" -msgid "Person's non-reassignable, persistent pseudonymous ID at home organization" -msgstr "Nepreraditeľné, perzistentné pseudonymné ID užívateľa v domovskej organizácii" +msgid "Post office box" +msgstr "Poštová schránka" -msgid "You are also logged in on these services:" -msgstr "Ste taktiež prihlásený do týchto služieb:" +msgid "Postal address" +msgstr "Poštová adresa" -msgid "SimpleSAMLphp Diagnostics" -msgstr "SimpleSAMLphp diagnostika" +msgid "Postal code" +msgstr "Poštové číslo" -msgid "No, only %SP%" -msgstr "Nie, len %SP%" +msgid "Preferred language" +msgstr "Preferovaný jazyk" -msgid "Username" -msgstr "Prihlasovacie meno" +msgid "Primary affiliation" +msgstr "Primárny vzťah k organizácii" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Ísť späť na inštalačnú stránku SimpleSAMLphp" +msgid "Private information elements" +msgstr "Privátne informačné prvky" -msgid "You have successfully logged out from all services listed above." -msgstr "Úspešne ste sa odhlásili zo všetkých služieb vyššie." +msgid "Processing..." +msgstr "Spracovávanie..." -msgid "You are now successfully logged out from %SP%." -msgstr "Úspešne ste sa odhlásili z %SP%." +msgid "Remember" +msgstr "Zapamätať" -msgid "Affiliation" -msgstr "Vzťah k organizácii" +msgid "Remember me" +msgstr "Zapamätať si ma" -msgid "You have been logged out." -msgstr "Boli ste odhlásený." +msgid "Remember my choice" +msgstr "Zapamätať moju voľbu" + +msgid "Remember my username" +msgstr "Zapamätať si prihlasovacie meno" + +msgid "Report errors" +msgstr "Nahlásiť chyby" + +msgid "Required fields" +msgstr "Povinné údaje" msgid "Return to service" msgstr "Vrátiť sa na službu" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation Service Provider (lokálne prevádzkovaný)" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Identity Provider (lokálne prevádzkovaný)" -msgid "Remember my username" -msgstr "Zapamätať si prihlasovacie meno" +msgid "SAML 2.0 SP Demo Example" +msgstr "SAML 2.0 SP Demo" -msgid "Preferred language" -msgstr "Preferovaný jazyk" +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP Metadata" + +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Service Provider (lokálne prevádzkovaný)" msgid "SAML 2.0 Service Provider (Remote)" msgstr "SAML 2.0 Service Provider (vzdialené)" -msgid "Surname" -msgstr "Priezvisko" +msgid "SAML Subject" +msgstr "SAML Subjekt" -msgid "The following fields was not recognized" -msgstr "Nasledujúce údaje neboli rozpoznané" +msgid "Select" +msgstr "Vybrať" -msgid "User ID" -msgstr "ID užívateľa" +msgid "Select configuration file to check:" +msgstr "Vyberte konfiguračný súbor na kontrolu:" -msgid "JPEG Photo" -msgstr "JPEG fotka" +msgid "Select your identity provider" +msgstr "Vyberte si poskytovateľa identity" -msgid "Postal address" -msgstr "Poštová adresa" +msgid "Send e-mail to help desk" +msgstr "Odoslať e-mail na podporu" -msgid "ADFS SP Metadata" -msgstr "ADFS SP Metadata" +msgid "Send error report" +msgstr "Odoslať správu o chybe" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "V SAML 2.0 Metadata XML formáte:" +msgid "Sending message" +msgstr "Odosiela sa správa" -msgid "Logging out of the following services:" -msgstr "Odhlasovanie z nasledujúcich služieb:" +msgid "Service Provider" +msgstr "Poskytovateľ služby (Service Provider)" -msgid "Labeled URI" -msgstr "Označená URI" +msgid "Session size: %SIZE%" +msgstr "Veľkosť relácie: %SIZE%" + +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metadata" msgid "Shib 1.3 Identity Provider (Hosted)" msgstr "Shib 1.3 Identity Provider (lokálne prevádzkovaný)" -msgid "Metadata" -msgstr "Metadáta" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Identity Provider (vzdialené)" -msgid "Login" -msgstr "Prihlásiť sa" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metadata" -msgid "Yes, all services" -msgstr "Áno, všetky služby" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Service Provider (lokálne prevádzkovaný)" -msgid "Logged out" -msgstr "Odhlásený" +msgid "Shib 1.3 Service Provider (Remote)" +msgstr "Shib 1.3 Service Provider (vzdialené)" -msgid "Postal code" -msgstr "Poštové číslo" +msgid "Shibboleth demo" +msgstr "Shibboleth demo" -msgid "Logging out..." -msgstr "Odhlasovanie..." +msgid "SimpleSAMLphp Diagnostics" +msgstr "SimpleSAMLphp diagnostika" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Identity Provider (lokálne prevádzkovaný)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp vyzerá byť zle nakonfigurovaný." -msgid "Primary affiliation" -msgstr "Primárny vzťah k organizácii" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp chyba" -msgid "XML metadata" -msgstr "XML metadáta" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "Keďže Váš prehliadač nepodporuje Javascript, musíte stlačiť tlačido nižšie pre pokračovanie." + +msgid "Some error occurred" +msgstr "Nastala nejaká chyba" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Stavová informácia stratená" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Stavová informácia stratená a požiadavku sa nedá reštartovať" + +msgid "Street" +msgstr "Ulica" + +msgid "Submit message" +msgstr "Odoslať správu" + +msgid "Superfluous options in config file" +msgstr "Zbytočné nastavenia v konfiguračnom súbore" + +msgid "Surname" +msgstr "Priezvisko" + +msgid "Telephone number" +msgstr "Telefónne číslo" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Poskytovateľ identity odpovedal chybou. (Kód stavu SAML odpovede nebol úspešný)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Autentifikácia bola prerušená užívateľom" + +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Detailné informácie nižšie môžu byť pre administrátora alebo podporu nápomocné:" + +msgid "The error report has been sent to the administrators." +msgstr "Správa o chybe bola odoslaná administrátorom." + +msgid "The following fields was not recognized" +msgstr "Nasledujúce údaje neboli rozpoznané" -msgid "Telephone number" -msgstr "Telefónne číslo" +msgid "The following optional fields was not found" +msgstr "Nasledujúce voliteľné údaje neboli nájdené" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Nepodarilo sa odhlásiť z jednej alebo viacerých služieb. Aby ste uistili, že sú všetky relácie zatvorené, je odporúčané zatvoriť Váš prehliadač." +msgid "The following required fields was not found" +msgstr "Nasledujúce povinné údaje neboli nájdené" -msgid "Group membership" -msgstr "Členstvo v skupine" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Stránka nebola nájdená. URL je: %URL%" -msgid "Entitlement regarding the service" -msgstr "Entitlement regarding the service" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Stránka nebola nájdená. Dôvod: %REASON% URL: %URL%" -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Informácia o aktuálnej operácii odhlásenia bola stratená. Mali by ste sa vrátiť do služby, z ktorej sa snažíte odhlásiť, a skúsiť to znovu. Táto chyba môže byť zapríčinená expiráciou odhlasovacích informácií. Odhlasovacie informácie sú uložené po určitý čas - zvyčajne pár hodín, čo je dlhšie, ako by mal odhlasovací proces trvať, takže táto chyba môže indikovať problém s konfiguráciou. Ak tento problém pretrváva, kontaktujte Vášho poskytovateľa služby." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Keďže ste v debug režime, zobrazuje sa Vám obsah správy, ktorú posielate:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Iniciátor tejto požiadavky neposkytol parameter RelayState indikujúci kam pokračovať ďalej." -msgid "Certificates" -msgstr "Certifikáty" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Parametre odoslané vyhľadávacej službe nie sú v súlade so špecifikáciou." -msgid "Remember" -msgstr "Zapamätať" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Jednoznačné meno (DN) užívateľovej domovskej organizácie" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Heslo v konfiguračnom súbore (auth.adminpassword) nie je zmenené z prednastavenej hodnoty. Zmeňte prosím konfiguračný súbor." -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Chystáte sa poslať správu. Kliknite na link odoslania správy pre pokračovanie." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "V požiadavke na túto stránku je chyba. Dôvod: %REASON%" -msgid "Organizational unit" -msgstr "Organizačná jednotka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Vo Vašej inštalácii SimpleSAMLphp je niečo zle nakonfigurované. Ak ste administrátor tejto služby, mali by ste sa uistiť, že konfigurácia metadát je správna." -msgid "Local identity number" -msgstr "Lokálne číslo identity" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Tento endpoint nie je aktivovaný. Skontrolujte aktivačné nastavenia v konfigurácii SimpleSAMLphp." -msgid "Change your home organization" -msgstr "Zmeniť Vašu domovskú organizáciu" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Táto chyba je pravdepodobne spôsobená nečakaným správaním alebo zlou konfiguráciou SimpleSAMLphp. Kontaktujte administrátorov tejto prihlasovacej služby s chybovou hláškou vyššie." -msgid "User's password hash" -msgstr "Hash hesla užívateľa" +msgid "Title" +msgstr "Nadpis" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "V SimpleSAMLphp formáte - toto použite, ak používate SimpleSAMLphp entitu na druhej strane:" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Pre detaily kliknite na hlavičku SAML entity." -msgid "Completed" -msgstr "Dokončené" +msgid "Tracking number" +msgstr "Sledovacie číslo" -msgid "Select configuration file to check:" -msgstr "Vyberte konfiguračný súbor na kontrolu:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Nepodarilo sa nájsť metadáta pre %ENTITYID%" -msgid "On hold" -msgstr "Podržané" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Nepodarilo sa odhlásiť z jednej alebo viacerých služieb. Aby ste uistili, že sú všetky relácie zatvorené, je odporúčané zatvoriť Váš prehliadač." -msgid "ADFS Identity Provider (Hosted)" -msgstr "ADFS Identity Provider (lokálne prevádzkovaný)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Help! I don't remember my password." -msgstr "Pomoc! Nepamätám si heslo." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Neočakávaná chyba" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Vypnúť ladiaci režim môžete v globálnom SimpleSAMLphp konfiguračnom súbore config/config.php." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Neznámy certifikát" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp chyba" +msgid "User ID" +msgstr "ID užívateľa" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Jedna alebo viacero služieb, do ktorých ste prihlásený, nepodporuje odhlásenie. Aby ste uistili, že sú všetky relácie zatvorené, je odporúčané zatvoriť Váš prehliadač." +msgid "User's password hash" +msgstr "Hash hesla užívateľa" -msgid "or select a file:" -msgstr "alebo vyberte súbor:" +msgid "Username" +msgstr "Prihlasovacie meno" -msgid "Remember me" -msgstr "Zapamätať si ma" +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP Demo" -msgid "Organization's legal name" -msgstr "Právny názov organizácie" +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation Identity Provider (vzdialené)" -msgid "Options missing from config file" -msgstr "Nastavenia chýbajúce v konfiguračnom súbore" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation Service Provider (lokálne prevádzkovaný)" -msgid "The following optional fields was not found" -msgstr "Nasledujúce voliteľné údaje neboli nájdené" +msgid "Warning" +msgstr "Upozornenie" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Môžete získať XML metadát na samostatnom odkaze:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Neakceptovali sme odpoveď odoslanú z poskytovateľa identity." -msgid "Street" -msgstr "Ulica" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Nastala chyba pri vytváraní autentifikačnej odpovede." -msgid "Message" -msgstr "Správa" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Bez prihlasovacieho mena a hesla sa nemôžete autentifikovať pre prístup do služby. Kontaktujte podporu Vašej organizácie." -msgid "Contact information:" -msgstr "Kontaktné informácie:" +msgid "World" +msgstr "Svet" -msgid "Legal name" -msgstr "Právny názov" +msgid "XML metadata" +msgstr "XML metadáta" -msgid "Optional fields" -msgstr "Voliteľné údaje" +msgid "Yes, all services" +msgstr "Áno, všetky služby" -msgid "You have previously chosen to authenticate at" -msgstr "V minulosti ste sa rozhodli autentifikovať cez " +msgid "Yes, continue" +msgstr "Áno, pokračovať" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "You sent something to the login page, but for some reason the password was not sent. Try again please." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "Pristúpili ste k Artifact Resolution Service rozhraní, ale neposkytli ste SAML ArtifactResolve správu. Berte prosím na vedomie, že tento endpoint nie je určený na priamy prístup." -msgid "Fax number" -msgstr "Číslo faxu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Pristúpili ste k Assertion Consumer Service rozhraní, ale neposkytli ste SAML Authentication Response. Berte prosím na vedomie, že tento endpoint nie je určený na priamy prístup." -msgid "Shibboleth demo" -msgstr "Shibboleth demo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "Pristúpili ste k Single Sign On Service rozhraní, ale neposkytli ste SAML Authentication Request. Berte prosím na vedomie, že tento endpoint nie je určený na priamy prístup." -msgid "Error in this metadata entry" -msgstr "Chyba v tomto metadáta zázname" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Pristúpili ste k SingleLogoutService rozhraní, ale neposkytli ste SAML LogoutRequest alebo LogoutResponse. Berte prosím na vedomie, že tento endpoint nie je určený na priamy prístup." -msgid "Session size: %SIZE%" -msgstr "Veľkosť relácie: %SIZE%" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Chystáte sa poslať správu. Kliknite na tlačidlo odoslania pre pokračovanie." -msgid "Parse" -msgstr "Parsovať" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Chystáte sa poslať správu. Kliknite na link odoslania správy pre pokračovanie." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Bez prihlasovacieho mena a hesla sa nemôžete autentifikovať pre prístup do služby. Kontaktujte podporu Vašej organizácie." +msgid "You are also logged in on these services:" +msgstr "Ste taktiež prihlásený do týchto služieb:" -msgid "ADFS Service Provider (Remote)" -msgstr "ADFS Service Provider (vzdialené)" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Práve pristupujete k predprodukčnému systému. Toto autentifikačné prostredie je určené len pre testovanie a predporodukčnú verifikáciu. Ak Vám niekto poslal link, ktorý Vás sem dostal, a nie ste tester, pravdepodobne máte zlý link a nemali by ste tu byť." -msgid "Choose your home organization" -msgstr "Vyberte si domovskú organizáciu" +msgid "You are now successfully logged out from %SP%." +msgstr "Úspešne ste sa odhlásili z %SP%." -msgid "Send e-mail to help desk" -msgstr "Odoslať e-mail na podporu" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Môžete získať XML metadát na samostatnom odkaze:" -msgid "Metadata overview" -msgstr "Prehľad metadát" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Vypnúť ladiaci režim môžete v globálnom SimpleSAMLphp konfiguračnom súbore config/config.php." -msgid "Title" -msgstr "Nadpis" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Neposkytli ste platný certifikát." -msgid "Manager" -msgstr "Manažér" +msgid "You have been logged out." +msgstr "Boli ste odhlásený." -msgid "Affiliation at home organization" -msgstr "Vzťah k domovskej organizácii" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Vybrali ste si %HOMEORG% ako svoju domovskú organizáciu. Ak toto nie je správne, môžete vybrať inú." -msgid "Help desk homepage" -msgstr "Domovská stránka podpory" +msgid "You have previously chosen to authenticate at" +msgstr "V minulosti ste sa rozhodli autentifikovať cez " -msgid "Configuration check" -msgstr "Kontrola konfigurácie" +msgid "You have successfully logged out from all services listed above." +msgstr "Úspešne ste sa odhlásili zo všetkých služieb vyššie." -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Identity Provider (vzdialené)" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Tu sú metadáta, ktoré SimpleSAMLphp vygeneroval. Možno budete musieť odoslať tento dokument metadát dôveryhodným partnerom na nastavenie dôveryhodnej federácie." +msgid "Your attributes" +msgstr "Vaše atribúty" -msgid "Organizational homepage" -msgstr "Domovská stránka organizácie" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "Vaše dáta relácie sa nedajú momentálne získať kvôli technickým problémom. Skúste to prosím o pár minút." -msgid "Processing..." -msgstr "Spracovávanie..." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Vaša relácia je platná ešte %remaining% sekúnd." -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Práve pristupujete k predprodukčnému systému. Toto autentifikačné prostredie je určené len pre testovanie a predporodukčnú verifikáciu. Ak Vám niekto poslal link, ktorý Vás sem dostal, a nie ste tester, pravdepodobne máte zlý link a nemali by ste tu byť." +msgid "[Preferred choice]" +msgstr "[Preferovaná voľba]" -msgid "Logo" -msgstr "Logo" +msgid "not set" +msgstr "nenastavené" + +msgid "or select a file:" +msgstr "alebo vyberte súbor:" diff --git a/locales/sl/LC_MESSAGES/messages.po b/locales/sl/LC_MESSAGES/messages.po index 06d66a731f..f3e964e5a1 100644 --- a/locales/sl/LC_MESSAGES/messages.po +++ b/locales/sl/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Nobenega odgovora za SAML ni na voljo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "SAML sporočilo ni na voljo" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Storitev zahteva, da se prijavite. To pomeni, da je potreben vnos uporabniškega imena in gesla v spodnji polji." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Vloga uporabnika" + +msgid "Affiliation at home organization" +msgstr "Vloga v organizaciji" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Pri ustvarjanju SAML zahteve je prišlo do napake." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Pri obdelavi zahteve za odjavo je prišlo do napake." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Zagnana je bila nedefinirana izjema." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Ste v debug načinu, lahko si ogledate vsebino sporočila, ki ga pošiljate" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Avtentikacija prekinjena" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Napaka v avtentikacijskem viru: %AUTHSOURCE%. Opis napake: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Avtentikacija je spodletela: vaš spletni brskalnik je posredoval neveljavno digitalno potrdilo ali pa ga ni moč prebrati!" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Avtentikacija je spodletela: vaš spletni brskalnik je posredoval nepoznano digitalno potrdilo" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Avtentikacija je spodletela: vaš spletni brskalnik ni posredoval digitalnega potrdila!" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Napaka v avtentikacijskem viru" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Napaka v prejetem zahtevku." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Zahteva, ki je bila poslana \"Discovery service-u\" je napačna." + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS napaka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Digitalna potrdila" + +msgid "Change your home organization" +msgstr "Izberite vašo domačo organizacijo." + +msgid "Choose home organization" +msgstr "Izberite domačo organizacijo." + +msgid "Choose your home organization" +msgstr "Izberite vašo domačo organizacijo" + +msgid "Common name" +msgstr "Ime in priimek" + +msgid "Completed" +msgstr "Dokončano" + +msgid "Configuration check" +msgstr "Preverjanje konfiguracije" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Napaka v nastavitvah" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Napaka pri ustvarjanju zahteve" +msgid "Contact information:" +msgstr "Kontakt" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Zahteva, ki je bila poslana \"Discovery service-u\" je napačna." +msgid "Converted metadata" +msgstr "Pretvorjeni metapodatki" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Odgovora za odjavo ni bilo mogoče ustvariti" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Napačen certifikat" +msgid "Date of birth" +msgstr "Datum rojstva" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Napaka LDAP-a" +msgid "Debug information" +msgstr "Pomoč pri odpravljanju napak (debug)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Odjavni (Logout) parametri niso na voljo." +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Napaka pri obdelavi zahteve za odjavo" +msgid "Display name" +msgstr "Prikazno ime" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Napaka pri nalaganju metapodatkov" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Ime domače organizacije (DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metapodatkov ni bilo moč najti" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Ime (DN) oddelka v domači organizaciji" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Ni dostopa" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Ime oddelka domače organizacije (DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Ni digitalnega potrdila" +msgid "Do you want to logout from all the services above?" +msgstr "Ali se želite odjaviti z vseh naštetih storitev?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "RelayState parameter ne obstaja" +msgid "Domain component (DC)" +msgstr "Domenska komponenta (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Podatki o stanju so izgubljeni" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Prenesi X509 digitalno potrdilo v PEM datoteki." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Strani ni bilo mogoče najti." +msgid "E-mail address:" +msgstr "Elektronski naslov:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Geslo ni nastavljeno" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Uporabnika s tem uporabniškim imenom ni bilo mogoče najti ali pa je vpisano geslo napačno. Preverite svoje uporabniško ime in poskusite znova." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Pri obdelavi odgovora IdP-ja je prišlo do napake" +msgid "Enter your username and password" +msgstr "Vnesite svoje uporabniško ime in geslo" + +msgid "Entitlement regarding the service" +msgstr "Upravičenost do storitve" + +msgid "Error" +msgstr "Napaka" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Napaka pri ustvarjanju zahteve" + +msgid "Error in this metadata entry" +msgstr "Napaka pri vnosu metapodatkov" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Napaka pri nalaganju metapodatkov" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Napaka pri obdelavi zahteve SP" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Pri obdelavi odgovora IdP-ja je prišlo do napake" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Napaka pri obdelavi zahteve za odjavo" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Napaka na IdP" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Nedefinirana izjema." +msgid "Error report sent" +msgstr "Poročilo o napaki je bilo poslano" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Nepoznano digitalno potrdilo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Napaka pri komunikaciji s CAS strežnikom." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Avtentikacija prekinjena" +msgid "Explain what you did when this error occurred..." +msgstr "Opišite, kako je prišlo do napake..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Napačno uporabniško ime ali geslo" +msgid "Fax number" +msgstr "Fax" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Dostopili ste do \"Assertion Consumer Service\" vmesnika, ampak niste zagotovili \"SAML Authentication Responsa\"." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Napaka v avtentikacijskem viru: %AUTHSOURCE%. Opis napake: %REASON%" +msgid "Given name" +msgstr "Ime" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Prišlo je do napake pri prejetem zahtevku. Razlog: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Nazaj na namestitveno stran SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Napaka pri komunikaciji s CAS strežnikom." +msgid "Go back to the file list" +msgstr "Vrnite se na seznam datotek" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Nastavitve SimpleSAMLphp so napačne ali se med seboj izključujejo." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Pri ustvarjanju SAML zahteve je prišlo do napake." +msgid "Help desk homepage" +msgstr "Spletna stran tehnične podpore uporabnikom." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Parametri, ki so bili poslani \"Discovery service-u\", ne ustrezajo specifikaciji." +msgid "Help! I don't remember my password." +msgstr "Na pomoč! Pozabil sem svoje geslo." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Ko je IdP želel ustvariti odgovor o prijavi, je prišlo do napake." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Tu so metapodatki, ki jih je generiral SimpleSAMLphp. Dokument lahko pošljete zaupanja vrednim partnerjem, s katerimi boste ustvarili federacijo." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Avtentikacija je spodletela: vaš spletni brskalnik je posredoval neveljavno digitalno potrdilo ali pa ga ni moč prebrati!" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Živjo! To je statusna stran SimpleSAMLphp, ki omogoča pregled nad trajanjem vaše trenutne seje in atributi, ki so povezani z njo." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP je zbirka uporabnikov. Ko se želite prijaviti, je potrebno prijavo preveriti v LDAPu. Pri trenutnem preverjanju je prišlo do napake." +msgid "Home organization domain name" +msgstr "ID domače organizacije" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Odjavni (Logout) parametri niso na voljo. Vrnite se na storitev, ki ste jo pravkar uporabljali in se ponovno poskusite odjaviti. Napaka je posledica poteka veljavnosti seje." +msgid "Home postal address" +msgstr "Domači naslov" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Pri obdelavi zahteve za odjavo je prišlo do napake." +msgid "Home telephone" +msgstr "Domača telefonska številka" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "V konfiguraciji SimpleSAMLphp-ja je napaka. Če ste skrbnik te storitve, preverite, da je konfiguracija metapodatkov pravilna." +msgid "How to get help" +msgstr "Kje lahko najdem pomoč?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Metapodatkov za %ENTITYID% ni bilo moč najti" +msgid "Identity assurance profile" +msgstr "Stopnja zanesljivosti" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Ta končna točka ni omogočena. Preverite možnost omogočanja storitve v konfiguraciji SimpleSAMLphp-ja." +msgid "Identity number assigned by public authorities" +msgstr "Matična številka" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Avtentikacija je spodletela: vaš spletni brskalnik ni posredoval digitalnega potrdila!" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Če boste prijavili to napako, priložite tudi ID seje, preko katere bo lažje najti vaše zapise v dnevniških datotekah, ki so na voljo skrbniku sistema." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Pobudnik te zahteve ni posredoval RelayState parametra." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "V SAML 2.0 Metapodatkovni XML format:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Podatki o stanju so izgubljeni, zato zahteve ni mogoče obnoviti/ponovno zagnati." +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "V SimpleSAMLphp \"flat file\" formatu - ta format uporabite, če uporabljate SimpleSAMLphp entiteto na drugi strani:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Strani ni bilo mogoče najti. Naveden URL strani je bil: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Napačno uporabniško ime ali geslo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Strani ni bilo mogoče najti. Razlog: %REASON%. Naveden URL strani je bil: %URL%" +msgid "Incorrect username or password." +msgstr "Napačno uporabniško ime ali geslo!" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "V nastavitvah je geslo skrbnika (auth.adminpassword) še vedno nastavljeno na začetno vrednost. Spremenite ga!" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Posredovan certifikat je neveljaven" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Napačen certifikat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Odgovor, poslan od IdP-ja, ni bil sprejet." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "IdP je prejel avtenticirano zahtevo SP-ja, vendar je prišlo do napake pri obdelavi te zahteve." +msgid "JPEG Photo" +msgstr "JPEG Slika" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Odziv IdP vsebuje napako (\"SAML-Response\" ni uspel)! " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Napaka LDAP-a" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Dostopili ste do SingleLogoutService vmesnika, ampak niste zagotovili SAML LogoutRequest ali LogoutResponse." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP je zbirka uporabnikov. Ko se želite prijaviti, je potrebno prijavo preveriti v LDAPu. Pri trenutnem preverjanju je prišlo do napake." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Zagnana je bila nedefinirana izjema." +msgid "Labeled URI" +msgstr "Označen URI" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Avtentikacija je spodletela: vaš spletni brskalnik je posredoval nepoznano digitalno potrdilo" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Avtentikacija prekinjena na zahtevo uporabnika" +msgid "Legal name" +msgstr "Uradno ime" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Uporabnika s tem uporabniškim imenom ni bilo mogoče najti ali pa je vpisano geslo napačno. Preverite svoje uporabniško ime in poskusite znova." +msgid "Local identity number" +msgstr "Vpisna številka" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Živjo! To je statusna stran SimpleSAMLphp, ki omogoča pregled nad trajanjem vaše trenutne seje in atributi, ki so povezani z njo." +msgid "Locality" +msgstr "Kraj" -msgid "Logout" -msgstr "Odjava" +msgid "Logged out" +msgstr "Odjavljen" -msgid "Your attributes" -msgstr "Vaši atributi" +msgid "Logging out of the following services:" +msgstr "Odjava iz naslednjih storitev:" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Vaša trenutna seja je veljavna še %remaining% sekund." +msgid "Logging out..." +msgstr "Odjavljanje..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Izberite IdP, na katerem se boste avtenticirali:" +msgid "Login" +msgstr "Prijava" -msgid "Remember my choice" -msgstr "Shrani kot privzeto izbiro" +msgid "Login at" +msgstr "Prijavi se pri" -msgid "Select" -msgstr "Izberite" +msgid "Logout" +msgstr "Odjava" -msgid "Select your identity provider" -msgstr "Izberite IdP domače organizacije" +msgid "Logout failed" +msgstr "Odjava je spodletela." -msgid "Sending message" -msgstr "Pošiljanje sporočila" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Odjavni (Logout) parametri niso na voljo." -msgid "Yes, continue" -msgstr "Da, nadaljuj" +msgid "Mail" +msgstr "Elektronski naslov" -msgid "Debug information" -msgstr "Pomoč pri odpravljanju napak (debug)" +msgid "Manager" +msgstr "Menedžer" -msgid "E-mail address:" -msgstr "Elektronski naslov:" +msgid "Message" +msgstr "Sporočilo" -msgid "Explain what you did when this error occurred..." -msgstr "Opišite, kako je prišlo do napake..." +msgid "Metadata" +msgstr "Metapodatki" -msgid "How to get help" -msgstr "Kje lahko najdem pomoč?" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metapodatkov ni bilo moč najti" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Če boste prijavili to napako, priložite tudi ID seje, preko katere bo lažje najti vaše zapise v dnevniških datotekah, ki so na voljo skrbniku sistema." +msgid "Metadata overview" +msgstr "Pregled metapodatkov" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Če želite, vnesite elektronski naslov, na katerem boste dosegljivi v primeru dodatnih vprašanj za skrbnika sistema :" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "Prijavi napake" +msgid "Mobile" +msgstr "Mobilni telefon" -msgid "Send error report" -msgstr "Pošlji poročilo o napaki" +msgid "Next" +msgstr "Naprej" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Podatki o odpravljanju napak bodo zanimali skrbnika/helpdesk:" +msgid "Nickname" +msgstr "Vzdevek" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Ta napaka je verjetno posledica nepravilne konfiguracije SimpleSAMLphp-ja. Obrnite se na skrbnika in mu posredujte to napako." +msgid "No" +msgstr "Ne" -msgid "[Preferred choice]" -msgstr "Prioritetna izbira" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "RelayState parameter ne obstaja" -msgid "Person's principal name at home organization" -msgstr "ID uporabnika na domači organizaciji" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "SAML sporočilo ni na voljo" -msgid "Superfluous options in config file" -msgstr "Odvečne nastavitve v konfiguracijski datoteki" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "Mobilni telefon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Nobenega odgovora za SAML ni na voljo" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 SP (Lokalni)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Ni dostopa" -msgid "Display name" -msgstr "Prikazno ime" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Ni digitalnega potrdila" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP Metapodatki" +msgid "No errors found." +msgstr "Ni napak" + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Ne" + +msgid "No, only %SP%" +msgstr "Ne, odjavi me samo z naslednjega %SP%" msgid "Notices" msgstr "Obvestila" -msgid "Home telephone" -msgstr "Domača telefonska številka" +msgid "On hold" +msgstr "V teku" -msgid "Service Provider" -msgstr "Ponudnik storitev" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Ena ali več storitev, v katere ste prijavljeni, ne omogoča odjave. Odjavo iz teh storitev izvedete tako, da zaprete spletni brskalnik." + +msgid "Optional fields" +msgstr "Neobvezna polja" -msgid "Incorrect username or password." -msgstr "Napačno uporabniško ime ali geslo!" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Če želite, vnesite elektronski naslov, na katerem boste dosegljivi v primeru dodatnih vprašanj za skrbnika sistema :" -msgid "Submit message" -msgstr "Pošlji sporočilo" +msgid "Options missing from config file" +msgstr "V konfiguracijski datoteki manjkajo nastavitve" -msgid "Locality" -msgstr "Kraj" +msgid "Organization" +msgstr "Organizacija" -msgid "The following required fields was not found" -msgstr "Naslednjih zahtevanih polj ni bilo mogoče najti" +msgid "Organization name" +msgstr "Ime organizacije" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Prenesi X509 digitalno potrdilo v PEM datoteki." +msgid "Organization's legal name" +msgstr "Naziv organizacije" + +msgid "Organizational homepage" +msgstr "Spletna stran organizacije" msgid "Organizational number" msgstr "Organizacijska številka" -msgid "Post office box" -msgstr "Poštni predal" +msgid "Organizational unit" +msgstr "Oddelek" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Storitev zahteva, da se prijavite. To pomeni, da je potreben vnos uporabniškega imena in gesla v spodnji polji." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Strani ni bilo mogoče najti." -msgid "Error" -msgstr "Napaka" +msgid "Parse" +msgstr "Sintaktična analiza (parse)" -msgid "Next" -msgstr "Naprej" +msgid "Password" +msgstr "Geslo" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Ime oddelka domače organizacije (DN)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Geslo ni nastavljeno" -msgid "Converted metadata" -msgstr "Pretvorjeni metapodatki" +msgid "Persistent pseudonymous ID" +msgstr "Trajni anonimni ID" -msgid "Mail" -msgstr "Elektronski naslov" +msgid "Person's principal name at home organization" +msgstr "ID uporabnika na domači organizaciji" -msgid "No, cancel" -msgstr "Ne" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Izberite IdP, na katerem se boste avtenticirali:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Izbrali ste %HOMEORG% kot vašo domačo organizacijo. V primeru da je izbor napačen, izberite drugo." +msgid "Post office box" +msgstr "Poštni predal" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Ime (DN) oddelka v domači organizaciji" +msgid "Postal address" +msgstr "Poštni naslov" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Za pregled podrobnosti SAML entitete, kliknite na glavo te entitete" +msgid "Postal code" +msgstr "Poštna številka" -msgid "Enter your username and password" -msgstr "Vnesite svoje uporabniško ime in geslo" +msgid "Preferred language" +msgstr "Želen jezik" -msgid "Login at" -msgstr "Prijavi se pri" +msgid "Primary affiliation" +msgstr "Primarna vloga" -msgid "No" -msgstr "Ne" +msgid "Private information elements" +msgstr "Zasebni informacijski elementi" -msgid "Home postal address" -msgstr "Domači naslov" +msgid "Remember" +msgstr "Zapomni si privolitev." -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP demo primer" +msgid "Remember my choice" +msgstr "Shrani kot privzeto izbiro" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 IdP (Oddaljeni)" +msgid "Report errors" +msgstr "Prijavi napake" -msgid "Do you want to logout from all the services above?" -msgstr "Ali se želite odjaviti z vseh naštetih storitev?" +msgid "Required fields" +msgstr "Zahtevana polja" -msgid "Given name" -msgstr "Ime" +msgid "Return to service" +msgstr "Vrni se nazaj na storitev." -msgid "Identity assurance profile" -msgstr "Stopnja zanesljivosti" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 IdP (Lokalni)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 IdP (Oddaljeni)" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP Demo primer" -msgid "Organization name" -msgstr "Ime organizacije" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Sporočilo boste poslali s klikom na gumb za pošiljanje." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP Metapodatki" -msgid "Home organization domain name" -msgstr "ID domače organizacije" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 SP (Lokalni)" -msgid "Go back to the file list" -msgstr "Vrnite se na seznam datotek" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Poročilo o napaki je bilo poslano" +msgid "Select" +msgstr "Izberite" -msgid "Common name" -msgstr "Ime in priimek" +msgid "Select configuration file to check:" +msgstr "Izberite konfiguracijsko datoteko, ki jo želite preveriti" -msgid "Logout failed" -msgstr "Odjava je spodletela." +msgid "Select your identity provider" +msgstr "Izberite IdP domače organizacije" -msgid "Identity number assigned by public authorities" -msgstr "Matična številka" +msgid "Send e-mail to help desk" +msgstr "Pošlji sporočilo tehnični podpori." -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation Idp (Oddaljni)" +msgid "Send error report" +msgstr "Pošlji poročilo o napaki" -msgid "Some error occurred" -msgstr "Prišlo je do napake!" +msgid "Sending message" +msgstr "Pošiljanje sporočila" -msgid "Organization" -msgstr "Organizacija" +msgid "Service Provider" +msgstr "Ponudnik storitev" -msgid "Choose home organization" -msgstr "Izberite domačo organizacijo." +msgid "Session size: %SIZE%" +msgstr "Velikost seje: %SIZE% bajtov" -msgid "Persistent pseudonymous ID" -msgstr "Trajni anonimni ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metapodatki" -msgid "No errors found." -msgstr "Ni napak" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 SP (Lokalni)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 SP (Lokalni)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 SP (Oddaljeni)" -msgid "Required fields" -msgstr "Zahtevana polja" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metapodatki" -msgid "Domain component (DC)" -msgstr "Domenska komponenta (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 SP (Lokalni)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 SP (Oddaljeni)" -msgid "Password" -msgstr "Geslo" - -msgid "Nickname" -msgstr "Vzdevek" - -msgid "The error report has been sent to the administrators." -msgstr "Poročilo o napaki je bilo poslano skrbnikom sistema." - -msgid "Date of birth" -msgstr "Datum rojstva" - -msgid "Private information elements" -msgstr "Zasebni informacijski elementi" - -msgid "You are also logged in on these services:" -msgstr "Prijavljeni ste v naslednje storitve:" +msgid "Shibboleth demo" +msgstr "Shibboleth demo primer" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp diagnostika" -msgid "No, only %SP%" -msgstr "Ne, odjavi me samo z naslednjega %SP%" - -msgid "Username" -msgstr "Uporabniško ime" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Nastavitve SimpleSAMLphp so napačne ali se med seboj izključujejo." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Nazaj na namestitveno stran SimpleSAMLphp" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp napaka" -msgid "You have successfully logged out from all services listed above." -msgstr "Uspešno ste se odjavili z vseh naštetih storitev." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Uspešno ste se odjavili s ponudnika storitev: %SP%" +msgid "Some error occurred" +msgstr "Prišlo je do napake!" -msgid "Affiliation" -msgstr "Vloga uporabnika" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Podatki o stanju so izgubljeni" -msgid "You have been logged out." -msgstr "Odjava je bila uspešna. Hvala, ker uporabljate to storitev." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Podatki o stanju so izgubljeni, zato zahteve ni mogoče obnoviti/ponovno zagnati." -msgid "Return to service" -msgstr "Vrni se nazaj na storitev." +msgid "Street" +msgstr "Ulica" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Fedration SP (Lokalni)" +msgid "Submit message" +msgstr "Pošlji sporočilo" -msgid "Preferred language" -msgstr "Želen jezik" +msgid "Superfluous options in config file" +msgstr "Odvečne nastavitve v konfiguracijski datoteki" msgid "Surname" msgstr "Priimek" -msgid "The following fields was not recognized" -msgstr "Nepoznana polja" - -msgid "User ID" -msgstr "Uporabniško ime" +msgid "Telephone number" +msgstr "Telefonska številka" -msgid "JPEG Photo" -msgstr "JPEG Slika" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Odziv IdP vsebuje napako (\"SAML-Response\" ni uspel)! " -msgid "Postal address" -msgstr "Poštni naslov" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Avtentikacija prekinjena na zahtevo uporabnika" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "V SAML 2.0 Metapodatkovni XML format:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Podatki o odpravljanju napak bodo zanimali skrbnika/helpdesk:" -msgid "Logging out of the following services:" -msgstr "Odjava iz naslednjih storitev:" +msgid "The error report has been sent to the administrators." +msgstr "Poročilo o napaki je bilo poslano skrbnikom sistema." -msgid "Labeled URI" -msgstr "Označen URI" +msgid "The following fields was not recognized" +msgstr "Nepoznana polja" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 SP (Lokalni)" +msgid "The following optional fields was not found" +msgstr "Naslednjih neobveznih polj ni bilo mogoče najti" -msgid "Metadata" -msgstr "Metapodatki" +msgid "The following required fields was not found" +msgstr "Naslednjih zahtevanih polj ni bilo mogoče najti" -msgid "Login" -msgstr "Prijava" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Strani ni bilo mogoče najti. Naveden URL strani je bil: %URL%" -msgid "Yes, all services" -msgstr "Da, odjavi me z vseh storitev" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Strani ni bilo mogoče najti. Razlog: %REASON%. Naveden URL strani je bil: %URL%" -msgid "Logged out" -msgstr "Odjavljen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Odjavni (Logout) parametri niso na voljo. Vrnite se na storitev, ki ste jo pravkar uporabljali in se ponovno poskusite odjaviti. Napaka je posledica poteka veljavnosti seje." -msgid "Postal code" -msgstr "Poštna številka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Pobudnik te zahteve ni posredoval RelayState parametra." -msgid "Logging out..." -msgstr "Odjavljanje..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Parametri, ki so bili poslani \"Discovery service-u\", ne ustrezajo specifikaciji." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 IdP (Lokalni)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Primarna vloga" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "V nastavitvah je geslo skrbnika (auth.adminpassword) še vedno nastavljeno na začetno vrednost. Spremenite ga!" -msgid "XML metadata" -msgstr "XML metapodatki" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Prišlo je do napake pri prejetem zahtevku. Razlog: %REASON%" -msgid "Telephone number" -msgstr "Telefonska številka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "V konfiguraciji SimpleSAMLphp-ja je napaka. Če ste skrbnik te storitve, preverite, da je konfiguracija metapodatkov pravilna." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Odjava z ene ali več storitev ni uspela. Odjavo dokončajte tako, da zaprete spletni brskalnik." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "IdP je prejel avtenticirano zahtevo SP-ja, vendar je prišlo do napake pri obdelavi te zahteve." -msgid "Entitlement regarding the service" -msgstr "Upravičenost do storitve" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Ta končna točka ni omogočena. Preverite možnost omogočanja storitve v konfiguraciji SimpleSAMLphp-ja." -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Metapodatki" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Ta napaka je verjetno posledica nepravilne konfiguracije SimpleSAMLphp-ja. Obrnite se na skrbnika in mu posredujte to napako." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Ste v debug načinu, lahko si ogledate vsebino sporočila, ki ga pošiljate" +msgid "Title" +msgstr "Naziv" -msgid "Certificates" -msgstr "Digitalna potrdila" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Za pregled podrobnosti SAML entitete, kliknite na glavo te entitete" -msgid "Remember" -msgstr "Zapomni si privolitev." +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Ime domače organizacije (DN)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Metapodatkov za %ENTITYID% ni bilo moč najti" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Sporočilo boste poslali s klikom na gumb za pošiljanje." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Odjava z ene ali več storitev ni uspela. Odjavo dokončajte tako, da zaprete spletni brskalnik." -msgid "Organizational unit" -msgstr "Oddelek" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Vpisna številka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Nedefinirana izjema." -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Metapodatki" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Nepoznano digitalno potrdilo" -msgid "Change your home organization" -msgstr "Izberite vašo domačo organizacijo." +msgid "User ID" +msgstr "Uporabniško ime" msgid "User's password hash" msgstr "Uporabnikovo zgoščeno geslo" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "V SimpleSAMLphp \"flat file\" formatu - ta format uporabite, če uporabljate SimpleSAMLphp entiteto na drugi strani:" - -msgid "Completed" -msgstr "Dokončano" - -msgid "Select configuration file to check:" -msgstr "Izberite konfiguracijsko datoteko, ki jo želite preveriti" - -msgid "On hold" -msgstr "V teku" +msgid "Username" +msgstr "Uporabniško ime" -msgid "Help! I don't remember my password." -msgstr "Na pomoč! Pozabil sem svoje geslo." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP demo primer" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Debug način lahko izklopite v globalni SimpleSAMLphp konfiguracijski datoteki config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation Idp (Oddaljni)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp napaka" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Fedration SP (Lokalni)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Ena ali več storitev, v katere ste prijavljeni, ne omogoča odjave. Odjavo iz teh storitev izvedete tako, da zaprete spletni brskalnik." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Naziv organizacije" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Odgovor, poslan od IdP-ja, ni bil sprejet." -msgid "Options missing from config file" -msgstr "V konfiguracijski datoteki manjkajo nastavitve" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Ko je IdP želel ustvariti odgovor o prijavi, je prišlo do napake." -msgid "The following optional fields was not found" -msgstr "Naslednjih neobveznih polj ni bilo mogoče najti" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Žal se brez uporabniškega imena in gesla ne morete prijaviti in uporabljati storitev." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "XML metapodatki se nahajajo na tem naslovu:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Ulica" +msgid "XML metadata" +msgstr "XML metapodatki" -msgid "Message" -msgstr "Sporočilo" +msgid "Yes, all services" +msgstr "Da, odjavi me z vseh storitev" -msgid "Contact information:" -msgstr "Kontakt" +msgid "Yes, continue" +msgstr "Da, nadaljuj" -msgid "Legal name" -msgstr "Uradno ime" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Neobvezna polja" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Dostopili ste do \"Assertion Consumer Service\" vmesnika, ampak niste zagotovili \"SAML Authentication Responsa\"." -msgid "You have previously chosen to authenticate at" -msgstr "Predhodnje ste se prijavljali že pri" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Prišlo je do napake, poskusite znova." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Dostopili ste do SingleLogoutService vmesnika, ampak niste zagotovili SAML LogoutRequest ali LogoutResponse." -msgid "Fax number" -msgstr "Fax" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Sporočilo boste poslali s klikom na gumb za pošiljanje." -msgid "Shibboleth demo" -msgstr "Shibboleth demo primer" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Sporočilo boste poslali s klikom na gumb za pošiljanje." -msgid "Error in this metadata entry" -msgstr "Napaka pri vnosu metapodatkov" +msgid "You are also logged in on these services:" +msgstr "Prijavljeni ste v naslednje storitve:" -msgid "Session size: %SIZE%" -msgstr "Velikost seje: %SIZE% bajtov" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Dostopate do predprodukcijskega sistema, ki je namenjen izključno preizkušanju. V primeru da ste pristali na tej strani med postopkom prijave v produkcijsko storitev, je storitev verjetno napačno nastavljena." -msgid "Parse" -msgstr "Sintaktična analiza (parse)" +msgid "You are now successfully logged out from %SP%." +msgstr "Uspešno ste se odjavili s ponudnika storitev: %SP%" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Žal se brez uporabniškega imena in gesla ne morete prijaviti in uporabljati storitev." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "XML metapodatki se nahajajo na tem naslovu:" -msgid "Choose your home organization" -msgstr "Izberite vašo domačo organizacijo" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Debug način lahko izklopite v globalni SimpleSAMLphp konfiguracijski datoteki config/config.php." -msgid "Send e-mail to help desk" -msgstr "Pošlji sporočilo tehnični podpori." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Posredovan certifikat je neveljaven" -msgid "Metadata overview" -msgstr "Pregled metapodatkov" +msgid "You have been logged out." +msgstr "Odjava je bila uspešna. Hvala, ker uporabljate to storitev." -msgid "Title" -msgstr "Naziv" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Izbrali ste %HOMEORG% kot vašo domačo organizacijo. V primeru da je izbor napačen, izberite drugo." -msgid "Manager" -msgstr "Menedžer" +msgid "You have previously chosen to authenticate at" +msgstr "Predhodnje ste se prijavljali že pri" -msgid "Affiliation at home organization" -msgstr "Vloga v organizaciji" +msgid "You have successfully logged out from all services listed above." +msgstr "Uspešno ste se odjavili z vseh naštetih storitev." -msgid "Help desk homepage" -msgstr "Spletna stran tehnične podpore uporabnikom." +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Prišlo je do napake, poskusite znova." -msgid "Configuration check" -msgstr "Preverjanje konfiguracije" +msgid "Your attributes" +msgstr "Vaši atributi" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 SP (Oddaljeni)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Tu so metapodatki, ki jih je generiral SimpleSAMLphp. Dokument lahko pošljete zaupanja vrednim partnerjem, s katerimi boste ustvarili federacijo." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Vaša trenutna seja je veljavna še %remaining% sekund." -msgid "Organizational homepage" -msgstr "Spletna stran organizacije" +msgid "[Preferred choice]" +msgstr "Prioritetna izbira" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Dostopate do predprodukcijskega sistema, ki je namenjen izključno preizkušanju. V primeru da ste pristali na tej strani med postopkom prijave v produkcijsko storitev, je storitev verjetno napačno nastavljena." +msgid "not set" +msgstr "" diff --git a/locales/sr/LC_MESSAGES/messages.po b/locales/sr/LC_MESSAGES/messages.po index f3644f8214..7b60b33842 100644 --- a/locales/sr/LC_MESSAGES/messages.po +++ b/locales/sr/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Nije dostavljen SAML odgovor" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Nije dostavljena SAML poruka" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Servis zahteva od vas da se autentifikujete. Unesite vaše korisničko ime i lozinku u dole navedena polja." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Povezanost sa institucijom" + +msgid "Affiliation at home organization" +msgstr "Povezanost sa institucijom sa domenom" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Desila se greška prilikom pokušaja kreiranja SAML zahteva." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Došlo je do greške prilikom pokušaja obrade zahteva za odjavom." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Pojavila se greška koja ne može do kraja biti obrađena." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Obzirom da ste u debug modu, imate mogućnost videti sadržaj poruke koju šaljete:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Proces autentifikacije je prekinut" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Došlo je do greške u autentifikacionom modulu %AUTHSOURCE%. Razlog: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Neuspešna autentifikacija: digitalni sertifikat koji je poslao vaš web pretraživač nije ispravan ili se ne može pročitati" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Neuspešna autentifikacija: digitalni sertifikat koji je poslao vaš web pretraživač je nepoznat" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Neuspešna autentifikacija: vaš web pretraživač nije poslao digitalni sertifikat" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Greška u autentifikacionom modulu" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Dobijeni zahtev nije ispravan" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Servisu za lociranje poslat je neispravan zahtev" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS greška" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Sertifikati" + +msgid "Change your home organization" +msgstr "Promenite izbor za vašu matičnu instituciju" + +msgid "Choose home organization" +msgstr "Izaberite matičnu instituciju" + +msgid "Choose your home organization" +msgstr "Izaberite vašu matičnu instituciju" + +msgid "Common name" +msgstr "Ime i Prezime" + +msgid "Completed" +msgstr "Završeno" + +msgid "Configuration check" +msgstr "Provera podešavanja" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Greška u podešavanjima" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Greška pri kreiranju zahteva" +msgid "Contact information:" +msgstr "Kontakt podaci:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Servisu za lociranje poslat je neispravan zahtev" +msgid "Converted metadata" +msgstr "Konvertovani metapodaci" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Autentifikacioni odgovor nije mogao biti kreiran" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Neispravan sertifikat" +msgid "Date of birth" +msgstr "Datum rođenja" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP greška" +msgid "Debug information" +msgstr "Informacije o greški" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Informacija o odjavljivanju je izgubljena" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Greška pri obradi zahteva za odjavu" +msgid "Display name" +msgstr "Ime za prikaz" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Greška prilikom učitavanja metapodataka" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Jedinstveni naziv (DN) korisnikove matične institucije" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metapodaci nisu pronađeni" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Jedinstveni naziv (DN) korisnikove primarne organizacione jedinice" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Pristup nije dozvoljen" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Jedinstveni naziv (DN) korisnikove organizacione jedinice" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Nema digitalnog sertifikata" +msgid "Do you want to logout from all the services above?" +msgstr "Želite li se odjaviti iz svih gore navedenih servisa?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Parametar RelayState nije zadan" +msgid "Domain component (DC)" +msgstr "Domenska komponenta (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Podaci o stanju su izgubljeni" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Preuzmite X509 sertifikate u PEM formatu." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Stranica nije pronađena" +msgid "E-mail address:" +msgstr "e-mail adresa:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Lozinka nije postavljena" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Korisnik s navedenim korisničkim imenom ne može biti pronađen ili je lozinka koju ste uneli neispravna. Molimo proverite korisničko ime i pokušajte ponovo." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Greška pri obradi odgovora koji je poslao Davalac Identeteta" +msgid "Enter your username and password" +msgstr "Unesite vaše korisničko ime i lozinku" + +msgid "Entitlement regarding the service" +msgstr "Prava i privilegije korisnika na sistemu" + +msgid "Error" +msgstr "Greška" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Greška pri kreiranju zahteva" + +msgid "Error in this metadata entry" +msgstr "Ovaj zapis metapodataka sadrži grešku" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Greška prilikom učitavanja metapodataka" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Greška prilikom obrade zahteva koji je poslao Davalac Servisa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Greška pri obradi odgovora koji je poslao Davalac Identeteta" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Greška pri obradi zahteva za odjavu" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Davalac Identiteta je prijavio grešku" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Neobrađena greška" +msgid "Error report sent" +msgstr "Prijava greške poslata" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Nepoznat digitalni sertifikat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Greška prilikom komunikacije sa CAS serverom." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Proces autentifikacije je prekinut" +msgid "Explain what you did when this error occurred..." +msgstr "Opišite šta ste radili kada se ova greška desila..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Neispravno korisničko ime ili lozinka" +msgid "Fax number" +msgstr "Fax broj" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Pristupili ste sistemu za obradu SAML potvrda, ali niste dostavili SAML autentikacioni odgovor." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Došlo je do greške u autentifikacionom modulu %AUTHSOURCE%. Razlog: %REASON%" +msgid "Given name" +msgstr "Ime" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Dogodila se greška prilikom dohvatanja ove stranice. Razlog: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Natrag na početnu stranicu SimpleSAMLphp instalacije" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Greška prilikom komunikacije sa CAS serverom." +msgid "Go back to the file list" +msgstr "Vrati se natrag na listu fajlova" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Izgleda da postoji greška u podešavanjima SimpleSAMLphp-a." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Desila se greška prilikom pokušaja kreiranja SAML zahteva." +msgid "Help desk homepage" +msgstr "Stranice službe za podršku korisnicima" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Parametri poslati servisu za lociranje nisu u ispravnom formatu." +msgid "Help! I don't remember my password." +msgstr "Upomoć! Zaboravio/la sam svoju lozinku." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Desila se greška prilikom kreiranja autentifikacionog odgovora od strane ovog davaoca identiteta." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Ovo su metapodaci koje je SimpleSAMLphp izgenerisao za vas. Te metapodatke možete poslati davaocima servisa ili davaocima identiteta u koje imate poverenja i sa kojima želite uspostaviti federaciju." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Neuspešna autentifikacija: digitalni sertifikat koji je poslao vaš web pretraživač nije ispravan ili se ne može pročitati" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Ovo je stranica s prikazom aktuelnog stanja vaše sesije. Na ovoj stranici možete videti je li vam je istekla sesija, koliko će još dugo vaša sesija trajati i sve atribute koji su vezani uz vašu sesiju." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "Podaci o korisničkim nalozima čuvaju se u LDAP bazi, a kada pokušate da se ulogujete vrši se provera da li Vaše korisničko ime i lozinka postoje u LDAP bazi. Prilikom pristupa LDAP bazi, došlo je do greške." +msgid "Home organization domain name" +msgstr "Domen matične institucije" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Informacija o aktuelnom zahtevu za odjavljivanjem se izgubila. Preporučujemo da se vratite u aplikaciju iz koje ste se hteli odjaviti i pokušate da se odjavite ponovo. Ova greška može biti uzrokovana istekom validnosti zahteva za odjavom. Zahtev se skladišti određeno vreme - po pravilu nekoliko sati. Obzirom da je to duže nego što bi bilo koja operacija odjavljivanja trebala trajati, greška koja se pojavila može upućivati na grešku u podešavanjima. Ukoliko se problem nastavi, kontaktirajte administratora aplikacije." +msgid "Home postal address" +msgstr "Kućna poštanska adresa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Došlo je do greške prilikom pokušaja obrade zahteva za odjavom." +msgid "Home telephone" +msgstr "Kućni telefonski broj" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Postoji greška u podešavanjima SimpleSAMLphp-a. Ukoliko ste administrator ovog servisa, trebalo bi da proverite da li su metapodaci ispravno podešeni." +msgid "How to get help" +msgstr "Kome se obratiti za pomoć" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Metapodaci za %ENTITYID% nisu pronađeni" +msgid "Identity assurance profile" +msgstr "Visina pouzdanosti davaoca digitalnih identiteta" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Pristup ovoj odredišnoj adresa nije omogućen. Proverite podešavanja dozvola u SimpleSAMLphp-u." +msgid "Identity number assigned by public authorities" +msgstr "Jedinstveni brojni identifikator osobe" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Neuspešna autentifikacija: vaš web pretraživač nije poslao digitalni sertifikat" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Ako prijavite ovu grešku, molimo Vas da takođe pošaljete i ovaj identifikator koji će omogućiti da se Vaša sesija locira u logovima dostupnim adminstratoru sistema:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Servis koji je inicirao ovaj zahtjev nije poslao RelayState parametar koji sadrži adresu na koju treba preusmeriti korisnikov web pretraživač nakon uspešne autentifikacije." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Metapodaci u SAML 2.0 XML formatu:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Podaci o stanju su izgubljeni i zahtev se ne može reprodukovati" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "U SimpleSAMLphp formatu - koristite ovu opciju ako se na drugoj strani takođe nalazi SimpleSAMLphp entitet:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Tražena stranica nije pronađena. Adresa stranice je: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Neispravno korisničko ime ili lozinka" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Tražena stranica nije pronađena. Razlog: %REASON% Adresa stranice je: %URL%" +msgid "Incorrect username or password." +msgstr "Neispravno korisničko ime ili lozinka." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Administratorska lozinka u podešavanjima(parametar auth.adminpassword) i dalje ima izvornu vrednost. Molimo Vas izmenite konfiguracioni fajl." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Niste dostavili validan setifikat." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Neispravan sertifikat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Odgovor koji je poslao Davalac Identiteta nije prihvaćen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Davalac Identiteta je primio zahtev za autentikacijom od strane Davaoca Servisa, ali se javila greška prilikom pokušaja obrade ovog zahteva." +msgid "JPEG Photo" +msgstr "Slika osobe" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Davalac Identiteta je poslao odgovor koji sadrži informaciju o pojavi greške(Šifra statusa dostavljena u SAML odgovoru ne odgovara šifri uspešno obrađenog zahteva)." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP greška" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Pristupili ste interfejsu za jedinstvenu odjavu sa sistema, ali niste poslali SAML LogoutRequest ili LogoutResponse poruku." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "Podaci o korisničkim nalozima čuvaju se u LDAP bazi, a kada pokušate da se ulogujete vrši se provera da li Vaše korisničko ime i lozinka postoje u LDAP bazi. Prilikom pristupa LDAP bazi, došlo je do greške." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Pojavila se greška koja ne može do kraja biti obrađena." +msgid "Labeled URI" +msgstr "URI adresa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Neuspešna autentifikacija: digitalni sertifikat koji je poslao vaš web pretraživač je nepoznat" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Korisnik je prekinuo proces autentifikacie" +msgid "Legal name" +msgstr "Pravno ime" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Korisnik s navedenim korisničkim imenom ne može biti pronađen ili je lozinka koju ste uneli neispravna. Molimo proverite korisničko ime i pokušajte ponovo." +msgid "Local identity number" +msgstr "Lokalni brojni identifikator osobe" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Ovo je stranica s prikazom aktuelnog stanja vaše sesije. Na ovoj stranici možete videti je li vam je istekla sesija, koliko će još dugo vaša sesija trajati i sve atribute koji su vezani uz vašu sesiju." +msgid "Locality" +msgstr "Lokacija(Mesto)" -msgid "Logout" -msgstr "Odjava" +msgid "Logged out" +msgstr "Odjavljeni ste" -msgid "Your attributes" -msgstr "Vaši atributi" +msgid "Logging out of the following services:" +msgstr "Odjavljujete se iz sledećih servisa" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Vaša sesija će biti validna još %remaining% sekundi." +msgid "Logging out..." +msgstr "Odjava u toku..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Molimo vas odaberite davaoca identiteta kod koga se želite autentifikovati:" +msgid "Login" +msgstr "Prijavi se" -msgid "Remember my choice" -msgstr "Zapamti moj izbor" +msgid "Login at" +msgstr "Prijavi se kroz" -msgid "Select" -msgstr "Odaberi" +msgid "Logout" +msgstr "Odjava" -msgid "Select your identity provider" -msgstr "Odaberite vašeg davaoca identiteta" +msgid "Logout failed" +msgstr "Odjava nije uspela" -msgid "Sending message" -msgstr "Šaljem poruku" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Informacija o odjavljivanju je izgubljena" -msgid "Yes, continue" -msgstr "Da, nastavi" +msgid "Mail" +msgstr "Elektronska adresa" -msgid "Debug information" -msgstr "Informacije o greški" +msgid "Manager" +msgstr "Rukovodilac" -msgid "E-mail address:" -msgstr "e-mail adresa:" +msgid "Message" +msgstr "Poruka" -msgid "Explain what you did when this error occurred..." -msgstr "Opišite šta ste radili kada se ova greška desila..." +msgid "Metadata" +msgstr "Metapodaci" -msgid "How to get help" -msgstr "Kome se obratiti za pomoć" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metapodaci nisu pronađeni" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Ako prijavite ovu grešku, molimo Vas da takođe pošaljete i ovaj identifikator koji će omogućiti da se Vaša sesija locira u logovima dostupnim adminstratoru sistema:" +msgid "Metadata overview" +msgstr "Pregled metapodataka" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Opciono, unesite Vašu e-mail adresu kako bi administratori mogli da Vas kontaktiraju ukoliko im budu trebale dodantne informacije:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "Prijavi grešku" +msgid "Mobile" +msgstr "Broj mobilnog telefona" -msgid "Send error report" -msgstr "Pošalji prijavu greške" +msgid "Next" +msgstr "Dalje" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Informacije o grešci koje se nalaze ispod mogu biti od interesa administratoru ili službi za podršku korisnicima." +msgid "Nickname" +msgstr "Nadimak" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Ova greška se verovatno desila zbog neočekivanog ponašanja, ili pogrešnih podešavanja SimpleSAMLphp-a. Kontaktirajte administratora ovog servisa i pošaljite mu poruku o grešci prikazanu iznad." +msgid "No" +msgstr "Ne" -msgid "[Preferred choice]" -msgstr "[Preferirani izbor]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Parametar RelayState nije zadan" -msgid "Person's principal name at home organization" -msgstr "Jedinstveni identifikator osobe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Nije dostavljena SAML poruka" -msgid "Superfluous options in config file" -msgstr "Suvišni parametri u konfiguracionom fajlu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "Broj mobilnog telefona" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Nije dostavljen SAML odgovor" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Davalac Servisa (lokalni)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Pristup nije dozvoljen" -msgid "Display name" -msgstr "Ime za prikaz" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Nema digitalnog sertifikata" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP metapodaci" +msgid "No errors found." +msgstr "Nije pronađena nijedna greška." + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Ne" + +msgid "No, only %SP%" +msgstr "Ne, samo iz %SP%" msgid "Notices" msgstr "Napomene" -msgid "Home telephone" -msgstr "Kućni telefonski broj" +msgid "On hold" +msgstr "Na čekanju" -msgid "Service Provider" -msgstr "Davalac Servisa" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Jedan ili više servisa na koje ste prijavljeni ne podržava odjavljivanje. Da biste bili sigurni da su sve vaše sesije završene, preporučujemo da zatvorite web pretraživač." + +msgid "Optional fields" +msgstr "Opciona polja" -msgid "Incorrect username or password." -msgstr "Neispravno korisničko ime ili lozinka." +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Opciono, unesite Vašu e-mail adresu kako bi administratori mogli da Vas kontaktiraju ukoliko im budu trebale dodantne informacije:" -msgid "Submit message" -msgstr "Pošalji poruku" +msgid "Options missing from config file" +msgstr "Paramentri koji nedostaju u konfiguracionom fajlu" -msgid "Locality" -msgstr "Lokacija(Mesto)" +msgid "Organization" +msgstr "Institucija" -msgid "The following required fields was not found" -msgstr "Nisu pronađena sledeća opciona polja" +msgid "Organization name" +msgstr "Naziv matične institucije" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Preuzmite X509 sertifikate u PEM formatu." +msgid "Organization's legal name" +msgstr "Zvanični naziv institucije" + +msgid "Organizational homepage" +msgstr "URL adresa institucije" msgid "Organizational number" msgstr "Jedinstveni brojni identifikator institucije" -msgid "Post office box" -msgstr "Broj poštanskog sandučeta" +msgid "Organizational unit" +msgstr "Organizaciona jedinica" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Servis zahteva od vas da se autentifikujete. Unesite vaše korisničko ime i lozinku u dole navedena polja." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Stranica nije pronađena" -msgid "Error" -msgstr "Greška" +msgid "Parse" +msgstr "Analiziraj" -msgid "Next" -msgstr "Dalje" +msgid "Password" +msgstr "Lozinka" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Jedinstveni naziv (DN) korisnikove organizacione jedinice" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Lozinka nije postavljena" -msgid "Converted metadata" -msgstr "Konvertovani metapodaci" +msgid "Persistent pseudonymous ID" +msgstr "Trajni anonimni identifikator" -msgid "Mail" -msgstr "Elektronska adresa" +msgid "Person's principal name at home organization" +msgstr "Jedinstveni identifikator osobe" -msgid "No, cancel" -msgstr "Ne" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Molimo vas odaberite davaoca identiteta kod koga se želite autentifikovati:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Odabrali ste %HOMEORG% kao vašu matičnu instituciju. Ako to nije tačno možete odabrati drugu instituciju." +msgid "Post office box" +msgstr "Broj poštanskog sandučeta" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Jedinstveni naziv (DN) korisnikove primarne organizacione jedinice" +msgid "Postal address" +msgstr "Poštanska adresa" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Da biste videli detalje o SAML entitetu, kliknite na njegovo zaglavlje." +msgid "Postal code" +msgstr "Poštanski broj" -msgid "Enter your username and password" -msgstr "Unesite vaše korisničko ime i lozinku" +msgid "Preferred language" +msgstr "Preferirani jezik" -msgid "Login at" -msgstr "Prijavi se kroz" +msgid "Primary affiliation" +msgstr "Primarna povezanost sa institucijom" -msgid "No" -msgstr "Ne" +msgid "Private information elements" +msgstr "Privatni atribut" -msgid "Home postal address" -msgstr "Kućna poštanska adresa" +msgid "Remember" +msgstr "Zapamti moj izbor" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP Demo Primer" +msgid "Remember my choice" +msgstr "Zapamti moj izbor" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 Davalac Identiteta (udaljeni)" +msgid "Report errors" +msgstr "Prijavi grešku" -msgid "Do you want to logout from all the services above?" -msgstr "Želite li se odjaviti iz svih gore navedenih servisa?" +msgid "Required fields" +msgstr "Obavezna polja" -msgid "Given name" -msgstr "Ime" +msgid "Return to service" +msgstr "Povratak u aplikaciju" -msgid "Identity assurance profile" -msgstr "Visina pouzdanosti davaoca digitalnih identiteta" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Davalac Identiteta (lokalni)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 Davalac Identiteta (udaljeni)" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP Demo Primer" -msgid "Organization name" -msgstr "Naziv matične institucije" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Kliknite na dugme \"Pošalji poruku\" da biste poslali poruku." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP metapodaci" -msgid "Home organization domain name" -msgstr "Domen matične institucije" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Davalac Servisa (lokalni)" -msgid "Go back to the file list" -msgstr "Vrati se natrag na listu fajlova" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Prijava greške poslata" +msgid "Select" +msgstr "Odaberi" -msgid "Common name" -msgstr "Ime i Prezime" +msgid "Select configuration file to check:" +msgstr "Odaberite konfiguracionu fajl koji želite proveriti:" -msgid "Logout failed" -msgstr "Odjava nije uspela" +msgid "Select your identity provider" +msgstr "Odaberite vašeg davaoca identiteta" -msgid "Identity number assigned by public authorities" -msgstr "Jedinstveni brojni identifikator osobe" +msgid "Send e-mail to help desk" +msgstr "Pošalji e-mail službi za podršku korisnicima" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation Davalac Servisa (udaljeni)" +msgid "Send error report" +msgstr "Pošalji prijavu greške" -msgid "Some error occurred" -msgstr "Desila se greška" +msgid "Sending message" +msgstr "Šaljem poruku" -msgid "Organization" -msgstr "Institucija" +msgid "Service Provider" +msgstr "Davalac Servisa" -msgid "Choose home organization" -msgstr "Izaberite matičnu instituciju" +msgid "Session size: %SIZE%" +msgstr "Veličina sesije: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Trajni anonimni identifikator" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP metapodaci" -msgid "No errors found." -msgstr "Nije pronađena nijedna greška." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Davalac Identiteta(lokalni)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Davalac Servisa (lokalni)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Davalac Identiteta (udaljeni)" -msgid "Required fields" -msgstr "Obavezna polja" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP metapodaci" -msgid "Domain component (DC)" -msgstr "Domenska komponenta (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Davalac Servisa (lokalni)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 Davalac Servisa (udaljeni)" -msgid "Password" -msgstr "Lozinka" - -msgid "Nickname" -msgstr "Nadimak" - -msgid "The error report has been sent to the administrators." -msgstr "Prijava greške poslata je administratorima." - -msgid "Date of birth" -msgstr "Datum rođenja" - -msgid "Private information elements" -msgstr "Privatni atribut" - -msgid "You are also logged in on these services:" -msgstr "Takođe ste prijavljeni u sledećim servisima:" +msgid "Shibboleth demo" +msgstr "Shibboleth Demo" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp Dijagnostika" -msgid "No, only %SP%" -msgstr "Ne, samo iz %SP%" - -msgid "Username" -msgstr "Korisničko ime" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Izgleda da postoji greška u podešavanjima SimpleSAMLphp-a." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Natrag na početnu stranicu SimpleSAMLphp instalacije" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp greška" -msgid "You have successfully logged out from all services listed above." -msgstr "Uspešno ste se odjavili iz svih gore navedenih servisa." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Uspešno ste odjavljeni iz %SP%." +msgid "Some error occurred" +msgstr "Desila se greška" -msgid "Affiliation" -msgstr "Povezanost sa institucijom" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Podaci o stanju su izgubljeni" -msgid "You have been logged out." -msgstr "Uspešno ste se odjavili." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Podaci o stanju su izgubljeni i zahtev se ne može reprodukovati" -msgid "Return to service" -msgstr "Povratak u aplikaciju" +msgid "Street" +msgstr "Ulica i broj" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation Davalac Servisa (lokalni)" +msgid "Submit message" +msgstr "Pošalji poruku" -msgid "Preferred language" -msgstr "Preferirani jezik" +msgid "Superfluous options in config file" +msgstr "Suvišni parametri u konfiguracionom fajlu" msgid "Surname" msgstr "Prezime" -msgid "The following fields was not recognized" -msgstr "Sledeća polja nisu prepoznata" - -msgid "User ID" -msgstr "Korisničko ime" +msgid "Telephone number" +msgstr "Telefonski broj" -msgid "JPEG Photo" -msgstr "Slika osobe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Davalac Identiteta je poslao odgovor koji sadrži informaciju o pojavi greške(Šifra statusa dostavljena u SAML odgovoru ne odgovara šifri uspešno obrađenog zahteva)." -msgid "Postal address" -msgstr "Poštanska adresa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Korisnik je prekinuo proces autentifikacie" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Metapodaci u SAML 2.0 XML formatu:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Informacije o grešci koje se nalaze ispod mogu biti od interesa administratoru ili službi za podršku korisnicima." -msgid "Logging out of the following services:" -msgstr "Odjavljujete se iz sledećih servisa" +msgid "The error report has been sent to the administrators." +msgstr "Prijava greške poslata je administratorima." -msgid "Labeled URI" -msgstr "URI adresa" +msgid "The following fields was not recognized" +msgstr "Sledeća polja nisu prepoznata" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Davalac Identiteta(lokalni)" +msgid "The following optional fields was not found" +msgstr "Nisu pronađena sledeća opciona polja" -msgid "Metadata" -msgstr "Metapodaci" +msgid "The following required fields was not found" +msgstr "Nisu pronađena sledeća opciona polja" -msgid "Login" -msgstr "Prijavi se" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Tražena stranica nije pronađena. Adresa stranice je: %URL%" -msgid "Yes, all services" -msgstr "Da, iz svih servisa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Tražena stranica nije pronađena. Razlog: %REASON% Adresa stranice je: %URL%" -msgid "Logged out" -msgstr "Odjavljeni ste" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Informacija o aktuelnom zahtevu za odjavljivanjem se izgubila. Preporučujemo da se vratite u aplikaciju iz koje ste se hteli odjaviti i pokušate da se odjavite ponovo. Ova greška može biti uzrokovana istekom validnosti zahteva za odjavom. Zahtev se skladišti određeno vreme - po pravilu nekoliko sati. Obzirom da je to duže nego što bi bilo koja operacija odjavljivanja trebala trajati, greška koja se pojavila može upućivati na grešku u podešavanjima. Ukoliko se problem nastavi, kontaktirajte administratora aplikacije." -msgid "Postal code" -msgstr "Poštanski broj" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Servis koji je inicirao ovaj zahtjev nije poslao RelayState parametar koji sadrži adresu na koju treba preusmeriti korisnikov web pretraživač nakon uspešne autentifikacije." -msgid "Logging out..." -msgstr "Odjava u toku..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Parametri poslati servisu za lociranje nisu u ispravnom formatu." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Davalac Identiteta (lokalni)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Primarna povezanost sa institucijom" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Administratorska lozinka u podešavanjima(parametar auth.adminpassword) i dalje ima izvornu vrednost. Molimo Vas izmenite konfiguracioni fajl." -msgid "XML metadata" -msgstr "Metapodaci u XML formatu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Dogodila se greška prilikom dohvatanja ove stranice. Razlog: %REASON%" -msgid "Telephone number" -msgstr "Telefonski broj" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Postoji greška u podešavanjima SimpleSAMLphp-a. Ukoliko ste administrator ovog servisa, trebalo bi da proverite da li su metapodaci ispravno podešeni." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Odjavljivanje iz jednog ili više servisa nije uspelo. Da biste bili sigurni da su sve vaše sesija završene, preporučujemo da zatvorite web pretraživač." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Davalac Identiteta je primio zahtev za autentikacijom od strane Davaoca Servisa, ali se javila greška prilikom pokušaja obrade ovog zahteva." -msgid "Entitlement regarding the service" -msgstr "Prava i privilegije korisnika na sistemu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Pristup ovoj odredišnoj adresa nije omogućen. Proverite podešavanja dozvola u SimpleSAMLphp-u." -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP metapodaci" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Ova greška se verovatno desila zbog neočekivanog ponašanja, ili pogrešnih podešavanja SimpleSAMLphp-a. Kontaktirajte administratora ovog servisa i pošaljite mu poruku o grešci prikazanu iznad." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Obzirom da ste u debug modu, imate mogućnost videti sadržaj poruke koju šaljete:" +msgid "Title" +msgstr "Zvanje" -msgid "Certificates" -msgstr "Sertifikati" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Da biste videli detalje o SAML entitetu, kliknite na njegovo zaglavlje." -msgid "Remember" -msgstr "Zapamti moj izbor" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Jedinstveni naziv (DN) korisnikove matične institucije" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Metapodaci za %ENTITYID% nisu pronađeni" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Kliknite na link \"Pošalji poruku\" da biste poslali poruku." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Odjavljivanje iz jednog ili više servisa nije uspelo. Da biste bili sigurni da su sve vaše sesija završene, preporučujemo da zatvorite web pretraživač." -msgid "Organizational unit" -msgstr "Organizaciona jedinica" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Lokalni brojni identifikator osobe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Neobrađena greška" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP metapodaci" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Nepoznat digitalni sertifikat" -msgid "Change your home organization" -msgstr "Promenite izbor za vašu matičnu instituciju" +msgid "User ID" +msgstr "Korisničko ime" msgid "User's password hash" msgstr "Heš vrednost korisnikove lozinke" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "U SimpleSAMLphp formatu - koristite ovu opciju ako se na drugoj strani takođe nalazi SimpleSAMLphp entitet:" - -msgid "Completed" -msgstr "Završeno" - -msgid "Select configuration file to check:" -msgstr "Odaberite konfiguracionu fajl koji želite proveriti:" - -msgid "On hold" -msgstr "Na čekanju" +msgid "Username" +msgstr "Korisničko ime" -msgid "Help! I don't remember my password." -msgstr "Upomoć! Zaboravio/la sam svoju lozinku." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP Demo Primer" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Debug mod možete isključiti u glavnom SimpleSAMLphp konfiguracionom fajlu config/config.php. " +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation Davalac Servisa (udaljeni)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp greška" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation Davalac Servisa (lokalni)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Jedan ili više servisa na koje ste prijavljeni ne podržava odjavljivanje. Da biste bili sigurni da su sve vaše sesije završene, preporučujemo da zatvorite web pretraživač." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Zvanični naziv institucije" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Odgovor koji je poslao Davalac Identiteta nije prihvaćen." -msgid "Options missing from config file" -msgstr "Paramentri koji nedostaju u konfiguracionom fajlu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Desila se greška prilikom kreiranja autentifikacionog odgovora od strane ovog davaoca identiteta." -msgid "The following optional fields was not found" -msgstr "Nisu pronađena sledeća opciona polja" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Šteta! - Bez ispravnog korisničkog imena i lozinke ne možete pristupiti servisu. Da biste saznali vaše korisničko ime i lozinku obratite se vašoj matičnoj instituciji." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Metapodaci su dostupni na ovoj adresi:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Ulica i broj" +msgid "XML metadata" +msgstr "Metapodaci u XML formatu" -msgid "Message" -msgstr "Poruka" +msgid "Yes, all services" +msgstr "Da, iz svih servisa" -msgid "Contact information:" -msgstr "Kontakt podaci:" +msgid "Yes, continue" +msgstr "Da, nastavi" -msgid "Legal name" -msgstr "Pravno ime" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Opciona polja" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Pristupili ste sistemu za obradu SAML potvrda, ali niste dostavili SAML autentikacioni odgovor." -msgid "You have previously chosen to authenticate at" -msgstr "Prethodno ste izabrali da se autentifikujete kroz" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Iz nekog razloga autentifikacionom servisu nije prosleđena vaša lozinka. Molimo pokušajte ponovo." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Pristupili ste interfejsu za jedinstvenu odjavu sa sistema, ali niste poslali SAML LogoutRequest ili LogoutResponse poruku." -msgid "Fax number" -msgstr "Fax broj" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Kliknite na dugme \"Pošalji poruku\" da biste poslali poruku." -msgid "Shibboleth demo" -msgstr "Shibboleth Demo" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Kliknite na link \"Pošalji poruku\" da biste poslali poruku." -msgid "Error in this metadata entry" -msgstr "Ovaj zapis metapodataka sadrži grešku" +msgid "You are also logged in on these services:" +msgstr "Takođe ste prijavljeni u sledećim servisima:" -msgid "Session size: %SIZE%" -msgstr "Veličina sesije: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Pristupate sistemu koji se nalazi u pred-produkcionoj fazi. Ova autentifikaciona podešavanja služe za testiranje i proveru ispravnosti rada pred-produkcionog sistema. Ako vam je neko poslao adresu koja pokazuje na ovu stranicu, a vi niste osoba zadužena za testiranje, verovatno ste na ovu stranicu došli greškom." -msgid "Parse" -msgstr "Analiziraj" +msgid "You are now successfully logged out from %SP%." +msgstr "Uspešno ste odjavljeni iz %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Šteta! - Bez ispravnog korisničkog imena i lozinke ne možete pristupiti servisu. Da biste saznali vaše korisničko ime i lozinku obratite se vašoj matičnoj instituciji." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Metapodaci su dostupni na ovoj adresi:" -msgid "Choose your home organization" -msgstr "Izaberite vašu matičnu instituciju" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Debug mod možete isključiti u glavnom SimpleSAMLphp konfiguracionom fajlu config/config.php. " -msgid "Send e-mail to help desk" -msgstr "Pošalji e-mail službi za podršku korisnicima" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Niste dostavili validan setifikat." -msgid "Metadata overview" -msgstr "Pregled metapodataka" +msgid "You have been logged out." +msgstr "Uspešno ste se odjavili." -msgid "Title" -msgstr "Zvanje" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Odabrali ste %HOMEORG% kao vašu matičnu instituciju. Ako to nije tačno možete odabrati drugu instituciju." -msgid "Manager" -msgstr "Rukovodilac" +msgid "You have previously chosen to authenticate at" +msgstr "Prethodno ste izabrali da se autentifikujete kroz" -msgid "Affiliation at home organization" -msgstr "Povezanost sa institucijom sa domenom" +msgid "You have successfully logged out from all services listed above." +msgstr "Uspešno ste se odjavili iz svih gore navedenih servisa." -msgid "Help desk homepage" -msgstr "Stranice službe za podršku korisnicima" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Iz nekog razloga autentifikacionom servisu nije prosleđena vaša lozinka. Molimo pokušajte ponovo." -msgid "Configuration check" -msgstr "Provera podešavanja" +msgid "Your attributes" +msgstr "Vaši atributi" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Davalac Identiteta (udaljeni)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "Ovo su metapodaci koje je SimpleSAMLphp izgenerisao za vas. Te metapodatke možete poslati davaocima servisa ili davaocima identiteta u koje imate poverenja i sa kojima želite uspostaviti federaciju." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Vaša sesija će biti validna još %remaining% sekundi." -msgid "Organizational homepage" -msgstr "URL adresa institucije" +msgid "[Preferred choice]" +msgstr "[Preferirani izbor]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Pristupate sistemu koji se nalazi u pred-produkcionoj fazi. Ova autentifikaciona podešavanja služe za testiranje i proveru ispravnosti rada pred-produkcionog sistema. Ako vam je neko poslao adresu koja pokazuje na ovu stranicu, a vi niste osoba zadužena za testiranje, verovatno ste na ovu stranicu došli greškom." +msgid "not set" +msgstr "" diff --git a/locales/st/LC_MESSAGES/messages.po b/locales/st/LC_MESSAGES/messages.po index da27d329dd..e36d763564 100644 --- a/locales/st/LC_MESSAGES/messages.po +++ b/locales/st/LC_MESSAGES/messages.po @@ -1,494 +1,561 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: st\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Ha ho karabelo ya SAML e fanweng" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Ha ho molaetsa wa SAML o fanweng" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Tshebeletso e kopile hore o inetefatse. Ka kopo kenya lebitso la mosebedisi le phasewete ya hao foromong e ka tlase mona." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Phoso e hlahile ha o leka ho theha kopo ya SAML." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Phoso e hlahile ha e leka ho sebetsa Kopo ya Ho Tswa." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Kgeloho e sa rarollwang e lahlilwe." + +msgid "AuthData" +msgstr "AuthData" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Netefatso e kgaoditswe" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Phoso ya tiiso mohloding %AUTHSOURCE%. Lebaka e bile: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Netefatso e hlolehile: setifikeiti seo sebadi sa hao se se rometseng ha se a nepahala kapa ha se balehe" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Netefatso e hlolehile: setifikeiti se rometsweng ke sebadi sa hao ha se tsejwe" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Netefatso e hlolehile: sebadi sa hao ha se a romela setifikeiti sa letho" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Phoso ya netefatso ya mohlodi" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Kopo e mpe e amohetswe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Kopo e mpe bakeng sa tshebeletso ya tshibollo" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "Phoso ya CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "Ha e a kgona ho fumana datha ya seshene" + +msgid "Change your home organization" +msgstr "Fetola khampani ya lehae ya heno" + +msgid "Choose home organization" +msgstr "Kgetha khampani ya lehae" + +msgid "Choose your home organization" +msgstr "Kgetha khampani ya lehae ya hao" + +msgid "Click to view AuthData" +msgstr "Tlelika ho sheba AuthData" + +msgid "Completed" +msgstr "E phethilwe" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Phoso ya Netefatso" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Phoso ho thehweng ha kopo" +msgid "Contact information:" +msgstr "Tlhahisoleseding ya boikopanyo:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Kopo e mpe bakeng sa tshebeletso ya tshibollo" +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Ha e a kgona ho theha karabelo ya ntefatso" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Setifikeiti se sa nepahalang" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Phoso ya LDAP" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Tlhahisoleseding ya ho tswa e lahlehile" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Phoso ho sebetseng Kopo ya Ho Tswa" +msgid "Debug information" +msgstr "Tlhahisoleseding ya debug" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 -msgid "Cannot retrieve session data" -msgstr "Ha e a kgona ho fumana datha ya seshene" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Phoso ya ho louta metadata" +msgid "Do you want to logout from all the services above?" +msgstr "Na o batla ho tswa ditshebeletsong tsohle tse ka hodimo moo?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadata ha e a fumanwa" +msgid "E-mail address:" +msgstr "Aterese ya imeile:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Ha ho phihlello" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Ekaba mosebedisi wa lebitso la mosebedisi le fanweng ha a fumanwe, kapa phasewete eo o e fananeng e fosahetse. Ka kopo hlahloba lebitso la mosebedisi la hao, ebe o leka hape." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Ha ho setifikeiti" +msgid "Enter your username and password" +msgstr "Kenya lebitso la mosebedisi le phasewete" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Ha ho RelayState" +msgid "Error" +msgstr "Phoso" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Tlhahisoleseding ya provense e lahlehile" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Phoso ho thehweng ha kopo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Leqephe ha le a fumanwa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Phoso ya ho louta metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Phasewete ha e a setwa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Error processing request from Service Provider" +msgstr "Phoso ho sebetseng kopo ho tswa ho Mofani wa Tshebeletso" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 msgid "Error processing response from Identity Provider" msgstr "Phoso ho sebetseng karabelo ho tswa ho Mofani wa Boitsebiso" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 -msgid "Error processing request from Service Provider" -msgstr "Phoso ho sebetseng kopo ho tswa ho Mofani wa Tshebeletso" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Phoso ho sebetseng Kopo ya Ho Tswa" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Phoso e amohetswe ho tswa ho Mofani wa Boitsebiso" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 -msgid "No SAML request provided" -msgstr "Ha ho kopo ya SAML e fanweng" +msgid "Error report sent" +msgstr "Tlaleho ya phoso e rometswe" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Mokgelo o sa rarollwang" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Phoso e bile teng ka seva ya CAS." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Setifikeiti se sa tsejweng" +msgid "Explain what you did when this error occurred..." +msgstr "Hlalosa seo o se entseng ha phoso ena e ne e hlaha..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Netefatso e kgaoditswe" +msgid "Format" +msgstr "Fomata" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Lebitso la mosebedisi kapa phasewete e fosahetseng" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Kgutlela leqepheng la ho instola la SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "O fihletse kopano ya Tiiso ya Tshebeletso ya Bareki, empa ha o a fana ka Karabelo ya Netefatso ya SAML. Ka kopo lemoha hore ntlha ena ya bofelo ha e a rerelwa ho fihlellwa ka kotloloho." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 -msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." -msgstr "O fihletse kopano ya Tshebeletso ya Tlhakiso ya Athifekte, empa ha o a fana ka molaetsa wa SAML ArtifactResolve. Ka kopo lemoha hore ntlha ena ya bofelo ha e a rerelwa ho fihlellwa ka kotloloho." +msgid "Help desk homepage" +msgstr "Leqephe la lapeng la ba deske ya thuso" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Phoso ya tiiso mohloding %AUTHSOURCE%. Lebaka e bile: %REASON%" +msgid "Help! I don't remember my password." +msgstr "Thuso! Ha ke hopole phasewete ya ka." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Ho na le phoso kopong e leqepheng lena. Lebaka e bile: %REASON%" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Dumela, lena ke leqephe la boemo la SimpleSAMLphp. Mona o ka bona hore na seshene ya hao e feletswe ke nako na, hore e nka nako e kae hore e fellwe ke nako le makgabane ohle a hoketsweng sesheneng ya hao." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Phoso e bile teng ka seva ya CAS." +msgid "How to get help" +msgstr "Ka moo o ka fumanang thuso" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp e bonahala e hlophisitswe hampe." +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Haeba o tlaleha phoso ena, ka kopo tlaleha hape nomoro ena ya ho sala morao e kgonahatsang hore o fumane seshene ya hao ho di-log ts efumanehang ho sistimi ya motsamaisi:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Phoso e hlahile ha o leka ho theha kopo ya SAML." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Lebitso la mosebedisi kapa phasewete e fosahetseng" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Dipharamitha tse rometsweng tshebeltsong ya tshibollo di ne di se ho latela ditekanyetso." +msgid "Incorrect username or password." +msgstr "Lebitso la mosebedisi kapa phasewete e fosahetse." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Ha mofani enwa wa boitsebiso a leka ho theha karabelo ya netefatso, phoso e bile teng." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Netefatso e hlolehile: setifikeiti seo sebadi sa hao se se rometseng ha se a nepahala kapa ha se balehe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Setifikeiti se sa nepahalang" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Phoso ya LDAP" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." msgstr "LDAP ke dathabeise ya mosebedisi, mme ha o leka ho kena, re hloka ho ikopanya le dathabeise ya LDAP. Phoso e hlahile ha re e leka lekgelong lena." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Tlhahisoleseding e mabapi le tshebetos ya ho tswa ya hajwale e lahlehile. O tlameha ho kgutlela tshebeletsong eo o neng o leka ho tswa ho yona le ho leka ho tswa hape. Phoso ena e ka bakwa ke phelo nako ya tlhahisoleseding ya ho tswa. Tlhahisoleseding ya ho tswa e bolokwa nako e lekantsweng - ka tlwaelo ke palo ya dihora. Sena se setelele ho feta nako eo tshebetso efe kapa efe ya tlwaelo ya ho tswa e tlamehang ho e nka, ka hona phoso ena e ka nna ya bontsha phoso e nngwe ka tlhophiso esele. Haeba bothata bo phehella, ikopanye le mofani wa tshebeletso wa hao." - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Phoso e hlahile ha e leka ho sebetsa Kopo ya Ho Tswa." +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 -msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." -msgstr "Datha ya seshene ya hao ha e kgone ho fumanwa hona jwale ka lebaka la mathata a sethekeniki. Ka kopo leka hape kamora metsotso e mmalwa." +msgid "Logged out" +msgstr "O ntshitswe" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Ho na le tlhophiso e fosahetseng ya kenyo ya ho instola SimpleSAMLphp ya hao. Haeba o motsamaisi wa tshebeletso ena, o tlameha ho etsa bonnete ba hore tlhophiso ya metadata ya hao e setilwe ka nepo." +msgid "Logging out of the following services:" +msgstr "E tswa ditshebeletsong tse latelang:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Ha e kgone ho fumana metadata bakeng sa %ID YA SETHEO%" +msgid "Logging out..." +msgstr "E a tswa..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Ntlha ya bofelo ha e a bulelwa. Hlahloba dikgetho tse tlhophisong ya hao ya SimpleSAMLphp." +msgid "Login" +msgstr "Ho kena" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Netefatso e hlolehile: sebadi sa hao ha se a romela setifikeiti sa letho" +msgid "Login at" +msgstr "Kena ho" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Moqadi wa kopo ena ha a fana pharamitha ya RelayState e bontshang hore ho uwe kae ho tloha mona." +msgid "Logout" +msgstr "Ho tswa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Tlhahisoleeding ya porofensi e lahlehile, mmeha ho tsela ya ho qala kopo botjha" +msgid "Logout failed" +msgstr "Ho tswa ho hlolehile" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Leqephe le fanweng ha le a fumanwa. URL e bile: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Tlhahisoleseding ya ho tswa e lahlehile" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Leqephe le fanweng ha le a fumanwa. Lebaka e bile: %LEBAKA% URL e bile: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadata ha e a fumanwa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Phasewete ya tlhophiso (auth.adminpassword) ha e a fetolwa ho tswa palong ya tlwaelo. Ka kopo edita faele ya tlhophiso." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Ha o a fana ka setifikeiti se nepahetseng." +msgid "Next" +msgstr "E latelang" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Ha re a amohela karabelo ho tswa ho Mofani wa Boitsebiso." +msgid "No" +msgstr "Tjhe" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Mofani enwa wa Boitsebiso o fumane Kopo ya Netefatso ho tswa ho Mofani wa Tshebeletso, empa ho bile le phoso ha ho leka ho fihlellwa kopo." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Ha ho RelayState" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Mofani wa Boitsebiso o arabetse ka phoso. (Khoutu ya boemo Karabelong ya SAML ha e a atleha)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Ha ho molaetsa wa SAML o fanweng" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "O fihletse tshebeletsano ya SingleLogoutService, empa ha o a fana ka SAML LogoutRequest kapa LogoutResponse. Ka kopo lemoha hore ntlha ena ya bofelo ha e a rerelwa ho fihlellwa ka kotloloho." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "Ha ho kopo ya SAML e fanweng" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 -msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." -msgstr "O fihletse tshebeletsano ya Tshaeno ya Hang, empa ha o a fan aka Kopo ya Netefatso ya SAML. Ka kopo lemoha hore ntlha ena ya bofelo ha e a rerelwa ho fihlellwa ka kotloloho." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Ha ho karabelo ya SAML e fanweng" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Kgeloho e sa rarollwang e lahlilwe." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Ha ho phihlello" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Netefatso e hlolehile: setifikeiti se rometsweng ke sebadi sa hao ha se tsejwe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Ha ho setifikeiti" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Netefatso e kgaoditswe ke mosebedisi" +msgid "No identity providers found. Cannot continue." +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Ekaba mosebedisi wa lebitso la mosebedisi le fanweng ha a fumanwe, kapa phasewete eo o e fananeng e fosahetse. Ka kopo hlahloba lebitso la mosebedisi la hao, ebe o leka hape." +msgid "No, cancel" +msgstr "Tjhe" -msgid "Format" -msgstr "Fomata" +msgid "No, only %SP%" +msgstr "Tjhe, %SP% feela" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Dumela, lena ke leqephe la boemo la SimpleSAMLphp. Mona o ka bona hore na seshene ya hao e feletswe ke nako na, hore e nka nako e kae hore e fellwe ke nako le makgabane ohle a hoketsweng sesheneng ya hao." +msgid "On hold" +msgstr "Tshwarisitswe" -msgid "Logout" -msgstr "Ho tswa" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "E le nngwe kapa ho feta ya ditshebeletso tseo o keneng ho tsona ha e tshehetse ho tswa. Ho netefatsa hore diseshene tsohle tsa hao di kwetswe, o kgothaletswa ho kwala sebadi sa webo sa hao." -msgid "SAML Subject" -msgstr "Taba ya SAML" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Ka boikgethelo o ka kenya aterse ya imeile ya hao, bakeng sa batsamaisi hore ba kgone ho ikopanya le wena mabapi le dipotso tse ding ka ditaba tsa hao:" -msgid "Your attributes" -msgstr "Makgabane a hao" +msgid "Organization" +msgstr "Khampani" -msgid "not set" -msgstr "ha e a setwa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Leqephe ha le a fumanwa" + +msgid "Password" +msgstr "Phasewete" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Phasewete ha e a setwa" msgid "Please select the identity provider where you want to authenticate:" msgstr "Ka kopo kgetha mofani wa boitsebiso moo o batlang ho netefatsa:" +msgid "Processing..." +msgstr "E a sebetsa..." + +msgid "Remember" +msgstr "Hopola" + +msgid "Remember me" +msgstr "Nkgopole" + msgid "Remember my choice" msgstr "Hopola kgetho ya ka" +msgid "Remember my username" +msgstr "Hopola lebitso la ka la mosebedisi" + +msgid "Report errors" +msgstr "Tlaleha diphoso" + +msgid "Return to service" +msgstr "E kgutlela tshebeletsong" + +msgid "SAML 2.0 SP Demo Example" +msgstr "Mohlala wa Pontsho wa SAML 2.0 SP" + +msgid "SAML Subject" +msgstr "Taba ya SAML" + msgid "Select" msgstr "Kgetha" msgid "Select your identity provider" msgstr "Kgetha mofani wa boitsebiso wa hao" -msgid "Yes, continue" -msgstr "E" - -msgid "Debug information" -msgstr "Tlhahisoleseding ya debug" +msgid "Send e-mail to help desk" +msgstr "Romela imeile ho ba deske ya thuso" -msgid "E-mail address:" -msgstr "Aterese ya imeile:" +msgid "Send error report" +msgstr "Romela tlaleho ya phoso" -msgid "Explain what you did when this error occurred..." -msgstr "Hlalosa seo o se entseng ha phoso ena e ne e hlaha..." +msgid "Sending message" +msgstr "" -msgid "How to get help" -msgstr "Ka moo o ka fumanang thuso" +msgid "Service Provider" +msgstr "Mofani wa Tshebeletso" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Haeba o tlaleha phoso ena, ka kopo tlaleha hape nomoro ena ya ho sala morao e kgonahatsang hore o fumane seshene ya hao ho di-log ts efumanehang ho sistimi ya motsamaisi:" +msgid "Session size: %SIZE%" +msgstr "Saese ya seshene: %SIZE%" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Ka boikgethelo o ka kenya aterse ya imeile ya hao, bakeng sa batsamaisi hore ba kgone ho ikopanya le wena mabapi le dipotso tse ding ka ditaba tsa hao:" +msgid "Shibboleth demo" +msgstr "Pontsho ya Shibboleth" -msgid "Report errors" -msgstr "Tlaleha diphoso" +msgid "SimpleSAMLphp Diagnostics" +msgstr "Dimanollo tsa SimpleSAMLphp" -msgid "Send error report" -msgstr "Romela tlaleho ya phoso" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp e bonahala e hlophisitswe hampe." -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Tlhahisoleseding ya debug e ka tlase mona e ka nna ya kgahla motsamaisi / deske ya thuso:" +msgid "SimpleSAMLphp error" +msgstr "Phoso ya SimpleSAMLphp" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Mohlomong phoso ena e ka lebaka la boitshwaro bo itseng bo sa lebellwang kapa tlhophiso e fosahetseng ya SimpleSAMLphp. Ikopanye le motsamaisi wa tshebeletso ena ya ho kena, ebe o romela molaetsa wa phoso ka hodimo mona." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "Return to service" -msgstr "E kgutlela tshebeletsong" +msgid "Some error occurred" +msgstr "Ho na le phoso e etsahetseng" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "E le nngwe kapa ho feta ya ditshebeletso tseo o keneng ho tsona ha e tshehetse ho tswa. Ho netefatsa hore diseshene tsohle tsa hao di kwetswe, o kgothaletswa ho kwala sebadi sa webo sa hao." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Tlhahisoleseding ya provense e lahlehile" -msgid "Help! I don't remember my password." -msgstr "Thuso! Ha ke hopole phasewete ya ka." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Tlhahisoleeding ya porofensi e lahlehile, mmeha ho tsela ya ho qala kopo botjha" -msgid "Organization" -msgstr "Khampani" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Mofani wa Boitsebiso o arabetse ka phoso. (Khoutu ya boemo Karabelong ya SAML ha e a atleha)" -msgid "Remember" -msgstr "Hopola" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Netefatso e kgaoditswe ke mosebedisi" -msgid "You have successfully logged out from all services listed above." -msgstr "O tswile ka katleho ditshebeletsong tsohle tse thathamisitsweng ka hodimo mona." +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Tlhahisoleseding ya debug e ka tlase mona e ka nna ya kgahla motsamaisi / deske ya thuso:" msgid "The error report has been sent to the administrators." msgstr "Tlaleho ya phoso e rometswe ho batsamaisi." -msgid "Contact information:" -msgstr "Tlhahisoleseding ya boikopanyo:" - -msgid "Password" -msgstr "Phasewete" - -msgid "Completed" -msgstr "E phethilwe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Leqephe le fanweng ha le a fumanwa. URL e bile: %URL%" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Tshebeletso e kopile hore o inetefatse. Ka kopo kenya lebitso la mosebedisi le phasewete ya hao foromong e ka tlase mona." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Leqephe le fanweng ha le a fumanwa. Lebaka e bile: %LEBAKA% URL e bile: %URL%" -msgid "Change your home organization" -msgstr "Fetola khampani ya lehae ya heno" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Tlhahisoleseding e mabapi le tshebetos ya ho tswa ya hajwale e lahlehile. O tlameha ho kgutlela tshebeletsong eo o neng o leka ho tswa ho yona le ho leka ho tswa hape. Phoso ena e ka bakwa ke phelo nako ya tlhahisoleseding ya ho tswa. Tlhahisoleseding ya ho tswa e bolokwa nako e lekantsweng - ka tlwaelo ke palo ya dihora. Sena se setelele ho feta nako eo tshebetso efe kapa efe ya tlwaelo ya ho tswa e tlamehang ho e nka, ka hona phoso ena e ka nna ya bontsha phoso e nngwe ka tlhophiso esele. Haeba bothata bo phehella, ikopanye le mofani wa tshebeletso wa hao." -msgid "Processing..." -msgstr "E a sebetsa..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Moqadi wa kopo ena ha a fana pharamitha ya RelayState e bontshang hore ho uwe kae ho tloha mona." -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "o Rometse se seng leqepheng la ho kena, empa ka lebaka le sa tsejweng phaewete ha e a romelwa. Ka kopo leka hape." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Dipharamitha tse rometsweng tshebeltsong ya tshibollo di ne di se ho latela ditekanyetso." -msgid "Remember my username" -msgstr "Hopola lebitso la ka la mosebedisi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Yes, all services" -msgstr "E, ditshebeletso tsohle" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Phasewete ya tlhophiso (auth.adminpassword) ha e a fetolwa ho tswa palong ya tlwaelo. Ka kopo edita faele ya tlhophiso." -msgid "Login" -msgstr "Ho kena" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Ho na le phoso kopong e leqepheng lena. Lebaka e bile: %REASON%" -msgid "On hold" -msgstr "Tshwarisitswe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Ho na le tlhophiso e fosahetseng ya kenyo ya ho instola SimpleSAMLphp ya hao. Haeba o motsamaisi wa tshebeletso ena, o tlameha ho etsa bonnete ba hore tlhophiso ya metadata ya hao e setilwe ka nepo." -msgid "AuthData" -msgstr "AuthData" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Mofani enwa wa Boitsebiso o fumane Kopo ya Netefatso ho tswa ho Mofani wa Tshebeletso, empa ho bile le phoso ha ho leka ho fihlellwa kopo." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Ha e kgone ho tswa tshebeletsong e le nngwe kapa ho feta. Ho netefatsa hore diseshene tsohle tsa hao di kwetswe, o kgothaletswa ho kwala sebadi sa webo sa hao." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Ntlha ya bofelo ha e a bulelwa. Hlahloba dikgetho tse tlhophisong ya hao ya SimpleSAMLphp." -msgid "No" -msgstr "Tjhe" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Mohlomong phoso ena e ka lebaka la boitshwaro bo itseng bo sa lebellwang kapa tlhophiso e fosahetseng ya SimpleSAMLphp. Ikopanye le motsamaisi wa tshebeletso ena ya ho kena, ebe o romela molaetsa wa phoso ka hodimo mona." -msgid "Logging out of the following services:" -msgstr "E tswa ditshebeletsong tse latelang:" +msgid "Tracking number" +msgstr "" -msgid "Session size: %SIZE%" -msgstr "Saese ya seshene: %SIZE%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Ha e kgone ho fumana metadata bakeng sa %ID YA SETHEO%" -msgid "You are now successfully logged out from %SP%." -msgstr "Jwale o ntshitswe ka katleho ho %SP%." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Ha e kgone ho tswa tshebeletsong e le nngwe kapa ho feta. Ho netefatsa hore diseshene tsohle tsa hao di kwetswe, o kgothaletswa ho kwala sebadi sa webo sa hao." -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "O kgethile %HOMEORG% jwalo ka khampani ya lehae ya heno. Haeba sena se fosahetse o ka kgetha e nngwe hape." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "SimpleSAMLphp Diagnostics" -msgstr "Dimanollo tsa SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Mokgelo o sa rarollwang" -msgid "Incorrect username or password." -msgstr "Lebitso la mosebedisi kapa phasewete e fosahetse." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Setifikeiti se sa tsejweng" -msgid "Shibboleth demo" -msgstr "Pontsho ya Shibboleth" +msgid "Username" +msgstr "Lebitso la mosebedisi" -msgid "Some error occurred" -msgstr "Ho na le phoso e etsahetseng" +msgid "Warning" +msgstr "" -msgid "SimpleSAMLphp error" -msgstr "Phoso ya SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Ha re a amohela karabelo ho tswa ho Mofani wa Boitsebiso." -msgid "Service Provider" -msgstr "Mofani wa Tshebeletso" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Ha mofani enwa wa boitsebiso a leka ho theha karabelo ya netefatso, phoso e bile teng." msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" msgstr "Ntle le lebitso l ahao la mosebedisi le phasewete o ke ke wa inetefatsa bakeng sa phihlello ho tshebeletso. Ho ka nna ha ba le motho ya ka o thusang. Ikopanye le ba deske ya thuso khampaning ya heno!" -msgid "Next" -msgstr "E latelang" - -msgid "Logout failed" -msgstr "Ho tswa ho hlolehile" - -msgid "You have been logged out." -msgstr "O ntshitswe." +msgid "World" +msgstr "" -msgid "Send e-mail to help desk" -msgstr "Romela imeile ho ba deske ya thuso" +msgid "Yes, all services" +msgstr "E, ditshebeletso tsohle" -msgid "Choose your home organization" -msgstr "Kgetha khampani ya lehae ya hao" +msgid "Yes, continue" +msgstr "E" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Kgutlela leqepheng la ho instola la SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "O fihletse kopano ya Tshebeletso ya Tlhakiso ya Athifekte, empa ha o a fana ka molaetsa wa SAML ArtifactResolve. Ka kopo lemoha hore ntlha ena ya bofelo ha e a rerelwa ho fihlellwa ka kotloloho." -msgid "[Preferred choice]" -msgstr "[Kgetho e kgethwang]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "O fihletse kopano ya Tiiso ya Tshebeletso ya Bareki, empa ha o a fana ka Karabelo ya Netefatso ya SAML. Ka kopo lemoha hore ntlha ena ya bofelo ha e a rerelwa ho fihlellwa ka kotloloho." -msgid "Do you want to logout from all the services above?" -msgstr "Na o batla ho tswa ditshebeletsong tsohle tse ka hodimo moo?" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "O fihletse tshebeletsano ya Tshaeno ya Hang, empa ha o a fan aka Kopo ya Netefatso ya SAML. Ka kopo lemoha hore ntlha ena ya bofelo ha e a rerelwa ho fihlellwa ka kotloloho." -msgid "SAML 2.0 SP Demo Example" -msgstr "Mohlala wa Pontsho wa SAML 2.0 SP" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "O fihletse tshebeletsano ya SingleLogoutService, empa ha o a fana ka SAML LogoutRequest kapa LogoutResponse. Ka kopo lemoha hore ntlha ena ya bofelo ha e a rerelwa ho fihlellwa ka kotloloho." msgid "You are also logged in on these services:" msgstr "Hape o kene ditshebeletsong tsena:" -msgid "Logged out" -msgstr "O ntshitswe" +msgid "You are now successfully logged out from %SP%." +msgstr "Jwale o ntshitswe ka katleho ho %SP%." -msgid "Enter your username and password" -msgstr "Kenya lebitso la mosebedisi le phasewete" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Ha o a fana ka setifikeiti se nepahetseng." -msgid "Help desk homepage" -msgstr "Leqephe la lapeng la ba deske ya thuso" +msgid "You have been logged out." +msgstr "O ntshitswe." -msgid "Login at" -msgstr "Kena ho" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "O kgethile %HOMEORG% jwalo ka khampani ya lehae ya heno. Haeba sena se fosahetse o ka kgetha e nngwe hape." -msgid "No, only %SP%" -msgstr "Tjhe, %SP% feela" +msgid "You have previously chosen to authenticate at" +msgstr "O qadile ka ho kgetha netefatso ho" -msgid "Logging out..." -msgstr "E a tswa..." +msgid "You have successfully logged out from all services listed above." +msgstr "O tswile ka katleho ditshebeletsong tsohle tse thathamisitsweng ka hodimo mona." -msgid "Remember me" -msgstr "Nkgopole" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "o Rometse se seng leqepheng la ho kena, empa ka lebaka le sa tsejweng phaewete ha e a romelwa. Ka kopo leka hape." -msgid "Error report sent" -msgstr "Tlaleho ya phoso e rometswe" +msgid "Your attributes" +msgstr "Makgabane a hao" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "Datha ya seshene ya hao ha e kgone ho fumanwa hona jwale ka lebaka la mathata a sethekeniki. Ka kopo leka hape kamora metsotso e mmalwa." msgid "Your session is valid for %SECONDS% seconds from now." msgstr "Seshene ya hao e na le matla feela bakeng sa metsotswana e %SECONDS% ho tloha hona jwale." -msgid "You have previously chosen to authenticate at" -msgstr "O qadile ka ho kgetha netefatso ho" - -msgid "Choose home organization" -msgstr "Kgetha khampani ya lehae" - -msgid "Error" -msgstr "Phoso" - -msgid "Click to view AuthData" -msgstr "Tlelika ho sheba AuthData" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" -msgid "Username" -msgstr "Lebitso la mosebedisi" +msgid "[Preferred choice]" +msgstr "[Kgetho e kgethwang]" -msgid "No, cancel" -msgstr "Tjhe" +msgid "not set" +msgstr "ha e a setwa" diff --git a/locales/sv/LC_MESSAGES/messages.po b/locales/sv/LC_MESSAGES/messages.po index 3174f07d30..98beccdb3e 100644 --- a/locales/sv/LC_MESSAGES/messages.po +++ b/locales/sv/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Inget SAML-svar tillhandahölls" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Inget SAML-meddelande tillhandahölls" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "En webbtjänst har begärt att du ska logga in. Detta betyder att du behöver ange ditt användarnamn och ditt lösenord i formuläret nedan." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Anknytning" + +msgid "Affiliation at home organization" +msgstr "Grupptillhörighet" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Ett fel har inträffat vid försöket att skapa en SAML-förfrågan." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Ett fel uppstod när utloggningsförfrågan skulle bearbetas." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Ett ohanterat undatag har inträffat. " + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Med avseende på att du är i debugläge kommer du att se innehållet i meddelandet som du skickar:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Inloggning avbruten" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Fel i inloggningskällan %AUTHSOURCE%. Orsaken var:%REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Inloggning mislyckades: Certfikatet som din webbläsare skickade var felaktigt eller kunde inte läsas" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Inloggning mislyckades: Certifikatet som din webbläsare skickade är okänt" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Inloggning mislyckades: Din webbläsare skickade inget certifikat" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Inloggningskällfel" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Felaktigt anrop" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Ogiltig förfrågan till lokaliseringstjänsten (Discovery Service)" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS-error" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "Certifikat" + +msgid "Change your home organization" +msgstr "Ändra vilken organisation du kommer ifrån" + +msgid "Choose home organization" +msgstr "Ändra organisation" + +msgid "Choose your home organization" +msgstr "Välj vilken organisation du kommer ifrån" + +msgid "Common name" +msgstr "Fullständigt namn" + +msgid "Completed" +msgstr "Klar" + +msgid "Configuration check" +msgstr "Konfigurationskontroll" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Konfigurationsfel" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Fel vid skapandet av förfrågan" +msgid "Contact information:" +msgstr "Kontaktinformation:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Ogiltig förfrågan till lokaliseringstjänsten (Discovery Service)" +msgid "Converted metadata" +msgstr "Omformat metadata" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Kunde inte skapa inloggingssvaret" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Felaktigt certifikat" +msgid "Date of birth" +msgstr "Födelsedata" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP-fel" +msgid "Debug information" +msgstr "Detaljer för felsökning" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Utloggningsinformation är borta" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Fel vid utloggningsförfrågan" +msgid "Display name" +msgstr "Visningsnamn" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Fel vi laddandet av metadata" +msgid "Distinguished name (DN) of person's home organization" +msgstr "LDAP-pekare (DN) till personens organisation" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Metadata saknas" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "LDAP-pekare (DN) till personens pimära organisationsenhet" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Ingen åtkomst" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "LDAP-pekare (DN) till personens organisationsenhet" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Inget certfikat" +msgid "Do you want to logout from all the services above?" +msgstr "Vill du logga ut från alla ovanstående tjänster?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Ingen RelayState definierad" +msgid "Domain component (DC)" +msgstr "Domännamnskomponent" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Sessionsinformationen är borttappad" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Hämta X509-certifikaten som PEM-kodade filer." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Sidan finns inte" +msgid "E-mail address:" +msgstr "E-postadress" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Lösenord är inte satt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Antingen finns det ingen användare med angiven användaridentitet eller så har du angivit fel lösenord. Försök igen." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Fel vid bearbetning av svar från IdP" +msgid "Enter your username and password" +msgstr "Ange ditt användarnamn och lösenord" + +msgid "Entitlement regarding the service" +msgstr "Roll(er) i aktuell tjänst" + +msgid "Error" +msgstr "Fel" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Fel vid skapandet av förfrågan" + +msgid "Error in this metadata entry" +msgstr "Fel i dessa metadat" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Fel vi laddandet av metadata" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Fel vid bearbetning av förfrågan från en tjänsteleverantör (Service Provider)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Fel vid bearbetning av svar från IdP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Fel vid utloggningsförfrågan" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Fel mottaget från IdP" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Ohanterat undantag" +msgid "Error report sent" +msgstr "Felrapport skickad" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Okänt certfikat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Ett fel uppstod vid kommunikation med CAS-servern." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Inloggning avbruten" +msgid "Explain what you did when this error occurred..." +msgstr "Förklara hur felet uppstod..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Felaktig användaridentitet eller lösenord" +msgid "Fax number" +msgstr "Faxnummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Du har anropat gränssnittet för Assertion Consumer Service utan att skicka med någon SAML Authentication Responce." +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Fel i inloggningskällan %AUTHSOURCE%. Orsaken var:%REASON%" +msgid "Given name" +msgstr "Förnamn" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Det är ett fel i anropet till denna sida. Orsak: %REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Åter till installationssidan för SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Ett fel uppstod vid kommunikation med CAS-servern." +msgid "Go back to the file list" +msgstr "Gå tillbaka till fillistan" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "Det förfaller som SimpleSAMLphp är felkonfigurerat." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Ett fel har inträffat vid försöket att skapa en SAML-förfrågan." +msgid "Help desk homepage" +msgstr "Hemsida för helpdesk" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Parametrarna som skickades till lokaliseringstjänsten följde inte specifikationen." +msgid "Help! I don't remember my password." +msgstr "Hjälp! Jag kommer inte ihåg mitt lösenord." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "När identitetshanteraren (Identity Provider) försökte skapa inloggingssvaret uppstod ett fel." +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "SimpleSAMLphp har har genererat följande metadata. För att sätta upp en betrodd federation kan du skicka metadata till de parter du har förtroende för." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Inloggning mislyckades: Certfikatet som din webbläsare skickade var felaktigt eller kunde inte läsas" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Detta är stutussidan för SimpleSAMLphp. Här kan du se om sessions giltig har gått ut, hur länge det dröjer innan den går ut samt alla attribut som tillhör sessionen." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP används som användardatabas och när du försöker logga måste LDAP-servern kontaktas. Vid försöket att kontakta LDAP-servern uppstod ett fel." +msgid "Home organization domain name" +msgstr "Domännamn för organisationen" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Informationen om aktuell utloggning har försvunnit. Du bör återvända till tjänsten som du försökte logga ut från och försöka logga ut på nytt. Detta fel kan inträffa om informationen om utloggningen är för gammal. Utloggningsinformationen sparas en begränsad tid, oftas några timmar. Det är längre än vad utloggning bör ta så felet kan indikera något fel med konfigurationen. Om problemet kvarstår kontakta leverantören för den tjänst du försökte logga ut från." +msgid "Home postal address" +msgstr "Hemadress" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Ett fel uppstod när utloggningsförfrågan skulle bearbetas." +msgid "Home telephone" +msgstr "Hemtelefon" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Det finns något fel i konfigurationen i installation av SimpleSAMLphp. Om du är adminstratör av tjänsten ska du kontrollera om konfigurationen av metadata är rätt konfigurerad." +msgid "How to get help" +msgstr "Hur får du hjälp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Kan inte hitta metadata för %ENTITYID%" +msgid "Identity assurance profile" +msgstr "Identitetens tillförlitlighetsprofil" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Denna ändpunkt är inte aktiverad. Kontrollera aktiveringsinställningarna i konfigurationen av SimpleSAMLphp." +msgid "Identity number assigned by public authorities" +msgstr "Officiellt personnummer eller intermimspersonnummer" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Inloggning mislyckades: Din webbläsare skickade inget certifikat" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Om du rapporterar felet bör du också skicka med detta spårnings-ID. Det gör det enklare för den som sköter systemet att felsöka problemet:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Avsändaren av denna förfrågan hade ingen parameter för RelayState vilket medför att nästa plats inte är definierad." +msgid "In SAML 2.0 Metadata XML format:" +msgstr "I SAML 2.0 Metadata XML-format:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Sessionsinformationen är borttappad och det är inte möjligt att återstarta förfrågan" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "I filformatet för simpleSAML, använd detta detta format om SimpleSAMLphp används i mottagende sida:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Den angivna sidan finns inte. URL: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Felaktig användaridentitet eller lösenord" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Den angivna sidan finns inte. Orsak: %REASON% URL: %URL%" +msgid "Incorrect username or password." +msgstr "Fel användarnamn eller lösenord." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Konfigurationslösenordet (auth.adminpassword) är inte ändrat från standardvärdet. Uppdatera kongiruationen med ett nytt lösenord!" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Du tillhandahöll inget godkänt certifikat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Felaktigt certifikat" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Svaret från identitetshanteraren (Identity Provider) är inte accepterat." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Identitetshanteraren (Identity Provider) har tagit emot en inloggningsförfrågan från en tjänsteleverantör (Service Provider) men ett fel uppstod vid bearbetningen av förfrågan." +msgid "JPEG Photo" +msgstr "JPEG-bild" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Identitetshanteraren (Identity Provider) svarade med ett felmeddelande. (Statusmeddelandet i SAML-svaret var ett felmeddelande)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP-fel" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Du har anroppat tjänsten för Single Sing-Out utan att skicka med någon SAML LogoutRequest eller LogoutResponse." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP används som användardatabas och när du försöker logga måste LDAP-servern kontaktas. Vid försöket att kontakta LDAP-servern uppstod ett fel." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Ett ohanterat undatag har inträffat. " +msgid "Labeled URI" +msgstr "Hemsida" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Inloggning mislyckades: Certifikatet som din webbläsare skickade är okänt" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Inloggning avbröts av användaren" +msgid "Legal name" +msgstr "Officiellt (legalt) namn" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Antingen finns det ingen användare med angiven användaridentitet eller så har du angivit fel lösenord. Försök igen." +msgid "Local identity number" +msgstr "Lokal identifierare" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Detta är stutussidan för SimpleSAMLphp. Här kan du se om sessions giltig har gått ut, hur länge det dröjer innan den går ut samt alla attribut som tillhör sessionen." +msgid "Locality" +msgstr "Plats" -msgid "Logout" -msgstr "Logga ut" +msgid "Logged out" +msgstr "Utloggad" -msgid "Your attributes" -msgstr "Dina attribut" +msgid "Logging out of the following services:" +msgstr "Loggar ut från följande tjänster:" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Din session är giltig för %remaining% sekunder från nu." +msgid "Logging out..." +msgstr "Loggar ut..." -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Välj vilken identitetsleverantör du vill logga in med:" +msgid "Login" +msgstr "Logga in" -msgid "Remember my choice" -msgstr "Kom ihåg mitt val" +msgid "Login at" +msgstr "Logga in med" -msgid "Select" -msgstr "Välj" +msgid "Logout" +msgstr "Logga ut" -msgid "Select your identity provider" -msgstr "Välj din identitetsleverantör" +msgid "Logout failed" +msgstr "Utloggning misslyckades" -msgid "Sending message" -msgstr "Skickar meddelande" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Utloggningsinformation är borta" -msgid "Yes, continue" -msgstr "Ja" +msgid "Mail" +msgstr "E-postadress" -msgid "Debug information" -msgstr "Detaljer för felsökning" +msgid "Manager" +msgstr "Chef" -msgid "E-mail address:" -msgstr "E-postadress" +msgid "Message" +msgstr "Meddelande" -msgid "Explain what you did when this error occurred..." -msgstr "Förklara hur felet uppstod..." +msgid "Metadata" +msgstr "Metadata" -msgid "How to get help" -msgstr "Hur får du hjälp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadata saknas" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Om du rapporterar felet bör du också skicka med detta spårnings-ID. Det gör det enklare för den som sköter systemet att felsöka problemet:" +msgid "Metadata overview" +msgstr "Metadataöversikt" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Om du anger din e-postadress kan den som sköter systemet kontakta dig för fler frågor om ditt problem:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "Rapportera fel" +msgid "Mobile" +msgstr "Mobiltelefon" -msgid "Send error report" -msgstr "Skicka felrapporten" +msgid "Next" +msgstr "Nästa" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Detaljerna nedan kan vara av intresse för helpdesk eller de som sköter systemet:" +msgid "Nickname" +msgstr "Smeknamn" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Detta fel beror troligtvis på att oväntat beteende eller felkonfigurering av SimpleSAMLphp. Kontakta den som sköter inloggningtjänsten för att meddela dem ovanstående felmeddelande." +msgid "No" +msgstr "Nej" -msgid "[Preferred choice]" -msgstr "Prioriterat val" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Ingen RelayState definierad" -msgid "Person's principal name at home organization" -msgstr "Användaridentitet vid din organisationen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Inget SAML-meddelande tillhandahölls" -msgid "Superfluous options in config file" -msgstr "Överflödiga alternativ i konfigurationsfilen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "Mobiltelefon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Inget SAML-svar tillhandahölls" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Service Provider (Värd)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Ingen åtkomst" -msgid "Display name" -msgstr "Visningsnamn" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Inget certfikat" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP Metadata" +msgid "No errors found." +msgstr "Inga fel funna." + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "Nej" + +msgid "No, only %SP%" +msgstr "Nej, endast %SP%" msgid "Notices" msgstr "Meddelanden" -msgid "Home telephone" -msgstr "Hemtelefon" +msgid "On hold" +msgstr "Vilande" -msgid "Service Provider" -msgstr "Tjänsteleverantör" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "En eller flera av tjänsterna du är inloggad i kan inte hantera utloggning. För att säkerställa att du inte längre är inloggad i någon tjänst ska du stänga din webbläsare." + +msgid "Optional fields" +msgstr "Frivilliga alternativ" -msgid "Incorrect username or password." -msgstr "Fel användarnamn eller lösenord." +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Om du anger din e-postadress kan den som sköter systemet kontakta dig för fler frågor om ditt problem:" -msgid "Submit message" -msgstr "Skicka meddelande" +msgid "Options missing from config file" +msgstr "Alternativ saknas i konfigurationsfilen" -msgid "Locality" -msgstr "Plats" +msgid "Organization" +msgstr "Organisation" -msgid "The following required fields was not found" -msgstr "Följande nödvändiga alternativ hittades inte" +msgid "Organization name" +msgstr "Namn på organisationen" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "Hämta X509-certifikaten som PEM-kodade filer." +msgid "Organization's legal name" +msgstr "Organisationens legala namn" + +msgid "Organizational homepage" +msgstr "Organisationens hemsida" msgid "Organizational number" msgstr "Organisationsnummer" -msgid "Post office box" -msgstr "Box" +msgid "Organizational unit" +msgstr "Organisationsenhet" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "En webbtjänst har begärt att du ska logga in. Detta betyder att du behöver ange ditt användarnamn och ditt lösenord i formuläret nedan." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Sidan finns inte" -msgid "Error" -msgstr "Fel" +msgid "Parse" +msgstr "Analysera" -msgid "Next" -msgstr "Nästa" +msgid "Password" +msgstr "Lösenord" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "LDAP-pekare (DN) till personens organisationsenhet" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Lösenord är inte satt" -msgid "Converted metadata" -msgstr "Omformat metadata" +msgid "Persistent pseudonymous ID" +msgstr "Varaktig anonym identitet i aktuell tjänst" -msgid "Mail" -msgstr "E-postadress" +msgid "Person's principal name at home organization" +msgstr "Användaridentitet vid din organisationen" -msgid "No, cancel" -msgstr "Nej" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Välj vilken identitetsleverantör du vill logga in med:" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Du har valt %HOMEORG% som organisation du kommer ifrån. Om detta är fel så kan du välja en annan." +msgid "Post office box" +msgstr "Box" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "LDAP-pekare (DN) till personens pimära organisationsenhet" +msgid "Postal address" +msgstr "Postadress" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "För att titta på detaljer för en SAML-entitet klicka på rubriken för SAML-entiteten." +msgid "Postal code" +msgstr "Postkod" -msgid "Enter your username and password" -msgstr "Ange ditt användarnamn och lösenord" +msgid "Preferred language" +msgstr "Önskvärt språk" -msgid "Login at" -msgstr "Logga in med" +msgid "Primary affiliation" +msgstr "Primär anknytning" -msgid "No" -msgstr "Nej" +msgid "Private information elements" +msgstr "Information om vilka attribut som har skyddsbehov" -msgid "Home postal address" -msgstr "Hemadress" +msgid "Remember" +msgstr "Spara samtycke" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP demoexempel" +msgid "Remember my choice" +msgstr "Kom ihåg mitt val" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 Identity Provider (Fjärr)" +msgid "Report errors" +msgstr "Rapportera fel" -msgid "Do you want to logout from all the services above?" -msgstr "Vill du logga ut från alla ovanstående tjänster?" +msgid "Required fields" +msgstr "Nödvändiga alternativ" -msgid "Given name" -msgstr "Förnamn" +msgid "Return to service" +msgstr "Åter till tjänsten" -msgid "Identity assurance profile" -msgstr "Identitetens tillförlitlighetsprofil" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Identity Provider (Värd)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 Identity Provider (Fjärr)" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP demoexempel" -msgid "Organization name" -msgstr "Namn på organisationen" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Du är på väg att skicka ett meddelande. Klicka på skickaknappen för att fortsätta." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP Metadata" -msgid "Home organization domain name" -msgstr "Domännamn för organisationen" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Service Provider (Värd)" -msgid "Go back to the file list" -msgstr "Gå tillbaka till fillistan" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Felrapport skickad" +msgid "Select" +msgstr "Välj" -msgid "Common name" -msgstr "Fullständigt namn" +msgid "Select configuration file to check:" +msgstr "Välj vilken konfigurationfil som ska kontrolleras:" -msgid "Logout failed" -msgstr "Utloggning misslyckades" +msgid "Select your identity provider" +msgstr "Välj din identitetsleverantör" -msgid "Identity number assigned by public authorities" -msgstr "Officiellt personnummer eller intermimspersonnummer" +msgid "Send e-mail to help desk" +msgstr "Skicka e-post till helpdesk" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation Service Provider (Fjärr)" +msgid "Send error report" +msgstr "Skicka felrapporten" -msgid "Some error occurred" -msgstr "Ett fel har inträffat" +msgid "Sending message" +msgstr "Skickar meddelande" -msgid "Organization" -msgstr "Organisation" +msgid "Service Provider" +msgstr "Tjänsteleverantör" -msgid "Choose home organization" -msgstr "Ändra organisation" +msgid "Session size: %SIZE%" +msgstr "Sessionsstorlek: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Varaktig anonym identitet i aktuell tjänst" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metadata" -msgid "No errors found." -msgstr "Inga fel funna." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Identity Provider (Värd)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Service Provider (Värd)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Identity Provider (Fjärr)" -msgid "Required fields" -msgstr "Nödvändiga alternativ" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metadata" -msgid "Domain component (DC)" -msgstr "Domännamnskomponent" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Service Provider (Värd)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 Service Provider (Fjärr)" -msgid "Password" -msgstr "Lösenord" - -msgid "Nickname" -msgstr "Smeknamn" - -msgid "The error report has been sent to the administrators." -msgstr "Felrapporten är skickad till den som sköter systemet." - -msgid "Date of birth" -msgstr "Födelsedata" - -msgid "Private information elements" -msgstr "Information om vilka attribut som har skyddsbehov" - -msgid "You are also logged in on these services:" -msgstr "Du är även inloggad i följande tjänster:" +msgid "Shibboleth demo" +msgstr "Shibboleth demoexempel" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp diagnostik " -msgid "No, only %SP%" -msgstr "Nej, endast %SP%" - -msgid "Username" -msgstr "Användarnamn" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Det förfaller som SimpleSAMLphp är felkonfigurerat." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Åter till installationssidan för SimpleSAMLphp" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp fel" -msgid "You have successfully logged out from all services listed above." -msgstr "Du har loggat ut från alla nedanstående tjänster." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "Du har nu loggat ut från %SP%." +msgid "Some error occurred" +msgstr "Ett fel har inträffat" -msgid "Affiliation" -msgstr "Anknytning" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Sessionsinformationen är borttappad" -msgid "You have been logged out." -msgstr "Du har blivit uloggad. Tack för att du använde denna tjänst." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Sessionsinformationen är borttappad och det är inte möjligt att återstarta förfrågan" -msgid "Return to service" -msgstr "Åter till tjänsten" +msgid "Street" +msgstr "Gata" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation Service Provider (Värd)" +msgid "Submit message" +msgstr "Skicka meddelande" -msgid "Preferred language" -msgstr "Önskvärt språk" +msgid "Superfluous options in config file" +msgstr "Överflödiga alternativ i konfigurationsfilen" msgid "Surname" msgstr "Efternamn" -msgid "The following fields was not recognized" -msgstr "Följande alternativ kändes inte igen" - -msgid "User ID" -msgstr "Användaridentitet" +msgid "Telephone number" +msgstr "Telefonnummer" -msgid "JPEG Photo" -msgstr "JPEG-bild" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Identitetshanteraren (Identity Provider) svarade med ett felmeddelande. (Statusmeddelandet i SAML-svaret var ett felmeddelande)" -msgid "Postal address" -msgstr "Postadress" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Inloggning avbröts av användaren" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "I SAML 2.0 Metadata XML-format:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Detaljerna nedan kan vara av intresse för helpdesk eller de som sköter systemet:" -msgid "Logging out of the following services:" -msgstr "Loggar ut från följande tjänster:" +msgid "The error report has been sent to the administrators." +msgstr "Felrapporten är skickad till den som sköter systemet." -msgid "Labeled URI" -msgstr "Hemsida" +msgid "The following fields was not recognized" +msgstr "Följande alternativ kändes inte igen" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Identity Provider (Värd)" +msgid "The following optional fields was not found" +msgstr "Följande frivilliga alternativ hittades inte" -msgid "Metadata" -msgstr "Metadata" +msgid "The following required fields was not found" +msgstr "Följande nödvändiga alternativ hittades inte" -msgid "Login" -msgstr "Logga in" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Den angivna sidan finns inte. URL: %URL%" -msgid "Yes, all services" -msgstr "Ja, alla tjänster" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Den angivna sidan finns inte. Orsak: %REASON% URL: %URL%" -msgid "Logged out" -msgstr "Utloggad" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Informationen om aktuell utloggning har försvunnit. Du bör återvända till tjänsten som du försökte logga ut från och försöka logga ut på nytt. Detta fel kan inträffa om informationen om utloggningen är för gammal. Utloggningsinformationen sparas en begränsad tid, oftas några timmar. Det är längre än vad utloggning bör ta så felet kan indikera något fel med konfigurationen. Om problemet kvarstår kontakta leverantören för den tjänst du försökte logga ut från." -msgid "Postal code" -msgstr "Postkod" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Avsändaren av denna förfrågan hade ingen parameter för RelayState vilket medför att nästa plats inte är definierad." -msgid "Logging out..." -msgstr "Loggar ut..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Parametrarna som skickades till lokaliseringstjänsten följde inte specifikationen." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Identity Provider (Värd)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Primär anknytning" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Konfigurationslösenordet (auth.adminpassword) är inte ändrat från standardvärdet. Uppdatera kongiruationen med ett nytt lösenord!" -msgid "XML metadata" -msgstr "XML-metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Det är ett fel i anropet till denna sida. Orsak: %REASON%" -msgid "Telephone number" -msgstr "Telefonnummer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Det finns något fel i konfigurationen i installation av SimpleSAMLphp. Om du är adminstratör av tjänsten ska du kontrollera om konfigurationen av metadata är rätt konfigurerad." -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Kan inte logga ut från eller flera tjänster. För att vara säker på att du fortfarande inte är inloggad ska du stänga igen alla dina webbläsarfönster." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Identitetshanteraren (Identity Provider) har tagit emot en inloggningsförfrågan från en tjänsteleverantör (Service Provider) men ett fel uppstod vid bearbetningen av förfrågan." -msgid "Entitlement regarding the service" -msgstr "Roll(er) i aktuell tjänst" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Denna ändpunkt är inte aktiverad. Kontrollera aktiveringsinställningarna i konfigurationen av SimpleSAMLphp." -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Metadata" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Detta fel beror troligtvis på att oväntat beteende eller felkonfigurering av SimpleSAMLphp. Kontakta den som sköter inloggningtjänsten för att meddela dem ovanstående felmeddelande." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "Med avseende på att du är i debugläge kommer du att se innehållet i meddelandet som du skickar:" +msgid "Title" +msgstr "Titel" -msgid "Certificates" -msgstr "Certifikat" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "För att titta på detaljer för en SAML-entitet klicka på rubriken för SAML-entiteten." -msgid "Remember" -msgstr "Spara samtycke" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "LDAP-pekare (DN) till personens organisation" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Kan inte hitta metadata för %ENTITYID%" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Du är på väg att skicka ett meddelande. Klicka på skickalänken för att fortsätta." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Kan inte logga ut från eller flera tjänster. För att vara säker på att du fortfarande inte är inloggad ska du stänga igen alla dina webbläsarfönster." -msgid "Organizational unit" -msgstr "Organisationsenhet" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "Lokal identifierare" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Ohanterat undantag" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Okänt certfikat" -msgid "Change your home organization" -msgstr "Ändra vilken organisation du kommer ifrån" +msgid "User ID" +msgstr "Användaridentitet" msgid "User's password hash" msgstr "Användarens lösenordshash" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "I filformatet för simpleSAML, använd detta detta format om SimpleSAMLphp används i mottagende sida:" - -msgid "Completed" -msgstr "Klar" - -msgid "Select configuration file to check:" -msgstr "Välj vilken konfigurationfil som ska kontrolleras:" - -msgid "On hold" -msgstr "Vilande" +msgid "Username" +msgstr "Användarnamn" -msgid "Help! I don't remember my password." -msgstr "Hjälp! Jag kommer inte ihåg mitt lösenord." +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP demoexempel" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "Du kan stänga av debugläget i SimpleSAMLphps globala konfigurationsfil config/config.php." +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation Service Provider (Fjärr)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp fel" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation Service Provider (Värd)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "En eller flera av tjänsterna du är inloggad i kan inte hantera utloggning. För att säkerställa att du inte längre är inloggad i någon tjänst ska du stänga din webbläsare." +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "Organisationens legala namn" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Svaret från identitetshanteraren (Identity Provider) är inte accepterat." -msgid "Options missing from config file" -msgstr "Alternativ saknas i konfigurationsfilen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "När identitetshanteraren (Identity Provider) försökte skapa inloggingssvaret uppstod ett fel." -msgid "The following optional fields was not found" -msgstr "Följande frivilliga alternativ hittades inte" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Tyvärr kan du inte logga in i tjänsten om du inte har ditt användarnamn och ditt lösenord. Ta kontakt med din organisations support eller helpdesk för att få hjälp." -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Du kan hämta metadata i XML-format på dedicerad URL:" +msgid "World" +msgstr "" -msgid "Street" -msgstr "Gata" +msgid "XML metadata" +msgstr "XML-metadata" -msgid "Message" -msgstr "Meddelande" +msgid "Yes, all services" +msgstr "Ja, alla tjänster" -msgid "Contact information:" -msgstr "Kontaktinformation:" +msgid "Yes, continue" +msgstr "Ja" -msgid "Legal name" -msgstr "Officiellt (legalt) namn" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "Frivilliga alternativ" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Du har anropat gränssnittet för Assertion Consumer Service utan att skicka med någon SAML Authentication Responce." -msgid "You have previously chosen to authenticate at" -msgstr "Du har tidigare valt att logga in med" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Du skicka in en inloggningsförfrågan men det verkar som om ditt lösenord inte fanns med i förfrågan. Försök igen!" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Du har anroppat tjänsten för Single Sing-Out utan att skicka med någon SAML LogoutRequest eller LogoutResponse." -msgid "Fax number" -msgstr "Faxnummer" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Du är på väg att skicka ett meddelande. Klicka på skickaknappen för att fortsätta." -msgid "Shibboleth demo" -msgstr "Shibboleth demoexempel" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Du är på väg att skicka ett meddelande. Klicka på skickalänken för att fortsätta." -msgid "Error in this metadata entry" -msgstr "Fel i dessa metadat" +msgid "You are also logged in on these services:" +msgstr "Du är även inloggad i följande tjänster:" -msgid "Session size: %SIZE%" -msgstr "Sessionsstorlek: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Du har kommit till en tjänst som ännu inte är i drift. Denna autentisieringskonfiguration är för testning och tidig produktionskontroll. Om någon har skickat dig en länk hit och du inte är en en testare har du troligtvis fått fel länk." -msgid "Parse" -msgstr "Analysera" +msgid "You are now successfully logged out from %SP%." +msgstr "Du har nu loggat ut från %SP%." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Tyvärr kan du inte logga in i tjänsten om du inte har ditt användarnamn och ditt lösenord. Ta kontakt med din organisations support eller helpdesk för att få hjälp." +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Du kan hämta metadata i XML-format på dedicerad URL:" -msgid "Choose your home organization" -msgstr "Välj vilken organisation du kommer ifrån" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Du kan stänga av debugläget i SimpleSAMLphps globala konfigurationsfil config/config.php." -msgid "Send e-mail to help desk" -msgstr "Skicka e-post till helpdesk" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Du tillhandahöll inget godkänt certifikat" -msgid "Metadata overview" -msgstr "Metadataöversikt" +msgid "You have been logged out." +msgstr "Du har blivit uloggad. Tack för att du använde denna tjänst." -msgid "Title" -msgstr "Titel" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Du har valt %HOMEORG% som organisation du kommer ifrån. Om detta är fel så kan du välja en annan." -msgid "Manager" -msgstr "Chef" +msgid "You have previously chosen to authenticate at" +msgstr "Du har tidigare valt att logga in med" -msgid "Affiliation at home organization" -msgstr "Grupptillhörighet" +msgid "You have successfully logged out from all services listed above." +msgstr "Du har loggat ut från alla nedanstående tjänster." -msgid "Help desk homepage" -msgstr "Hemsida för helpdesk" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Du skicka in en inloggningsförfrågan men det verkar som om ditt lösenord inte fanns med i förfrågan. Försök igen!" -msgid "Configuration check" -msgstr "Konfigurationskontroll" +msgid "Your attributes" +msgstr "Dina attribut" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Identity Provider (Fjärr)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "SimpleSAMLphp har har genererat följande metadata. För att sätta upp en betrodd federation kan du skicka metadata till de parter du har förtroende för." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Din session är giltig för %remaining% sekunder från nu." -msgid "Organizational homepage" -msgstr "Organisationens hemsida" +msgid "[Preferred choice]" +msgstr "Prioriterat val" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Du har kommit till en tjänst som ännu inte är i drift. Denna autentisieringskonfiguration är för testning och tidig produktionskontroll. Om någon har skickat dig en länk hit och du inte är en en testare har du troligtvis fått fel länk." +msgid "not set" +msgstr "" diff --git a/locales/th/LC_MESSAGES/attributes.po b/locales/th/LC_MESSAGES/attributes.po new file mode 100644 index 0000000000..340fa5e281 --- /dev/null +++ b/locales/th/LC_MESSAGES/attributes.po @@ -0,0 +1,2058 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "aRecord" +msgstr "aRecord" + +msgid "urn:mace:dir:attribute-def:aRecord" +msgstr "urn:mace:dir:attribute-def:aRecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.26" +msgstr "urn:oid:0.9.2342.19200300.100.1.26" + +msgid "aliasedEntryName" +msgstr "aliasedEntryName" + +msgid "urn:mace:dir:attribute-def:aliasedEntryName" +msgstr "urn:mace:dir:attribute-def:aliasedEntryName" + +msgid "urn:oid:2.5.4.1" +msgstr "urn:oid:2.5.4.1" + +msgid "aliasedObjectName" +msgstr "aliasedObjectName" + +msgid "urn:mace:dir:attribute-def:aliasedObjectName" +msgstr "urn:mace:dir:attribute-def:aliasedObjectName" + +msgid "associatedDomain" +msgstr "associatedDomain" + +msgid "urn:mace:dir:attribute-def:associatedDomain" +msgstr "urn:mace:dir:attribute-def:associatedDomain" + +msgid "urn:oid:0.9.2342.19200300.100.1.37" +msgstr "urn:oid:0.9.2342.19200300.100.1.37" + +msgid "associatedName" +msgstr "associatedName" + +msgid "urn:mace:dir:attribute-def:associatedName" +msgstr "urn:mace:dir:attribute-def:associatedName" + +msgid "urn:oid:0.9.2342.19200300.100.1.38" +msgstr "urn:oid:0.9.2342.19200300.100.1.38" + +msgid "audio" +msgstr "audio" + +msgid "urn:mace:dir:attribute-def:audio" +msgstr "urn:mace:dir:attribute-def:audio" + +msgid "urn:oid:0.9.2342.19200300.100.1.55" +msgstr "urn:oid:0.9.2342.19200300.100.1.55" + +msgid "authorityRevocationList" +msgstr "authorityRevocationList" + +msgid "urn:mace:dir:attribute-def:authorityRevocationList" +msgstr "urn:mace:dir:attribute-def:authorityRevocationList" + +msgid "urn:oid:2.5.4.38" +msgstr "urn:oid:2.5.4.38" + +msgid "buildingName" +msgstr "buildingName" + +msgid "urn:mace:dir:attribute-def:buildingName" +msgstr "urn:mace:dir:attribute-def:buildingName" + +msgid "urn:oid:0.9.2342.19200300.100.1.48" +msgstr "urn:oid:0.9.2342.19200300.100.1.48" + +msgid "businessCategory" +msgstr "businessCategory" + +msgid "urn:mace:dir:attribute-def:businessCategory" +msgstr "urn:mace:dir:attribute-def:businessCategory" + +msgid "urn:oid:2.5.4.15" +msgstr "urn:oid:2.5.4.15" + +msgid "c" +msgstr "c" + +msgid "urn:mace:dir:attribute-def:c" +msgstr "urn:mace:dir:attribute-def:c" + +msgid "urn:oid:2.5.4.6" +msgstr "urn:oid:2.5.4.6" + +msgid "cACertificate" +msgstr "cACertificate" + +msgid "urn:mace:dir:attribute-def:cACertificate" +msgstr "urn:mace:dir:attribute-def:cACertificate" + +msgid "urn:oid:2.5.4.37" +msgstr "urn:oid:2.5.4.37" + +msgid "cNAMERecord" +msgstr "cNAMERecord" + +msgid "urn:mace:dir:attribute-def:cNAMERecord" +msgstr "urn:mace:dir:attribute-def:cNAMERecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.31" +msgstr "urn:oid:0.9.2342.19200300.100.1.31" + +msgid "carLicense" +msgstr "carLicense" + +msgid "urn:mace:dir:attribute-def:carLicense" +msgstr "urn:mace:dir:attribute-def:carLicense" + +msgid "urn:oid:2.16.840.1.113730.3.1.1" +msgstr "urn:oid:2.16.840.1.113730.3.1.1" + +msgid "certificateRevocationList" +msgstr "certificateRevocationList" + +msgid "urn:mace:dir:attribute-def:certificateRevocationList" +msgstr "urn:mace:dir:attribute-def:certificateRevocationList" + +msgid "urn:oid:2.5.4.39" +msgstr "urn:oid:2.5.4.39" + +# English string: Common name +msgid "cn" +msgstr "ชื่อสามัญ" + +# English string: Common name +msgid "urn:mace:dir:attribute-def:cn" +msgstr "ชื่อสามัญ" + +# English string: Common name +msgid "urn:oid:2.5.4.3" +msgstr "ชื่อสามัญ" + +msgid "co" +msgstr "co" + +msgid "urn:mace:dir:attribute-def:co" +msgstr "urn:mace:dir:attribute-def:co" + +msgid "urn:oid:0.9.2342.19200300.100.1.43" +msgstr "urn:oid:0.9.2342.19200300.100.1.43" + +msgid "commonName" +msgstr "commonName" + +msgid "urn:mace:dir:attribute-def:commonName" +msgstr "urn:mace:dir:attribute-def:commonName" + +msgid "countryName" +msgstr "countryName" + +msgid "urn:mace:dir:attribute-def:countryName" +msgstr "urn:mace:dir:attribute-def:countryName" + +msgid "crossCertificatePair" +msgstr "crossCertificatePair" + +msgid "urn:mace:dir:attribute-def:crossCertificatePair" +msgstr "urn:mace:dir:attribute-def:crossCertificatePair" + +msgid "urn:oid:2.5.4.40" +msgstr "urn:oid:2.5.4.40" + +msgid "dITRedirect" +msgstr "dITRedirect" + +msgid "urn:mace:dir:attribute-def:dITRedirect" +msgstr "urn:mace:dir:attribute-def:dITRedirect" + +msgid "urn:oid:0.9.2342.19200300.100.1.54" +msgstr "urn:oid:0.9.2342.19200300.100.1.54" + +msgid "dSAQuality" +msgstr "dSAQuality" + +msgid "urn:mace:dir:attribute-def:dSAQuality" +msgstr "urn:mace:dir:attribute-def:dSAQuality" + +msgid "urn:oid:0.9.2342.19200300.100.1.49" +msgstr "urn:oid:0.9.2342.19200300.100.1.49" + +# English string: Domain component (DC) +msgid "dc" +msgstr "Domain component(DC)" + +# English string: Domain component (DC) +msgid "urn:mace:dir:attribute-def:dc" +msgstr "Domain component(DC)" + +# English string: Domain component (DC) +msgid "urn:oid:0.9.2342.19200300.100.1.25" +msgstr "Domain component(DC)" + +msgid "deltaRevocationList" +msgstr "deltaRevocationList" + +msgid "urn:mace:dir:attribute-def:deltaRevocationList" +msgstr "urn:mace:dir:attribute-def:deltaRevocationList" + +msgid "urn:oid:2.5.4.53" +msgstr "urn:oid:2.5.4.53" + +msgid "departmentNumber" +msgstr "departmentNumber" + +msgid "urn:mace:dir:attribute-def:departmentNumber" +msgstr "urn:mace:dir:attribute-def:departmentNumber" + +msgid "urn:oid:2.16.840.1.113730.3.1.2" +msgstr "urn:oid:2.16.840.1.113730.3.1.2" + +msgid "description" +msgstr "description" + +msgid "urn:mace:dir:attribute-def:description" +msgstr "urn:mace:dir:attribute-def:description" + +msgid "urn:oid:2.5.4.13" +msgstr "urn:oid:2.5.4.13" + +msgid "destinationIndicator" +msgstr "destinationIndicator" + +msgid "urn:mace:dir:attribute-def:destinationIndicator" +msgstr "urn:mace:dir:attribute-def:destinationIndicator" + +msgid "urn:oid:2.5.4.27" +msgstr "urn:oid:2.5.4.27" + +# English string: Display name +msgid "displayName" +msgstr "ชื่อที่แสดง" + +# English string: Display name +msgid "urn:mace:dir:attribute-def:displayName" +msgstr "ชื่อที่แสดง" + +# English string: Display name +msgid "urn:oid:2.16.840.1.113730.3.1.241" +msgstr "ชื่อที่แสดง" + +msgid "distinguishedName" +msgstr "distinguishedName" + +msgid "urn:mace:dir:attribute-def:distinguishedName" +msgstr "urn:mace:dir:attribute-def:distinguishedName" + +msgid "urn:oid:2.5.4.49" +msgstr "urn:oid:2.5.4.49" + +msgid "dmdName" +msgstr "dmdName" + +msgid "urn:mace:dir:attribute-def:dmdName" +msgstr "urn:mace:dir:attribute-def:dmdName" + +msgid "urn:oid:2.5.4.54" +msgstr "urn:oid:2.5.4.54" + +msgid "dnQualifier" +msgstr "dnQualifier" + +msgid "urn:mace:dir:attribute-def:dnQualifier" +msgstr "urn:mace:dir:attribute-def:dnQualifier" + +msgid "urn:oid:2.5.4.46" +msgstr "urn:oid:2.5.4.46" + +msgid "documentAuthor" +msgstr "documentAuthor" + +msgid "urn:mace:dir:attribute-def:documentAuthor" +msgstr "urn:mace:dir:attribute-def:documentAuthor" + +msgid "urn:oid:0.9.2342.19200300.100.1.14" +msgstr "urn:oid:0.9.2342.19200300.100.1.14" + +msgid "documentIdentifier" +msgstr "documentIdentifier" + +msgid "urn:mace:dir:attribute-def:documentIdentifier" +msgstr "urn:mace:dir:attribute-def:documentIdentifier" + +msgid "urn:oid:0.9.2342.19200300.100.1.11" +msgstr "urn:oid:0.9.2342.19200300.100.1.11" + +msgid "documentLocation" +msgstr "documentLocation" + +msgid "urn:mace:dir:attribute-def:documentLocation" +msgstr "urn:mace:dir:attribute-def:documentLocation" + +msgid "urn:oid:0.9.2342.19200300.100.1.15" +msgstr "urn:oid:0.9.2342.19200300.100.1.15" + +msgid "documentPublisher" +msgstr "documentPublisher" + +msgid "urn:mace:dir:attribute-def:documentPublisher" +msgstr "urn:mace:dir:attribute-def:documentPublisher" + +msgid "urn:oid:0.9.2342.19200300.100.1.56" +msgstr "urn:oid:0.9.2342.19200300.100.1.56" + +msgid "documentTitle" +msgstr "documentTitle" + +msgid "urn:mace:dir:attribute-def:documentTitle" +msgstr "urn:mace:dir:attribute-def:documentTitle" + +msgid "urn:oid:0.9.2342.19200300.100.1.12" +msgstr "urn:oid:0.9.2342.19200300.100.1.12" + +msgid "documentVersion" +msgstr "documentVersion" + +msgid "urn:mace:dir:attribute-def:documentVersion" +msgstr "urn:mace:dir:attribute-def:documentVersion" + +msgid "urn:oid:0.9.2342.19200300.100.1.13" +msgstr "urn:oid:0.9.2342.19200300.100.1.13" + +msgid "domainComponent" +msgstr "domainComponent" + +msgid "urn:mace:dir:attribute-def:domainComponent" +msgstr "urn:mace:dir:attribute-def:domainComponent" + +msgid "drink" +msgstr "drink" + +msgid "urn:mace:dir:attribute-def:drink" +msgstr "urn:mace:dir:attribute-def:drink" + +msgid "urn:oid:0.9.2342.19200300.100.1.5" +msgstr "urn:oid:0.9.2342.19200300.100.1.5" + +# English string: Organizational homepage +msgid "eduOrgHomePageURI" +msgstr "หน้าแรกขององค์กร" + +# English string: Organizational homepage +msgid "urn:mace:dir:attribute-def:eduOrgHomePageURI" +msgstr "หน้าแรกขององค์กร" + +# English string: Organizational homepage +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.2" +msgstr "หน้าแรกขององค์กร" + +msgid "eduOrgIdentityAuthNPolicyURI" +msgstr "eduOrgIdentityAuthNPolicyURI" + +msgid "urn:mace:dir:attribute-def:eduOrgIdentityAuthNPolicyURI" +msgstr "urn:mace:dir:attribute-def:eduOrgIdentityAuthNPolicyURI" + +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.3" +msgstr "urn:oid:1.3.6.1.4.1.5923.1.2.1.3" + +# English string: Organization's legal name +msgid "eduOrgLegalName" +msgstr "ชื่อทางกฎหมายขององค์กร" + +# English string: Organization's legal name +msgid "urn:mace:dir:attribute-def:eduOrgLegalName" +msgstr "ชื่อทางกฎหมายขององค์กร" + +# English string: Organization's legal name +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.4" +msgstr "ชื่อทางกฎหมายขององค์กร" + +msgid "eduOrgSuperiorURI" +msgstr "eduOrgSuperiorURI" + +msgid "urn:mace:dir:attribute-def:eduOrgSuperiorURI" +msgstr "urn:mace:dir:attribute-def:eduOrgSuperiorURI" + +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.5" +msgstr "urn:oid:1.3.6.1.4.1.5923.1.2.1.5" + +msgid "eduOrgWhitePagesURI" +msgstr "eduOrgWhitePagesURI" + +msgid "urn:mace:dir:attribute-def:eduOrgWhitePagesURI" +msgstr "urn:mace:dir:attribute-def:eduOrgWhitePagesURI" + +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.6" +msgstr "urn:oid:1.3.6.1.4.1.5923.1.2.1.6" + +# English string: Affiliation +msgid "eduPersonAffiliation" +msgstr "สังกัด" + +# English string: Affiliation +msgid "urn:mace:dir:attribute-def:eduPersonAffiliation" +msgstr "สังกัด" + +# English string: Affiliation +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.1" +msgstr "สังกัด" + +# English string: Identity assurance profile +msgid "eduPersonAssurance" +msgstr "โปรไฟล์การรับรองตัวตน" + +# English string: Identity assurance profile +msgid "urn:mace:dir:attribute-def:eduPersonAssurance" +msgstr "โปรไฟล์การรับรองตัวตน" + +# English string: Identity assurance profile +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.11" +msgstr "โปรไฟล์การรับรองตัวตน" + +# English string: Entitlement regarding the service +msgid "eduPersonEntitlement" +msgstr "สิทธิในการรับบริการ" + +# English string: Entitlement regarding the service +msgid "urn:mace:dir:attribute-def:eduPersonEntitlement" +msgstr "สิทธิในการรับบริการ" + +# English string: Entitlement regarding the service +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.7" +msgstr "สิทธิในการรับบริการ" + +# English string: Nickname +msgid "eduPersonNickname" +msgstr "ชื่อเล่น" + +# English string: Nickname +msgid "urn:mace:dir:attribute-def:eduPersonNickname" +msgstr "ชื่อเล่น" + +# English string: Nickname +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.2" +msgstr "ชื่อเล่น" + +# English string: Distinguished name (DN) of person's home organization +msgid "eduPersonOrgDN" +msgstr "Distinguished name (DN) of person's home organization" + +# English string: Distinguished name (DN) of person's home organization +msgid "urn:mace:dir:attribute-def:eduPersonOrgDN" +msgstr "Distinguished name (DN) of person's home organization" + +# English string: Distinguished name (DN) of person's home organization +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.3" +msgstr "Distinguished name (DN) of person's home organization" + +# English string: Distinguished name (DN) of the person's home organizational unit +msgid "eduPersonOrgUnitDN" +msgstr "Distinguished name (DN) of the person's home organizational unit" + +# English string: Distinguished name (DN) of the person's home organizational unit +msgid "urn:mace:dir:attribute-def:eduPersonOrgUnitDN" +msgstr "Distinguished name (DN) of the person's home organizational unit" + +# English string: Distinguished name (DN) of the person's home organizational unit +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.4" +msgstr "Distinguished name (DN) of the person's home organizational unit" + +# English string: Primary affiliation +msgid "eduPersonPrimaryAffiliation" +msgstr "สังกัดหลัก" + +# English string: Primary affiliation +msgid "urn:mace:dir:attribute-def:eduPersonPrimaryAffiliation" +msgstr "สังกัดหลัก" + +# English string: Primary affiliation +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.5" +msgstr "สังกัดหลัก" + +# English string: Distinguished name (DN) of person's primary Organizational Unit +msgid "eduPersonPrimaryOrgUnitDN" +msgstr "Distinguished name (DN) of person's primary Organizational Unit" + +# English string: Distinguished name (DN) of person's primary Organizational Unit +msgid "urn:mace:dir:attribute-def:eduPersonPrimaryOrgUnitDN" +msgstr "Distinguished name (DN) of person's primary Organizational Unit" + +# English string: Distinguished name (DN) of person's primary Organizational Unit +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.8" +msgstr "Distinguished name (DN) of person's primary Organizational Unit" + +# English string: Person's principal name at home organization +msgid "eduPersonPrincipalName" +msgstr "ชื่อบุคคลหลักที่บ้านองค์กร" + +# English string: Person's principal name at home organization +msgid "urn:mace:dir:attribute-def:eduPersonPrincipalName" +msgstr "ชื่อบุคคลหลักที่บ้านองค์กร" + +# English string: Person's principal name at home organization +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.6" +msgstr "ชื่อบุคคลหลักที่บ้านองค์กร" + +# English string: Affiliation at home organization +msgid "eduPersonScopedAffiliation" +msgstr "การสังกัดองค์กรที่บ้าน" + +# English string: Affiliation at home organization +msgid "urn:mace:dir:attribute-def:eduPersonScopedAffiliation" +msgstr "การสังกัดองค์กรที่บ้าน" + +# English string: Affiliation at home organization +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.9" +msgstr "การสังกัดองค์กรที่บ้าน" + +# English string: Persistent pseudonymous ID +msgid "eduPersonTargetedID" +msgstr "Persistent pseudonymous ID" + +# English string: Persistent pseudonymous ID +msgid "urn:mace:dir:attribute-def:eduPersonTargetedID" +msgstr "Persistent pseudonymous ID" + +# English string: Persistent pseudonymous ID +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.10" +msgstr "Persistent pseudonymous ID" + +# English string: Person's non-reassignable, persistent pseudonymous ID at home organization +msgid "eduPersonUniqueId" +msgstr "eduPersonUniqueId" + +# English string: Person's non-reassignable, persistent pseudonymous ID at home organization +msgid "urn:mace:dir:attribute-def:eduPersonUniqueId" +msgstr "urn:mace:dir:attribute-def:eduPersonUniqueId" + +# English string: Person's non-reassignable, persistent pseudonymous ID at home organization +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.13" +msgstr "urn:oid:1.3.6.1.4.1.5923.1.1.1.13" + +msgid "email" +msgstr "email" + +msgid "urn:mace:dir:attribute-def:email" +msgstr "urn:mace:dir:attribute-def:email" + +msgid "urn:oid:1.2.840.113549.1.9.1" +msgstr "urn:oid:1.2.840.113549.1.9.1" + +msgid "emailAddress" +msgstr "emailAddress" + +msgid "urn:mace:dir:attribute-def:emailAddress" +msgstr "urn:mace:dir:attribute-def:emailAddress" + +msgid "employeeNumber" +msgstr "employeeNumber" + +msgid "urn:mace:dir:attribute-def:employeeNumber" +msgstr "urn:mace:dir:attribute-def:employeeNumber" + +msgid "urn:oid:2.16.840.1.113730.3.1.3" +msgstr "urn:oid:2.16.840.1.113730.3.1.3" + +msgid "employeeType" +msgstr "employeeType" + +msgid "urn:mace:dir:attribute-def:employeeType" +msgstr "urn:mace:dir:attribute-def:employeeType" + +msgid "urn:oid:2.16.840.1.113730.3.1.4" +msgstr "urn:oid:2.16.840.1.113730.3.1.4" + +msgid "enhancedSearchGuide" +msgstr "enhancedSearchGuide" + +msgid "urn:mace:dir:attribute-def:enhancedSearchGuide" +msgstr "urn:mace:dir:attribute-def:enhancedSearchGuide" + +msgid "urn:oid:2.5.4.47" +msgstr "urn:oid:2.5.4.47" + +# English string: Fax number +msgid "facsimileTelephoneNumber" +msgstr "หมายเลขโทรสาร" + +# English string: Fax number +msgid "urn:mace:dir:attribute-def:facsimileTelephoneNumber" +msgstr "หมายเลขโทรสาร" + +# English string: Fax number +msgid "urn:oid:2.5.4.23" +msgstr "หมายเลขโทรสาร" + +msgid "favouriteDrink" +msgstr "favouriteDrink" + +msgid "urn:mace:dir:attribute-def:favouriteDrink" +msgstr "urn:mace:dir:attribute-def:favouriteDrink" + +msgid "fax" +msgstr "fax" + +msgid "urn:mace:dir:attribute-def:fax" +msgstr "urn:mace:dir:attribute-def:fax" + +msgid "federationFeideSchemaVersion" +msgstr "federationFeideSchemaVersion" + +msgid "urn:mace:dir:attribute-def:federationFeideSchemaVersion" +msgstr "urn:mace:dir:attribute-def:federationFeideSchemaVersion" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.9" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.9" + +msgid "friendlyCountryName" +msgstr "friendlyCountryName" + +msgid "urn:mace:dir:attribute-def:friendlyCountryName" +msgstr "urn:mace:dir:attribute-def:friendlyCountryName" + +msgid "generationQualifier" +msgstr "generationQualifier" + +msgid "urn:mace:dir:attribute-def:generationQualifier" +msgstr "urn:mace:dir:attribute-def:generationQualifier" + +msgid "urn:oid:2.5.4.44" +msgstr "urn:oid:2.5.4.44" + +# English string: Given name +msgid "givenName" +msgstr "ชื่อที่ตั้ง" + +# English string: Given name +msgid "urn:mace:dir:attribute-def:givenName" +msgstr "ชื่อที่ตั้ง" + +# English string: Given name +msgid "urn:oid:2.5.4.42" +msgstr "ชื่อที่ตั้ง" + +msgid "gn" +msgstr "gn" + +msgid "urn:mace:dir:attribute-def:gn" +msgstr "urn:mace:dir:attribute-def:gn" + +# English string: Home telephone +msgid "homePhone" +msgstr "โทรศัพท์บ้าน" + +# English string: Home telephone +msgid "urn:mace:dir:attribute-def:homePhone" +msgstr "โทรศัพท์บ้าน" + +# English string: Home telephone +msgid "urn:oid:0.9.2342.19200300.100.1.20" +msgstr "โทรศัพท์บ้าน" + +# English string: Home postal address +msgid "homePostalAddress" +msgstr "ที่อยู่ไปรษณีย์บ้าน" + +# English string: Home postal address +msgid "urn:mace:dir:attribute-def:homePostalAddress" +msgstr "ที่อยู่ไปรษณีย์บ้าน" + +# English string: Home postal address +msgid "urn:oid:0.9.2342.19200300.100.1.39" +msgstr "ที่อยู่ไปรษณีย์บ้าน" + +msgid "homeTelephoneNumber" +msgstr "homeTelephoneNumber" + +msgid "urn:mace:dir:attribute-def:homeTelephoneNumber" +msgstr "urn:mace:dir:attribute-def:homeTelephoneNumber" + +msgid "host" +msgstr "host" + +msgid "urn:mace:dir:attribute-def:host" +msgstr "urn:mace:dir:attribute-def:host" + +msgid "urn:oid:0.9.2342.19200300.100.1.9" +msgstr "urn:oid:0.9.2342.19200300.100.1.9" + +msgid "houseIdentifier" +msgstr "houseIdentifier" + +msgid "urn:mace:dir:attribute-def:houseIdentifier" +msgstr "urn:mace:dir:attribute-def:houseIdentifier" + +msgid "urn:oid:2.5.4.51" +msgstr "urn:oid:2.5.4.51" + +msgid "info" +msgstr "info" + +msgid "urn:mace:dir:attribute-def:info" +msgstr "urn:mace:dir:attribute-def:info" + +msgid "urn:oid:0.9.2342.19200300.100.1.4" +msgstr "urn:oid:0.9.2342.19200300.100.1.4" + +msgid "initials" +msgstr "initials" + +msgid "urn:mace:dir:attribute-def:initials" +msgstr "urn:mace:dir:attribute-def:initials" + +msgid "urn:oid:2.5.4.43" +msgstr "urn:oid:2.5.4.43" + +msgid "internationaliSDNNumber" +msgstr "internationaliSDNNumber" + +msgid "urn:mace:dir:attribute-def:internationaliSDNNumber" +msgstr "urn:mace:dir:attribute-def:internationaliSDNNumber" + +msgid "urn:oid:2.5.4.25" +msgstr "urn:oid:2.5.4.25" + +msgid "janetMailbox" +msgstr "janetMailbox" + +msgid "urn:mace:dir:attribute-def:janetMailbox" +msgstr "urn:mace:dir:attribute-def:janetMailbox" + +msgid "urn:oid:0.9.2342.19200300.100.1.46" +msgstr "urn:oid:0.9.2342.19200300.100.1.46" + +# English string: JPEG Photo +msgid "jpegPhoto" +msgstr "ภาพถ่าย JPEG" + +# English string: JPEG Photo +msgid "urn:mace:dir:attribute-def:jpegPhoto" +msgstr "ภาพถ่าย JPEG" + +# English string: JPEG Photo +msgid "urn:oid:0.9.2342.19200300.100.1.60" +msgstr "ภาพถ่าย JPEG" + +msgid "knowledgeInformation" +msgstr "knowledgeInformation" + +msgid "urn:mace:dir:attribute-def:knowledgeInformation" +msgstr "urn:mace:dir:attribute-def:knowledgeInformation" + +msgid "urn:oid:2.5.4.2" +msgstr "urn:oid:2.5.4.2" + +# English string: Locality +msgid "l" +msgstr "ท้องถิ่น" + +# English string: Locality +msgid "urn:mace:dir:attribute-def:l" +msgstr "ท้องถิ่น" + +# English string: Locality +msgid "urn:oid:2.5.4.7" +msgstr "ท้องถิ่น" + +# English string: Labeled URI +msgid "labeledURI" +msgstr "URI ที่มีป้ายกำกับ" + +# English string: Labeled URI +msgid "urn:mace:dir:attribute-def:labeledURI" +msgstr "URI ที่มีป้ายกำกับ" + +# English string: Labeled URI +msgid "urn:oid:1.3.6.1.4.1.250.1.57" +msgstr "URI ที่มีป้ายกำกับ" + +msgid "localityName" +msgstr "localityName" + +msgid "urn:mace:dir:attribute-def:localityName" +msgstr "urn:mace:dir:attribute-def:localityName" + +msgid "mDRecord" +msgstr "mDRecord" + +msgid "urn:mace:dir:attribute-def:mDRecord" +msgstr "urn:mace:dir:attribute-def:mDRecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.27" +msgstr "urn:oid:0.9.2342.19200300.100.1.27" + +msgid "mXRecord" +msgstr "mXRecord" + +msgid "urn:mace:dir:attribute-def:mXRecord" +msgstr "urn:mace:dir:attribute-def:mXRecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.28" +msgstr "urn:oid:0.9.2342.19200300.100.1.28" + +# English string: Mail +msgid "mail" +msgstr "อีเมล" + +# English string: Mail +msgid "urn:mace:dir:attribute-def:mail" +msgstr "อีเมล" + +# English string: Mail +msgid "urn:oid:0.9.2342.19200300.100.1.3" +msgstr "อีเมล" + +msgid "mailPreferenceOption" +msgstr "mailPreferenceOption" + +msgid "urn:mace:dir:attribute-def:mailPreferenceOption" +msgstr "urn:mace:dir:attribute-def:mailPreferenceOption" + +msgid "urn:oid:0.9.2342.19200300.100.1.47" +msgstr "urn:oid:0.9.2342.19200300.100.1.47" + +# English string: Manager +msgid "manager" +msgstr "ผู้จัดการ" + +# English string: Manager +msgid "urn:mace:dir:attribute-def:manager" +msgstr "ผู้จัดการ" + +# English string: Manager +msgid "urn:oid:0.9.2342.19200300.100.1.10" +msgstr "ผู้จัดการ" + +msgid "member" +msgstr "member" + +msgid "urn:mace:dir:attribute-def:member" +msgstr "urn:mace:dir:attribute-def:member" + +msgid "urn:oid:2.5.4.31" +msgstr "urn:oid:2.5.4.31" + +# English string: Mobile +msgid "mobile" +msgstr "มือถือ" + +# English string: Mobile +msgid "urn:mace:dir:attribute-def:mobile" +msgstr "มือถือ" + +# English string: Mobile +msgid "urn:oid:0.9.2342.19200300.100.1.41" +msgstr "มือถือ" + +msgid "mobileTelephoneNumber" +msgstr "mobileTelephoneNumber" + +msgid "urn:mace:dir:attribute-def:mobileTelephoneNumber" +msgstr "urn:mace:dir:attribute-def:mobileTelephoneNumber" + +msgid "nSRecord" +msgstr "nSRecord" + +msgid "urn:mace:dir:attribute-def:nSRecord" +msgstr "urn:mace:dir:attribute-def:nSRecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.29" +msgstr "urn:oid:0.9.2342.19200300.100.1.29" + +msgid "name" +msgstr "name" + +msgid "urn:mace:dir:attribute-def:name" +msgstr "urn:mace:dir:attribute-def:name" + +msgid "urn:oid:2.5.4.41" +msgstr "urn:oid:2.5.4.41" + +msgid "norEduOrgAcronym" +msgstr "norEduOrgAcronym" + +msgid "urn:mace:dir:attribute-def:norEduOrgAcronym" +msgstr "urn:mace:dir:attribute-def:norEduOrgAcronym" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.6" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.6" + +# English string: Organizational number +msgid "norEduOrgNIN" +msgstr "หมายเลของค์กร" + +# English string: Organizational number +msgid "urn:mace:dir:attribute-def:norEduOrgNIN" +msgstr "หมายเลของค์กร" + +# English string: Organizational number +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.12" +msgstr "หมายเลของค์กร" + +msgid "norEduOrgSchemaVersion" +msgstr "norEduOrgSchemaVersion" + +msgid "urn:mace:dir:attribute-def:norEduOrgSchemaVersion" +msgstr "urn:mace:dir:attribute-def:norEduOrgSchemaVersion" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.11" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.11" + +msgid "norEduOrgUniqueIdentifier" +msgstr "norEduOrgUniqueIdentifier" + +msgid "urn:mace:dir:attribute-def:norEduOrgUniqueIdentifier" +msgstr "urn:mace:dir:attribute-def:norEduOrgUniqueIdentifier" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.7" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.7" + +msgid "norEduOrgUniqueNumber" +msgstr "norEduOrgUniqueNumber" + +msgid "urn:mace:dir:attribute-def:norEduOrgUniqueNumber" +msgstr "urn:mace:dir:attribute-def:norEduOrgUniqueNumber" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.1" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.1" + +msgid "norEduOrgUnitUniqueIdentifier" +msgstr "norEduOrgUnitUniqueIdentifier" + +msgid "urn:mace:dir:attribute-def:norEduOrgUnitUniqueIdentifier" +msgstr "urn:mace:dir:attribute-def:norEduOrgUnitUniqueIdentifier" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.8" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.8" + +msgid "norEduOrgUnitUniqueNumber" +msgstr "norEduOrgUnitUniqueNumber" + +msgid "urn:mace:dir:attribute-def:norEduOrgUnitUniqueNumber" +msgstr "urn:mace:dir:attribute-def:norEduOrgUnitUniqueNumber" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.2" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.2" + +# English string: Date of birth +msgid "norEduPersonBirthDate" +msgstr "วันเกิด" + +# English string: Date of birth +msgid "urn:mace:dir:attribute-def:norEduPersonBirthDate" +msgstr "วันเกิด" + +# English string: Date of birth +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.3" +msgstr "วันเกิด" + +# English string: Local identity number +msgid "norEduPersonLIN" +msgstr "หมายเลขประจำตัวประชาชนท้องถิ่น" + +# English string: Local identity number +msgid "urn:mace:dir:attribute-def:norEduPersonLIN" +msgstr "หมายเลขประจำตัวประชาชนท้องถิ่น" + +# English string: Local identity number +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.4" +msgstr "หมายเลขประจำตัวประชาชนท้องถิ่น" + +# English string: Identity number assigned by public authorities +msgid "norEduPersonNIN" +msgstr "หมายเลขประจำตัวที่ทางราชการกำหนด" + +# English string: Identity number assigned by public authorities +msgid "urn:mace:dir:attribute-def:norEduPersonNIN" +msgstr "หมายเลขประจำตัวที่ทางราชการกำหนด" + +# English string: Identity number assigned by public authorities +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.5" +msgstr "หมายเลขประจำตัวที่ทางราชการกำหนด" + +# English string: Organization name +msgid "o" +msgstr "ชื่อองค์กร" + +# English string: Organization name +msgid "urn:mace:dir:attribute-def:o" +msgstr "ชื่อองค์กร" + +# English string: Organization name +msgid "urn:oid:2.5.4.10" +msgstr "ชื่อองค์กร" + +msgid "objectClass" +msgstr "objectClass" + +msgid "urn:mace:dir:attribute-def:objectClass" +msgstr "urn:mace:dir:attribute-def:objectClass" + +msgid "urn:oid:2.5.4.0" +msgstr "urn:oid:2.5.4.0" + +msgid "organizationName" +msgstr "organizationName" + +msgid "urn:mace:dir:attribute-def:organizationName" +msgstr "urn:mace:dir:attribute-def:organizationName" + +msgid "organizationalStatus" +msgstr "organizationalStatus" + +msgid "urn:mace:dir:attribute-def:organizationalStatus" +msgstr "urn:mace:dir:attribute-def:organizationalStatus" + +msgid "urn:oid:0.9.2342.19200300.100.1.45" +msgstr "urn:oid:0.9.2342.19200300.100.1.45" + +msgid "organizationalUnitName" +msgstr "organizationalUnitName" + +msgid "urn:mace:dir:attribute-def:organizationalUnitName" +msgstr "urn:mace:dir:attribute-def:organizationalUnitName" + +# English string: Organizational unit +msgid "urn:oid:2.5.4.11" +msgstr "หน่วยงานองค์กร" + +msgid "otherMailbox" +msgstr "otherMailbox" + +msgid "urn:mace:dir:attribute-def:otherMailbox" +msgstr "urn:mace:dir:attribute-def:otherMailbox" + +msgid "urn:oid:0.9.2342.19200300.100.1.22" +msgstr "urn:oid:0.9.2342.19200300.100.1.22" + +# English string: Organizational unit +msgid "ou" +msgstr "หน่วยงานองค์กร" + +# English string: Organizational unit +msgid "urn:mace:dir:attribute-def:ou" +msgstr "หน่วยงานองค์กร" + +msgid "owner" +msgstr "owner" + +msgid "urn:mace:dir:attribute-def:owner" +msgstr "urn:mace:dir:attribute-def:owner" + +msgid "urn:oid:2.5.4.32" +msgstr "urn:oid:2.5.4.32" + +msgid "pager" +msgstr "pager" + +msgid "urn:mace:dir:attribute-def:pager" +msgstr "urn:mace:dir:attribute-def:pager" + +msgid "urn:oid:0.9.2342.19200300.100.1.42" +msgstr "urn:oid:0.9.2342.19200300.100.1.42" + +msgid "pagerTelephoneNumber" +msgstr "pagerTelephoneNumber" + +msgid "urn:mace:dir:attribute-def:pagerTelephoneNumber" +msgstr "urn:mace:dir:attribute-def:pagerTelephoneNumber" + +# English string: Service-specific pseudonymous ID at home organization +msgid "pairwise-id" +msgstr "pairwise-id" + +# English string: Service-specific pseudonymous ID at home organization +msgid "urn:oasis:names:tc:SAML:attribute:pairwise-id" +msgstr "urn:oasis:names:tc:SAML:attribute:pairwise-id" + +msgid "personalSignature" +msgstr "personalSignature" + +msgid "urn:mace:dir:attribute-def:personalSignature" +msgstr "urn:mace:dir:attribute-def:personalSignature" + +msgid "urn:oid:0.9.2342.19200300.100.1.53" +msgstr "urn:oid:0.9.2342.19200300.100.1.53" + +msgid "personalTitle" +msgstr "personalTitle" + +msgid "urn:mace:dir:attribute-def:personalTitle" +msgstr "urn:mace:dir:attribute-def:personalTitle" + +msgid "urn:oid:0.9.2342.19200300.100.1.40" +msgstr "urn:oid:0.9.2342.19200300.100.1.40" + +msgid "photo" +msgstr "photo" + +msgid "urn:mace:dir:attribute-def:photo" +msgstr "urn:mace:dir:attribute-def:photo" + +msgid "urn:oid:0.9.2342.19200300.100.1.7" +msgstr "urn:oid:0.9.2342.19200300.100.1.7" + +msgid "physicalDeliveryOfficeName" +msgstr "physicalDeliveryOfficeName" + +msgid "urn:mace:dir:attribute-def:physicalDeliveryOfficeName" +msgstr "urn:mace:dir:attribute-def:physicalDeliveryOfficeName" + +msgid "urn:oid:2.5.4.19" +msgstr "urn:oid:2.5.4.19" + +msgid "pkcs9email" +msgstr "pkcs9email" + +msgid "urn:mace:dir:attribute-def:pkcs9email" +msgstr "urn:mace:dir:attribute-def:pkcs9email" + +# English string: Post office box +msgid "postOfficeBox" +msgstr "ตู้ไปรษณีย์" + +# English string: Post office box +msgid "urn:mace:dir:attribute-def:postOfficeBox" +msgstr "ตู้ไปรษณีย์" + +# English string: Post office box +msgid "urn:oid:2.5.4.18" +msgstr "ตู้ไปรษณีย์" + +# English string: Postal address +msgid "postalAddress" +msgstr "ที่อยู่ไปรษณีย์" + +# English string: Postal address +msgid "urn:mace:dir:attribute-def:postalAddress" +msgstr "ที่อยู่ไปรษณีย์" + +# English string: Postal address +msgid "urn:oid:2.5.4.16" +msgstr "ที่อยู่ไปรษณีย์" + +# English string: Postal code +msgid "postalCode" +msgstr "รหัส Zip / ไปรษณีย์" + +# English string: Postal code +msgid "urn:mace:dir:attribute-def:postalCode" +msgstr "รหัส Zip / ไปรษณีย์" + +# English string: Postal code +msgid "urn:oid:2.5.4.17" +msgstr "รหัส Zip / ไปรษณีย์" + +msgid "preferredDeliveryMethod" +msgstr "preferredDeliveryMethod" + +msgid "urn:mace:dir:attribute-def:preferredDeliveryMethod" +msgstr "urn:mace:dir:attribute-def:preferredDeliveryMethod" + +msgid "urn:oid:2.5.4.28" +msgstr "urn:oid:2.5.4.28" + +# English string: Preferred language +msgid "preferredLanguage" +msgstr "ภาษาที่ต้องการ" + +# English string: Preferred language +msgid "urn:mace:dir:attribute-def:preferredLanguage" +msgstr "ภาษาที่ต้องการ" + +# English string: Preferred language +msgid "urn:oid:2.16.840.1.113730.3.1.39" +msgstr "ภาษาที่ต้องการ" + +msgid "presentationAddress" +msgstr "presentationAddress" + +msgid "urn:mace:dir:attribute-def:presentationAddress" +msgstr "urn:mace:dir:attribute-def:presentationAddress" + +msgid "urn:oid:2.5.4.29" +msgstr "urn:oid:2.5.4.29" + +msgid "protocolInformation" +msgstr "protocolInformation" + +msgid "urn:mace:dir:attribute-def:protocolInformation" +msgstr "urn:mace:dir:attribute-def:protocolInformation" + +msgid "urn:oid:2.5.4.48" +msgstr "urn:oid:2.5.4.48" + +msgid "pseudonym" +msgstr "pseudonym" + +msgid "urn:mace:dir:attribute-def:pseudonym" +msgstr "urn:mace:dir:attribute-def:pseudonym" + +msgid "urn:oid:2.5.4.65" +msgstr "urn:oid:2.5.4.65" + +msgid "registeredAddress" +msgstr "registeredAddress" + +msgid "urn:mace:dir:attribute-def:registeredAddress" +msgstr "urn:mace:dir:attribute-def:registeredAddress" + +msgid "urn:oid:2.5.4.26" +msgstr "urn:oid:2.5.4.26" + +msgid "rfc822Mailbox" +msgstr "rfc822Mailbox" + +msgid "urn:mace:dir:attribute-def:rfc822Mailbox" +msgstr "urn:mace:dir:attribute-def:rfc822Mailbox" + +msgid "roleOccupant" +msgstr "roleOccupant" + +msgid "urn:mace:dir:attribute-def:roleOccupant" +msgstr "urn:mace:dir:attribute-def:roleOccupant" + +msgid "urn:oid:2.5.4.33" +msgstr "urn:oid:2.5.4.33" + +msgid "roomNumber" +msgstr "roomNumber" + +msgid "urn:mace:dir:attribute-def:roomNumber" +msgstr "urn:mace:dir:attribute-def:roomNumber" + +msgid "urn:oid:0.9.2342.19200300.100.1.6" +msgstr "urn:oid:0.9.2342.19200300.100.1.6" + +msgid "sOARecord" +msgstr "sOARecord" + +msgid "urn:mace:dir:attribute-def:sOARecord" +msgstr "urn:mace:dir:attribute-def:sOARecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.30" +msgstr "urn:oid:0.9.2342.19200300.100.1.30" + +msgid "schacCountryOfCitizenship" +msgstr "schacCountryOfCitizenship" + +msgid "urn:mace:terena.org:attribute-def:schacCountryOfCitizenship" +msgstr "urn:mace:terena.org:attribute-def:schacCountryOfCitizenship" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.5" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.5" + +msgid "urn:schac:attribute-def:schacCountryOfCitizenship" +msgstr "urn:schac:attribute-def:schacCountryOfCitizenship" + +msgid "schacCountryOfResidence" +msgstr "schacCountryOfResidence" + +msgid "urn:mace:terena.org:attribute-def:schacCountryOfResidence" +msgstr "urn:mace:terena.org:attribute-def:schacCountryOfResidence" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.11" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.11" + +msgid "urn:schac:attribute-def:schacCountryOfResidence" +msgstr "urn:schac:attribute-def:schacCountryOfResidence" + +msgid "schacDateOfBirth" +msgstr "schacDateOfBirth" + +msgid "urn:mace:terena.org:attribute-def:schacDateOfBirth" +msgstr "urn:mace:terena.org:attribute-def:schacDateOfBirth" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.3" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.3" + +msgid "urn:schac:attribute-def:schacDateOfBirth" +msgstr "urn:schac:attribute-def:schacDateOfBirth" + +msgid "schacExpiryDate" +msgstr "schacExpiryDate" + +msgid "urn:mace:terena.org:attribute-def:schacExpiryDate" +msgstr "urn:mace:terena.org:attribute-def:schacExpiryDate" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.17" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.17" + +msgid "urn:schac:attribute-def:schacExpiryDate" +msgstr "urn:schac:attribute-def:schacExpiryDate" + +msgid "schacGender" +msgstr "schacGender" + +msgid "urn:mace:terena.org:attribute-def:schacGender" +msgstr "urn:mace:terena.org:attribute-def:schacGender" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.2" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.2" + +msgid "urn:schac:attribute-def:schacGender" +msgstr "urn:schac:attribute-def:schacGender" + +# English string: Home organization domain name +msgid "schacHomeOrganization" +msgstr "Home organization domain name" + +# English string: Home organization domain name +msgid "urn:mace:terena.org:attribute-def:schacHomeOrganization" +msgstr "Home organization domain name" + +# English string: Home organization domain name +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.9" +msgstr "Home organization domain name" + +# English string: Home organization domain name +msgid "urn:schac:attribute-def:schacHomeOrganization" +msgstr "Home organization domain name" + +msgid "schacHomeOrganizationType" +msgstr "schacHomeOrganizationType" + +msgid "urn:mace:terena.org:attribute-def:schacHomeOrganizationType" +msgstr "urn:mace:terena.org:attribute-def:schacHomeOrganizationType" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.10" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.10" + +msgid "urn:schac:attribute-def:schacHomeOrganizationType" +msgstr "urn:schac:attribute-def:schacHomeOrganizationType" + +msgid "schacMotherTongue" +msgstr "schacMotherTongue" + +msgid "urn:mace:terena.org:attribute-def:schacMotherTongue" +msgstr "urn:mace:terena.org:attribute-def:schacMotherTongue" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.1" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.1" + +msgid "urn:schac:attribute-def:schacMotherTongue" +msgstr "urn:schac:attribute-def:schacMotherTongue" + +msgid "schacPersonalPosition" +msgstr "schacPersonalPosition" + +msgid "urn:mace:terena.org:attribute-def:schacPersonalPosition" +msgstr "urn:mace:terena.org:attribute-def:schacPersonalPosition" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.13" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.13" + +msgid "urn:schac:attribute-def:schacPersonalPosition" +msgstr "urn:schac:attribute-def:schacPersonalPosition" + +msgid "schacPersonalTitle" +msgstr "schacPersonalTitle" + +msgid "urn:mace:terena.org:attribute-def:schacPersonalTitle" +msgstr "urn:mace:terena.org:attribute-def:schacPersonalTitle" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.8" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.8" + +msgid "urn:schac:attribute-def:schacPersonalTitle" +msgstr "urn:schac:attribute-def:schacPersonalTitle" + +msgid "schacPersonalUniqueCode" +msgstr "schacPersonalUniqueCode" + +msgid "urn:mace:terena.org:attribute-def:schacPersonalUniqueCode" +msgstr "urn:mace:terena.org:attribute-def:schacPersonalUniqueCode" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.14" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.14" + +msgid "urn:schac:attribute-def:schacPersonalUniqueCode" +msgstr "urn:schac:attribute-def:schacPersonalUniqueCode" + +msgid "schacPersonalUniqueID" +msgstr "schacPersonalUniqueID" + +msgid "urn:mace:terena.org:attribute-def:schacPersonalUniqueID" +msgstr "urn:mace:terena.org:attribute-def:schacPersonalUniqueID" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.15" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.15" + +msgid "urn:schac:attribute-def:schacPersonalUniqueID" +msgstr "urn:schac:attribute-def:schacPersonalUniqueID" + +msgid "schacPlaceOfBirth" +msgstr "schacPlaceOfBirth" + +msgid "urn:mace:terena.org:attribute-def:schacPlaceOfBirth" +msgstr "urn:mace:terena.org:attribute-def:schacPlaceOfBirth" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.4" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.4" + +msgid "urn:schac:attribute-def:schacPlaceOfBirth" +msgstr "urn:schac:attribute-def:schacPlaceOfBirth" + +msgid "schacProjectMembership" +msgstr "schacProjectMembership" + +msgid "urn:mace:terena.org:attribute-def:schacProjectMembership" +msgstr "urn:mace:terena.org:attribute-def:schacProjectMembership" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.20" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.20" + +msgid "urn:schac:attribute-def:schacProjectMembership" +msgstr "urn:schac:attribute-def:schacProjectMembership" + +msgid "schacProjectSpecificRole" +msgstr "schacProjectSpecificRole" + +msgid "urn:mace:terena.org:attribute-def:schacProjectSpecificRole" +msgstr "urn:mace:terena.org:attribute-def:schacProjectSpecificRole" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.21" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.21" + +msgid "urn:schac:attribute-def:schacProjectSpecificRole" +msgstr "urn:schac:attribute-def:schacProjectSpecificRole" + +msgid "schacSn1" +msgstr "schacSn1" + +msgid "urn:mace:terena.org:attribute-def:schacSn1" +msgstr "urn:mace:terena.org:attribute-def:schacSn1" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.6" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.6" + +msgid "urn:schac:attribute-def:schacSn1" +msgstr "urn:schac:attribute-def:schacSn1" + +msgid "schacSn2" +msgstr "schacSn2" + +msgid "urn:mace:terena.org:attribute-def:schacSn2" +msgstr "urn:mace:terena.org:attribute-def:schacSn2" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.7" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.7" + +msgid "urn:schac:attribute-def:schacSn2" +msgstr "urn:schac:attribute-def:schacSn2" + +msgid "schacUserPresenceID" +msgstr "schacUserPresenceID" + +msgid "urn:mace:terena.org:attribute-def:schacUserPresenceID" +msgstr "urn:mace:terena.org:attribute-def:schacUserPresenceID" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.12" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.12" + +msgid "urn:schac:attribute-def:schacUserPresenceID" +msgstr "urn:schac:attribute-def:schacUserPresenceID" + +# English string: Private information elements +msgid "schacUserPrivateAttribute" +msgstr "องค์ประกอบข้อมูลส่วนตัว" + +# English string: Private information elements +msgid "urn:mace:terena.org:attribute-def:schacUserPrivateAttribute" +msgstr "องค์ประกอบข้อมูลส่วนตัว" + +# English string: Private information elements +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.18" +msgstr "องค์ประกอบข้อมูลส่วนตัว" + +# English string: Private information elements +msgid "urn:schac:attribute-def:schacUserPrivateAttribute" +msgstr "องค์ประกอบข้อมูลส่วนตัว" + +msgid "schacUserStatus" +msgstr "schacUserStatus" + +msgid "urn:mace:terena.org:attribute-def:schacUserStatus" +msgstr "urn:mace:terena.org:attribute-def:schacUserStatus" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.19" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.19" + +msgid "urn:schac:attribute-def:schacUserStatus" +msgstr "urn:schac:attribute-def:schacUserStatus" + +msgid "schacYearOfBirth" +msgstr "schacYearOfBirth" + +msgid "urn:mace:terena.org:attribute-def:schacYearOfBirth" +msgstr "urn:mace:terena.org:attribute-def:schacYearOfBirth" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.0.2.3" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.0.2.3" + +msgid "urn:schac:attribute-def:schacYearOfBirth" +msgstr "urn:schac:attribute-def:schacYearOfBirth" + +msgid "searchGuide" +msgstr "searchGuide" + +msgid "urn:mace:dir:attribute-def:searchGuide" +msgstr "urn:mace:dir:attribute-def:searchGuide" + +msgid "urn:oid:2.5.4.14" +msgstr "urn:oid:2.5.4.14" + +msgid "secretary" +msgstr "secretary" + +msgid "urn:mace:dir:attribute-def:secretary" +msgstr "urn:mace:dir:attribute-def:secretary" + +msgid "urn:oid:0.9.2342.19200300.100.1.21" +msgstr "urn:oid:0.9.2342.19200300.100.1.21" + +msgid "seeAlso" +msgstr "seeAlso" + +msgid "urn:mace:dir:attribute-def:seeAlso" +msgstr "urn:mace:dir:attribute-def:seeAlso" + +msgid "urn:oid:2.5.4.34" +msgstr "urn:oid:2.5.4.34" + +msgid "serialNumber" +msgstr "serialNumber" + +msgid "urn:mace:dir:attribute-def:serialNumber" +msgstr "urn:mace:dir:attribute-def:serialNumber" + +msgid "urn:oid:2.5.4.5" +msgstr "urn:oid:2.5.4.5" + +msgid "singleLevelQuality" +msgstr "singleLevelQuality" + +msgid "urn:mace:dir:attribute-def:singleLevelQuality" +msgstr "urn:mace:dir:attribute-def:singleLevelQuality" + +msgid "urn:oid:0.9.2342.19200300.100.1.50" +msgstr "urn:oid:0.9.2342.19200300.100.1.50" + +msgid "sisSchoolGrade" +msgstr "sisSchoolGrade" + +msgid "urn:mace:dir:attribute-def:sisSchoolGrade" +msgstr "urn:mace:dir:attribute-def:sisSchoolGrade" + +msgid "urn:oid:1.2.752.194.10.2.2" +msgstr "urn:oid:1.2.752.194.10.2.2" + +msgid "sisLegalGuardianFor" +msgstr "sisLegalGuardianFor" + +msgid "urn:mace:dir:attribute-def:sisLegalGuardianFor" +msgstr "urn:mace:dir:attribute-def:sisLegalGuardianFor" + +msgid "urn:oid:1.2.752.194.10.2.1" +msgstr "urn:oid:1.2.752.194.10.2.1" + +# English string: Surname +msgid "sn" +msgstr "นามสกุล" + +# English string: Surname +msgid "urn:mace:dir:attribute-def:sn" +msgstr "นามสกุล" + +# English string: Surname +msgid "urn:oid:2.5.4.4" +msgstr "นามสกุล" + +msgid "st" +msgstr "st" + +msgid "urn:mace:dir:attribute-def:st" +msgstr "urn:mace:dir:attribute-def:st" + +msgid "urn:oid:2.5.4.8" +msgstr "urn:oid:2.5.4.8" + +msgid "stateOrProvinceName" +msgstr "stateOrProvinceName" + +msgid "urn:mace:dir:attribute-def:stateOrProvinceName" +msgstr "urn:mace:dir:attribute-def:stateOrProvinceName" + +# English string: Street +msgid "street" +msgstr "ถนน" + +# English string: Street +msgid "urn:mace:dir:attribute-def:street" +msgstr "ถนน" + +# English string: Street +msgid "urn:oid:2.5.4.9" +msgstr "ถนน" + +msgid "streetAddress" +msgstr "streetAddress" + +msgid "urn:mace:dir:attribute-def:streetAddress" +msgstr "urn:mace:dir:attribute-def:streetAddress" + +# English string: Pseudonymous ID at home organization +msgid "subject-id" +msgstr "subject-id" + +# English string: Pseudonymous ID at home organization +msgid "urn:oasis:names:tc:SAML:attribute:subject-id" +msgstr "urn:oasis:names:tc:SAML:attribute:subject-id" + +msgid "subtreeMaximumQuality" +msgstr "subtreeMaximumQuality" + +msgid "urn:mace:dir:attribute-def:subtreeMaximumQuality" +msgstr "urn:mace:dir:attribute-def:subtreeMaximumQuality" + +msgid "urn:oid:0.9.2342.19200300.100.1.52" +msgstr "urn:oid:0.9.2342.19200300.100.1.52" + +msgid "subtreeMinimumQuality" +msgstr "subtreeMinimumQuality" + +msgid "urn:mace:dir:attribute-def:subtreeMinimumQuality" +msgstr "urn:mace:dir:attribute-def:subtreeMinimumQuality" + +msgid "urn:oid:0.9.2342.19200300.100.1.51" +msgstr "urn:oid:0.9.2342.19200300.100.1.51" + +msgid "supportedAlgorithms" +msgstr "supportedAlgorithms" + +msgid "urn:mace:dir:attribute-def:supportedAlgorithms" +msgstr "urn:mace:dir:attribute-def:supportedAlgorithms" + +msgid "urn:oid:2.5.4.52" +msgstr "urn:oid:2.5.4.52" + +msgid "supportedApplicationContext" +msgstr "supportedApplicationContext" + +msgid "urn:mace:dir:attribute-def:supportedApplicationContext" +msgstr "urn:mace:dir:attribute-def:supportedApplicationContext" + +msgid "urn:oid:2.5.4.30" +msgstr "urn:oid:2.5.4.30" + +msgid "surname" +msgstr "surname" + +msgid "urn:mace:dir:attribute-def:surname" +msgstr "urn:mace:dir:attribute-def:surname" + +# English string: Telephone number +msgid "telephoneNumber" +msgstr "เบอร์โทรศัพท์" + +# English string: Telephone number +msgid "urn:mace:dir:attribute-def:telephoneNumber" +msgstr "เบอร์โทรศัพท์" + +# English string: Telephone number +msgid "urn:oid:2.5.4.20" +msgstr "เบอร์โทรศัพท์" + +msgid "teletexTerminalIdentifier" +msgstr "teletexTerminalIdentifier" + +msgid "urn:mace:dir:attribute-def:teletexTerminalIdentifier" +msgstr "urn:mace:dir:attribute-def:teletexTerminalIdentifier" + +msgid "urn:oid:2.5.4.22" +msgstr "urn:oid:2.5.4.22" + +msgid "telexNumber" +msgstr "telexNumber" + +msgid "urn:mace:dir:attribute-def:telexNumber" +msgstr "urn:mace:dir:attribute-def:telexNumber" + +msgid "urn:oid:2.5.4.21" +msgstr "urn:oid:2.5.4.21" + +msgid "textEncodedORAddress" +msgstr "textEncodedORAddress" + +msgid "urn:mace:dir:attribute-def:textEncodedORAddress" +msgstr "urn:mace:dir:attribute-def:textEncodedORAddress" + +msgid "urn:oid:0.9.2342.19200300.100.1.2" +msgstr "urn:oid:0.9.2342.19200300.100.1.2" + +# English string: Title +msgid "title" +msgstr "หัวข้อ" + +# English string: Title +msgid "urn:mace:dir:attribute-def:title" +msgstr "หัวข้อ" + +# English string: Title +msgid "urn:oid:2.5.4.12" +msgstr "หัวข้อ" + +# English string: User ID +msgid "uid" +msgstr "ID ผู้ใช้" + +# English string: User ID +msgid "urn:mace:dir:attribute-def:uid" +msgstr "ID ผู้ใช้" + +# English string: User ID +msgid "urn:oid:0.9.2342.19200300.100.1.1" +msgstr "ID ผู้ใช้" + +msgid "uniqueIdentifier" +msgstr "uniqueIdentifier" + +msgid "urn:mace:dir:attribute-def:uniqueIdentifier" +msgstr "urn:mace:dir:attribute-def:uniqueIdentifier" + +msgid "urn:oid:0.9.2342.19200300.100.1.44" +msgstr "urn:oid:0.9.2342.19200300.100.1.44" + +msgid "uniqueMember" +msgstr "uniqueMember" + +msgid "urn:mace:dir:attribute-def:uniqueMember" +msgstr "urn:mace:dir:attribute-def:uniqueMember" + +msgid "urn:oid:2.5.4.50" +msgstr "urn:oid:2.5.4.50" + +msgid "userCertificate" +msgstr "userCertificate" + +msgid "urn:mace:dir:attribute-def:userCertificate" +msgstr "urn:mace:dir:attribute-def:userCertificate" + +msgid "urn:oid:2.5.4.36" +msgstr "urn:oid:2.5.4.36" + +msgid "userClass" +msgstr "userClass" + +msgid "urn:mace:dir:attribute-def:userClass" +msgstr "urn:mace:dir:attribute-def:userClass" + +msgid "urn:oid:0.9.2342.19200300.100.1.8" +msgstr "urn:oid:0.9.2342.19200300.100.1.8" + +msgid "userPKCS12" +msgstr "userPKCS12" + +msgid "urn:mace:dir:attribute-def:userPKCS12" +msgstr "urn:mace:dir:attribute-def:userPKCS12" + +msgid "urn:oid:2.16.840.1.113730.3.1.216" +msgstr "urn:oid:2.16.840.1.113730.3.1.216" + +# English string: User's password hash +msgid "userPassword" +msgstr "แฮชรหัสผ่านของผู้ใช้" + +# English string: User's password hash +msgid "urn:mace:dir:attribute-def:userPassword" +msgstr "แฮชรหัสผ่านของผู้ใช้" + +# English string: User's password hash +msgid "urn:oid:2.5.4.35" +msgstr "แฮชรหัสผ่านของผู้ใช้" + +msgid "userSMIMECertificate" +msgstr "userSMIMECertificate" + +msgid "urn:mace:dir:attribute-def:userSMIMECertificate" +msgstr "urn:mace:dir:attribute-def:userSMIMECertificate" + +msgid "urn:oid:2.16.840.1.113730.3.1.40" +msgstr "urn:oid:2.16.840.1.113730.3.1.40" + +msgid "userid" +msgstr "userid" + +msgid "urn:mace:dir:attribute-def:userid" +msgstr "urn:mace:dir:attribute-def:userid" + +msgid "x121Address" +msgstr "x121Address" + +msgid "urn:mace:dir:attribute-def:x121Address" +msgstr "urn:mace:dir:attribute-def:x121Address" + +msgid "urn:oid:2.5.4.24" +msgstr "urn:oid:2.5.4.24" + +msgid "x500UniqueIdentifier" +msgstr "x500UniqueIdentifier" + +msgid "urn:mace:dir:attribute-def:x500UniqueIdentifier" +msgstr "urn:mace:dir:attribute-def:x500UniqueIdentifier" + +msgid "urn:oid:2.5.4.45" +msgstr "urn:oid:2.5.4.45" + +# English string: Common name +msgid "facebook_cn" +msgstr "ชื่อสามัญ" + +msgid "http://axschema.org/contact/country/home" +msgstr "http://axschema.org/contact/country/home" + +msgid "openid.sreg.country" +msgstr "openid.sreg.country" + +msgid "facebook.about_me" +msgstr "facebook.about_me" + +msgid "linkedin.summary" +msgstr "linkedin.summary" + +msgid "twitter.description" +msgstr "twitter.description" + +# English string: Display name +msgid "facebook.name" +msgstr "ชื่อที่แสดง" + +# English string: Display name +msgid "http://axschema.org/namePerson/friendly" +msgstr "ชื่อที่แสดง" + +# English string: Display name +msgid "openid.sreg.nickname" +msgstr "ชื่อที่แสดง" + +# English string: Display name +msgid "http://axschema.org/namePerson" +msgstr "ชื่อที่แสดง" + +# English string: Display name +msgid "openid.sreg.fullname" +msgstr "ชื่อที่แสดง" + +# English string: Display name +msgid "twitter.name" +msgstr "ชื่อที่แสดง" + +# English string: Display name +msgid "windowslive.displayName" +msgstr "ชื่อที่แสดง" + +# English string: Person's principal name at home organization +msgid "facebook_user" +msgstr "ชื่อบุคคลหลักที่บ้านองค์กร" + +# English string: Person's principal name at home organization +msgid "linkedin_user" +msgstr "ชื่อบุคคลหลักที่บ้านองค์กร" + +# English string: Person's principal name at home organization +msgid "twitter_screen_n_realm" +msgstr "ชื่อบุคคลหลักที่บ้านองค์กร" + +# English string: Person's principal name at home organization +msgid "windowslive_user" +msgstr "ชื่อบุคคลหลักที่บ้านองค์กร" + +# English string: Person's principal name at home organization +msgid "windowslive.userPrincipalName" +msgstr "ชื่อบุคคลหลักที่บ้านองค์กร" + +# English string: Persistent pseudonymous ID +msgid "facebook_targetedID" +msgstr "Persistent pseudonymous ID" + +# English string: Persistent pseudonymous ID +msgid "linkedin_targetedID" +msgstr "Persistent pseudonymous ID" + +# English string: Persistent pseudonymous ID +msgid "twitter_targetedID" +msgstr "Persistent pseudonymous ID" + +# English string: Persistent pseudonymous ID +msgid "windowslive_targetedID" +msgstr "Persistent pseudonymous ID" + +# English string: Fax number +msgid "http://axschema.org/contact/phone/fax" +msgstr "หมายเลขโทรสาร" + +# English string: Given name +msgid "facebook.first_name" +msgstr "ชื่อที่ตั้ง" + +# English string: Given name +msgid "linkedin.firstName" +msgstr "ชื่อที่ตั้ง" + +# English string: Given name +msgid "http://axschema.org/namePerson/first" +msgstr "ชื่อที่ตั้ง" + +# English string: Given name +msgid "windowslive.FirstName" +msgstr "ชื่อที่ตั้ง" + +# English string: Given name +msgid "windowslive.givenName" +msgstr "ชื่อที่ตั้ง" + +# English string: Home telephone +msgid "http://axschema.org/contact/phone/home" +msgstr "โทรศัพท์บ้าน" + +# English string: Locality +msgid "windowslive.Location" +msgstr "ท้องถิ่น" + +# English string: Labeled URI +msgid "facebook.profile_url" +msgstr "URI ที่มีป้ายกำกับ" + +# English string: Labeled URI +msgid "twitter.url" +msgstr "URI ที่มีป้ายกำกับ" + +# English string: Mail +msgid "facebook.email" +msgstr "อีเมล" + +# English string: Mail +msgid "http://axschema.org/contact/email" +msgstr "อีเมล" + +# English string: Mail +msgid "openid.sreg.email" +msgstr "อีเมล" + +# English string: Mail +msgid "windowslive_mail" +msgstr "อีเมล" + +# English string: Mail +msgid "windowslive.mail" +msgstr "อีเมล" + +# English string: Mobile +msgid "http://axschema.org/contact/phone/cell" +msgstr "มือถือ" + +# English string: Organization name +msgid "http://axschema.org/company/name" +msgstr "ชื่อองค์กร" + +msgid "http://axschema.org/namePerson/prefix" +msgstr "http://axschema.org/namePerson/prefix" + +# English string: Postal code +msgid "http://axschema.org/contact/postalCode/home" +msgstr "รหัส Zip / ไปรษณีย์" + +# English string: Postal code +msgid "openid.sreg.postcode" +msgstr "รหัส Zip / ไปรษณีย์" + +# English string: Preferred language +msgid "facebook.locale" +msgstr "ภาษาที่ต้องการ" + +# English string: Preferred language +msgid "http://axschema.org/pref/language" +msgstr "ภาษาที่ต้องการ" + +# English string: Preferred language +msgid "openid.sreg.language" +msgstr "ภาษาที่ต้องการ" + +# English string: Preferred language +msgid "twitter.lang" +msgstr "ภาษาที่ต้องการ" + +# English string: Preferred language +msgid "windowslive.preferredLanguage" +msgstr "ภาษาที่ต้องการ" + +# English string: Surname +msgid "facebook.last_name" +msgstr "นามสกุล" + +# English string: Surname +msgid "linkedin.lastName" +msgstr "นามสกุล" + +# English string: Surname +msgid "http://axschema.org/namePerson/last" +msgstr "นามสกุล" + +# English string: Surname +msgid "windowslive.LastName" +msgstr "นามสกุล" + +# English string: Surname +msgid "windowslive.surname" +msgstr "นามสกุล" + +# English string: Telephone number +msgid "http://axschema.org/contact/phone/default" +msgstr "เบอร์โทรศัพท์" + +# English string: Telephone number +msgid "http://axschema.org/contact/phone/business" +msgstr "เบอร์โทรศัพท์" + +# English string: Title +msgid "linkedin.headline" +msgstr "หัวข้อ" + +# English string: Title +msgid "http://axschema.org/company/title" +msgstr "หัวข้อ" + +# English string: User ID +msgid "facebook.username" +msgstr "ID ผู้ใช้" + +# English string: User ID +msgid "linkedin.id" +msgstr "ID ผู้ใช้" + +# English string: User ID +msgid "twitter.screen_name" +msgstr "ID ผู้ใช้" + +# English string: User ID +msgid "windowslive_uid" +msgstr "ID ผู้ใช้" + +# English string: User ID +msgid "windowslive.id" +msgstr "ID ผู้ใช้" diff --git a/locales/th/LC_MESSAGES/messages.po b/locales/th/LC_MESSAGES/messages.po new file mode 100644 index 0000000000..28b5736360 --- /dev/null +++ b/locales/th/LC_MESSAGES/messages.po @@ -0,0 +1,813 @@ +msgid "" +msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" +"X-Domain: messages\n" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "%MESSAGE%" + +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "กรุณายืนยันตัวตนของคุณ โดยใส่ชื่อผู้ใช้และรหัสผ่านในช่องด้านล่าง" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "รหัสผ่านของผู้ดูแลระบบ (Admin) ยังไม่ได้ถูกเข้ารหัส (hash)" + +msgid "Affiliation" +msgstr "หน่วยงาน/สังกัด" + +msgid "Affiliation at home organization" +msgstr "หน่วยงานต้นสังกัดของผู้ใช้" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "เกิดข้อผิดพลาดขณะพยายามสร้างคำขอ SAML" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "เกิดข้อผิดพลาดขณะประมวลผลคำขอออกจากระบบ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "พบข้อผิดพลาดที่ระบบไม่ได้จัดการไว้" + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "เมื่อคุณอยู่ในโหมดแก้ไขข้อบกพร่อง คุณสามารถดูเนื้อหาของข้อความที่คุณกำลังส่งได้:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "การยืนยันตัวตนถูกยกเลิก" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "เกิดข้อผิดพลาดในการยืนยันจากแหล่งที่มา %AUTHSOURCE% สาเหตุคือ: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "การยืนยันล้มเหลว: ใบรับรองที่เบราว์เซอร์ของคุณส่งมาไม่ถูกต้องหรือไม่สามารถอ่านได้" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "การยืนยันล้มเหลว: ใบรับรองที่เบราว์เซอร์ของคุณส่งมาไม่พบข้อมูล" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "การยืนยันล้มเหลว: เบราว์เซอร์ของคุณไม่ได้ส่งใบรับรองมา" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 +msgid "Authentication source error" +msgstr "เกิดข้อผิดพลาดจากแหล่งที่มายืนยันตัวตน" + +msgid "Authentication status" +msgstr "สถานะการยืนยันตัวตน" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 +msgid "Bad request received" +msgstr "รับคำขอที่ไม่ถูกต้อง" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "คำขอที่ไม่ถูกต้องไปยังบริการค้นหา" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 +msgid "CAS Error" +msgstr "ข้อผิดพลาดของระบบ CAS" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "ไม่สามารถดึงข้อมูลเซสชันได้" + +msgid "Certificates" +msgstr "ใบรับรอง" + +msgid "Change your home organization" +msgstr "เปลี่ยนหน่วยงานต้นสังกัดของคุณ" + +msgid "Choose home organization" +msgstr "เลือกหน่วยงานต้นสังกัด" + +msgid "Choose your home organization" +msgstr "เลือกหน่วยงานต้นสังกัดของคุณ" + +msgid "Common name" +msgstr "ชื่อทั่วไปที่ใช้ระบุตัวตนในใบรับรอง" + +msgid "Completed" +msgstr "เสร็จสมบูรณ์" + +msgid "Configuration check" +msgstr "ตรวจสอบการตั้งค่า" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 +msgid "Configuration error" +msgstr "ข้อผิดพลาดในการตั้งค่า" + +msgid "Contact information:" +msgstr "ข้อมูลติดต่อ:" + +msgid "Converted metadata" +msgstr "ข้อมูลเมตาที่แปลงแล้ว" + +msgid "Copy to clipboard" +msgstr "คัดลอกไปยังคลิปบอร์ด" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 +msgid "Could not create authentication response" +msgstr "ไม่สามารถสร้างการตอบกลับการยืนยันตัวตนได้" + +msgid "Date of birth" +msgstr "วันเดือนปีเกิด" + +msgid "Debug information" +msgstr "ข้อมูลสำหรับการวิเคราะห์ปัญหา" + +msgid "Debug information to be used by your support staff" +msgstr "ข้อมูลสำหรับการตรวจสอบระบบโดยเจ้าหน้าที่สนับสนุนของคุณ" + +msgid "Display name" +msgstr "ชื่อที่แสดง" + +msgid "Distinguished name (DN) of person's home organization" +msgstr "Distinguished name (DN) of person's home organization" + +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Distinguished name (DN) of person's primary Organizational Unit" + +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Distinguished name (DN) of the person's home organizational unit" + +msgid "Do you want to logout from all the services above?" +msgstr "คุณต้องการออกจากระบบบริการทั้งหมดข้างต้นหรือไม่?" + +msgid "Domain component (DC)" +msgstr "Domain component(DC)" + +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "ดาวน์โหลดใบรับรอง X509 ในรูปแบบไฟล์ PEM" + +msgid "E-mail address:" +msgstr "ที่อยู่อีเมล:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "ไม่พบบัญชีผู้ใช้ตามชื่อที่ระบุ หรือรหัสผ่านไม่ถูกต้อง กรุณาตรวจสอบและลองอีกครั้ง" + +msgid "Enter your username and password" +msgstr "กรุณากรอกชื่อผู้ใช้และรหัสผ่านของคุณ" + +msgid "Entitlement regarding the service" +msgstr "สิทธิ์ในการใช้งานบริการ" + +msgid "Error" +msgstr "ข้อผิดพลาด" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "ข้อผิดพลาดในการสร้างคำขอ" + +msgid "Error in this metadata entry" +msgstr "ข้อผิดพลาดในการกรอกข้อมูลเมตานี้" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "ข้อผิดพลาดในการโหลดข้อมูลเมตา" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Error processing request from Service Provider" +msgstr "ข้อผิดพลาดในการประมวลผลคำขอจากผู้ให้บริการ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "ข้อผิดพลาดในการประมวลผลคำตอบจากผู้ให้บริการยืนยันตัวตน" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "ข้อผิดพลาดในการประมวลผลคำขอออกจากระบบ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 +msgid "Error received from Identity Provider" +msgstr "ได้รับข้อผิดพลาดจากผู้ให้บริการยืนยันตัวตน" + +msgid "Error report sent" +msgstr "ส่งรายงานข้อผิดพลาดแล้ว" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "ข้อผิดพลาดในการสื่อสารกับเซิร์ฟเวอร์ CAS." + +msgid "Explain what you did when this error occurred..." +msgstr "กรุณาอธิบายว่าคุณทำอะไรในขณะที่เกิดข้อผิดพลาดนี้" + +msgid "Fax number" +msgstr "หมายเลขโทรสาร" + +msgid "Format" +msgstr "รูปแบบ" + +msgid "Given name" +msgstr "ชื่อจริง" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "กลับไปยังหน้าการติดตั้ง SimpleSAMLphp" + +msgid "Go back to the file list" +msgstr "กลับไปยังรายการไฟล์" + +msgid "Hello, Untranslated World!" +msgstr "สวัสดีครับ/ค่ะ โลกที่ยังไม่ได้รับการแปลภาษา" + +msgid "Help desk homepage" +msgstr "หน้าหลักของศูนย์ช่วยเหลือ" + +msgid "Help! I don't remember my password." +msgstr "ขอความช่วยเหลือ! ฉันจำรหัสผ่านไม่ได้" + +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "นี่คือข้อมูลเมตาที่ SimpleSAMLphp สร้างขึ้น คุณสามารถส่งเอกสารข้อมูลนี้ไปยังพาร์ทเนอร์เพื่อรูปแบบของระบบเฟเดอเรชัน (Federation) ที่มีความน่าเชื่อถือและปลอดภัย" + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "นี่คือหน้าสถานะของ SimpleSAMLphp ซึ่งคุณสามารถดูได้ว่าการใช้งานหมดเวลาหรือไม่ ใช้งานได้นานแค่ไหน และมีคุณลักษณะใดแนบมากับเซสชันของคุณ" + +msgid "Home organization domain name" +msgstr "ชื่อโดเมนของหน่วยงานต้นสังกัด" + +msgid "Home postal address" +msgstr "ที่อยู่ไปรษณีย์ของหน่วยงานต้นสังกัด" + +msgid "Home telephone" +msgstr "เบอร์โทรศัพท์ของหน่วยงานต้นสังกัด" + +msgid "How to get help" +msgstr "วิธีการรับความช่วยเหลือ" + +msgid "Identity assurance profile" +msgstr "โปรไฟล์การยืนยันตัวตน" + +msgid "Identity number assigned by public authorities" +msgstr "หมายเลขประจำตัวที่ออกโดยหน่วยงานทางราชการ" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "หากคุณต้องการรายงานข้อผิดพลาดนี้ กรุณาระบุหมายเลขติดตามเพื่อให้ผู้ดูแลระบบสามารถค้นหาเซสชันของคุณจากบันทึกในระบบได้" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "ในรูปแบบ XML เมตาดาต้า SAML 2.0:" + +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "ในรูปแบบไฟล์ธรรมดาของ SimpleSAMLphp - ใช้หากคุณใช้ SimpleSAMLphp เป็นฝั่งหนึ่ง" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง" + +msgid "Incorrect username or password." +msgstr "ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง" + +msgid "Information about your current session" +msgstr "ข้อมูลเกี่ยวกับเซสชันปัจจุบันของคุณ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "ใบรับรองไม่ถูกต้อง" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" + +msgid "JPEG Photo" +msgstr "รูปภาพ JPEG" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "ข้อผิดพลาดของ LDAP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP คือฐานข้อมูลผู้ใช้ และเมื่อคุณพยายามเข้าสู่ระบบ เราจำเป็นต้องติดต่อกับฐานข้อมูล LDAP ซึ่งครั้งนี้เกิดข้อผิดพลาด" + +msgid "Labeled URI" +msgstr "URI ที่มีป้ายกำกับ" + +msgid "Language" +msgstr "ภาษา" + +msgid "Legal name" +msgstr "ชื่อทางกฎหมาย" + +msgid "Local identity number" +msgstr "หมายเลขประจำตัวประชาชน" + +msgid "Locality" +msgstr "เขต/ท้องถิ่น" + +msgid "Logged out" +msgstr "ออกจากระบบแล้ว" + +msgid "Logging out of the following services:" +msgstr "กำลังออกจากระบบบริการต่อไปนี้:" + +msgid "Logging out..." +msgstr "กำลังออกจากระบบ..." + +msgid "Login" +msgstr "เข้าสู่ระบบ" + +msgid "Login at" +msgstr "เข้าสู่ระบบได้ที่" + +msgid "Logout" +msgstr "ออกจากระบบ" + +msgid "Logout failed" +msgstr "ออกจากระบบไม่สำเร็จ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "ข้อมูลการออกจากระบบสูญหาย" + +msgid "Mail" +msgstr "อีเมล" + +msgid "Manager" +msgstr "ผู้จัดการ" + +msgid "Message" +msgstr "ข้อความ" + +msgid "Metadata" +msgstr "เมตาดาต้า" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "ไม่พบข้อมูลเมตา" + +msgid "Metadata overview" +msgstr "ภาพรวมข้อมูลเมตา" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "วิธีการไม่รองรับ" + +msgid "Mobile" +msgstr "มือถือ" + +msgid "Next" +msgstr "ถัดไป" + +msgid "Nickname" +msgstr "ชื่อเล่น" + +msgid "No" +msgstr "ไม่" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "ระบบไม่ได้รับข้อมูลตำแหน่งปลายทางนี้" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "ระบบไม่สามารถดำเนินการต่อได้ เพราะไม่มีข้อมูลยืนยันตัวตน" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "ระบบไม่ได้รับคำขอเพื่อเริ่มกระบวนการยืนยันตัวตน" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "ระบบไม่ได้รับข้อมูลตอบกลับจากผู้ให้บริการยืนยันตัวตน" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "ไม่มีการเข้าถึง" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "ไม่มีใบรับรอง" + +msgid "No errors found." +msgstr "ไม่พบข้อผิดพลาด." + +msgid "No identity providers found. Cannot continue." +msgstr "ไม่พบผู้ให้บริการระบุตัวตน ไม่สามารถดำเนินการต่อได้" + +msgid "No, cancel" +msgstr "ไม่, ยกเลิก" + +msgid "No, only %SP%" +msgstr "ไม่ มีเพียง %SP% เท่านั้น" + +msgid "Notices" +msgstr "ประกาศ" + +msgid "On hold" +msgstr "รอดำเนินการ" + +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "บริการหนึ่งรายการหรือมากกว่าที่คุณเข้าสู่ระบบ ไม่รองรับการออกจากระบบ เพื่อให้แน่ใจว่าเซสชันทั้งหมดของคุณถูกปิดแล้ว คุณควร ปิดเว็บเบราว์เซอร์ของคุณ" + +msgid "Optional fields" +msgstr "ช่องข้อมูลเพิ่มเติม (ไม่จำเป็นต้องกรอก)" + +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "คุณสามารถกรอกอีเมลเพื่อให้ผู้ดูแลระบบติดต่อกลับในกรณีที่มีคำถามเพิ่มเติมเกี่ยวกับปัญหาของคุณ" + +msgid "Options missing from config file" +msgstr "ตัวเลือกบางรายการในไฟล์กำหนดค่า (config file) ยังไม่ได้ถูกกำหนด" + +msgid "Organization" +msgstr "หน่วยงานต้นสังกัด" + +msgid "Organization name" +msgstr "ชื่อหน่วยงานต้นสังกัด" + +msgid "Organization's legal name" +msgstr "ชื่อทางกฎหมายของหน่วยงานต้นสังกัด" + +msgid "Organizational homepage" +msgstr "หน้าแรกของหน่วยงานต้นสังกัด" + +msgid "Organizational number" +msgstr "หมายเลขหน่วยงานต้นสังกัด" + +msgid "Organizational unit" +msgstr "หน่วยงานในต้นสังกัด" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "ไม่พบหน้านี้" + +msgid "Parse" +msgstr "ประมวลผลข้อมูล" + +msgid "Password" +msgstr "รหัสผ่าน" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "ยังไม่ได้ตั้งรหัสผ่าน" + +msgid "Persistent pseudonymous ID" +msgstr "รหัสประจำตัวที่ไม่เปิดเผยชื่อจริงของผู้ใช้" + +msgid "Person's principal name at home organization" +msgstr "ชื่อหลักของผู้ใช้ในหน่วยงานต้นทาง" + +msgid "Please select the identity provider where you want to authenticate:" +msgstr "กรุณาเลือกผู้ให้บริการยืนยันตัวตนที่คุณต้องการใช้" + +msgid "Post office box" +msgstr "ตู้ไปรษณีย์" + +msgid "Postal address" +msgstr "ที่อยู่ไปรษณีย์" + +msgid "Postal code" +msgstr "รหัสไปรษณีย์" + +msgid "Preferred language" +msgstr "ภาษาที่ต้องการใช้" + +msgid "Primary affiliation" +msgstr "สังกัดหลัก" + +msgid "Private information elements" +msgstr "ข้อมูลส่วนบุคคล" + +msgid "Remember" +msgstr "จดจำ" + +msgid "Remember my choice" +msgstr "จดจำตัวเลือกของฉัน" + +msgid "Report errors" +msgstr "รายงานข้อผิดพลาด" + +msgid "Required fields" +msgstr "ช่องที่จำเป็นต้องกรอก" + +msgid "Return to service" +msgstr "กลับสู่การบริการ" + +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "Identity Provider SAML 2.0 (Hosted)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "Identity Provider SAML 2.0 (Remote)" + +msgid "SAML 2.0 SP Demo Example" +msgstr "ตัวอย่างสาธิต SAML 2.0 SP" + +msgid "SAML 2.0 SP Metadata" +msgstr "ข้อมูลเมตาของ SAML 2.0 SP" + +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "Service Provider SAML 2.0 (Hosted)" + +msgid "SAML Subject" +msgstr "ผู้ใช้ที่กำลังยืนยันตัวตนผ่านระบบ SAML" + +msgid "Select" +msgstr "เลือก" + +msgid "Select configuration file to check:" +msgstr "เลือกไฟล์การตั้งค่าที่ต้องการตรวจสอบ:" + +msgid "Select your identity provider" +msgstr "เลือกผู้ให้บริการยืนยันตัวตนของคุณ" + +msgid "Send e-mail to help desk" +msgstr "ส่งอีเมลไปยังฝ่ายช่วยเหลือ" + +msgid "Send error report" +msgstr "ส่งรายงานข้อผิดพลาด" + +msgid "Sending message" +msgstr "กำลังส่งข้อความ" + +msgid "Service Provider" +msgstr "ผู้ให้บริการ" + +msgid "Session size: %SIZE%" +msgstr "ขนาดเซสชัน: %SIZE%" + +msgid "Shib 1.3 IdP Metadata" +msgstr "ข้อมูลเมตาของ Shib 1.3 IdP" + +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Identity Provider (Hosted)" + +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Identity Provider (Remote)" + +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metadata" + +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Service Provider (Hosted)" + +msgid "Shib 1.3 Service Provider (Remote)" +msgstr "Shib 1.3 Service Provider (Remote)" + +msgid "Shibboleth demo" +msgstr "สาธิตการทำงานของระบบ Shibboleth" + +msgid "SimpleSAMLphp Diagnostics" +msgstr "การวินิจฉัย SimpleSAMLphp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "ดูเหมือนว่า SimpleSAMLphp มีการตั้งค่าผิดพลาด" + +msgid "SimpleSAMLphp error" +msgstr "ข้อผิดพลาด SimpleSAMLphp" + +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "เนื่องจากเบราว์เซอร์ของคุณไม่รองรับ Javascript โปรดกดปุ่มด้านล่างเพื่อดำเนินการต่อ" + +msgid "Some error occurred" +msgstr "เกิดข้อผิดพลาดบางประการ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "ข้อมูลสถานะสูญหาย" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "ข้อมูลสถานะสูญหาย และไม่สามารถเริ่มคำขอใหม่ได้" + +msgid "Street" +msgstr "ถนน" + +msgid "Submit message" +msgstr "ส่งข้อความ" + +msgid "Superfluous options in config file" +msgstr "ตัวเลือกเกินความจำเป็นในไฟล์กำหนดค่า (Config File)" + +msgid "Surname" +msgstr "นามสกุล" + +msgid "Telephone number" +msgstr "หมายเลขโทรศัพท์" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "ผู้ให้บริการยืนยันตัวตนตอบกลับด้วยข้อผิดพลาด (รหัสสถานะใน SAML Response ไม่สำเร็จ)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "การยืนยันตัวตนถูกยกเลิกโดยผู้ใช้" + +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "ข้อมูลการแก้ไขข้อบกพร่องด้านล่างอาจเป็นประโยชน์ต่อผู้ดูแลระบบ / ศูนย์ช่วยเหลือ" + +msgid "The error report has been sent to the administrators." +msgstr "รายงานข้อผิดพลาดได้ถูกส่งไปยังผู้ดูแลระบบแล้ว" + +msgid "The following fields was not recognized" +msgstr "ไม่สามารถระบุช่องข้อมูลต่อไปนี้ได้" + +msgid "The following optional fields was not found" +msgstr "ไม่พบช่องข้อมูลตัวเลือกที่ระบุไว้" + +msgid "The following required fields was not found" +msgstr "ไม่พบช่องข้อมูลที่จำเป็น" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "ไม่พบหน้าที่ระบุ URL: %URL%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "ไม่พบหน้าที่ระบุ สาเหตุ: %REASON% URL: %URL%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "ข้อมูลการออกจากระบบหมดอายุแล้ว กรุณากลับไปที่บริการเดิมและลองออกจากระบบใหม่" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "ระบบได้รับคำขอแล้ว แต่ไม่ได้ระบุค่า RelayState ซึ่งจำเป็นสำหรับการนำทางไปยังหน้าถัดไปหลังจากดำเนินการเสร็จสิ้น" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "ข้อมูลที่ส่งไปยังบริการค้นหาไม่ถูกต้องตามข้อกำหนด" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "รหัสผ่านในคอนฟิกูเรชัน (auth.adminpassword) ไม่ใช่ค่าแฮช รายละเอียดทั้งหมดเกี่ยวกับวิธีแก้ไขปัญหานี้สามารถดูได้ที่ https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "รหัสผ่านในการกำหนดค่า (auth.adminpassword) จะไม่เปลี่ยนแปลงจากค่าเริ่มต้น โปรดแก้ไขไฟล์การตั้งค่า" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "มีข้อผิดพลาดในคำขอนี้ สาเหตุคือ: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "การตั้งค่า SimpleSAMLphp ผิดพลาด กรุณาตรวจสอบไฟล์ metadata หากคุณเป็นผู้ดูแลระบบของบริการนี้" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "ผู้ให้บริการระบุตัวตนได้รับคำขอยืนยันตัวตน แต่เกิดข้อผิดพลาดระหว่างดำเนินการ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "จุดเชื่อมต่อนี้ยังไม่ถูกเปิดใช้งาน โปรดตรวจสอบการตั้งค่าSimpleSAMLphp ของคุณ" + +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "ข้อผิดพลาดนี้อาจเกิดจากการตั้งค่าผิดหรือระบบทำงานผิดปกติ" + +msgid "Title" +msgstr "หัวข้อ" + +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "หากต้องการดูรายละเอียดของ SAML entity ให้คลิกที่หัวข้อ" + +msgid "Tracking number" +msgstr "หมายเลขติดตาม" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "ไม่พบข้อมูล metadata สำหรับ %ENTITYID%" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "ไม่สามารถออกจากระบบบริการหนึ่งบริการหรือมากกว่านั้นได้ เพื่อให้แน่ใจว่าเซสชันทั้งหมดของคุณถูกปิดแล้ว เราขอแนะนำให้คุณ ปิดเว็บเบราว์เซอร์ของคุณ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "ข้อผิดพลาดที่ไม่ได้รับการจัดการ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "ใบรับรองไม่ถูกต้อง" + +msgid "User ID" +msgstr "รหัสผู้ใช้" + +msgid "User's password hash" +msgstr "รหัสผ่านที่ถูกแปลงเป็นค่าแฮชของผู้ใช้" + +msgid "Username" +msgstr "ชื่อผู้ใช้" + +msgid "WS-Fed SP Demo Example" +msgstr "ตัวอย่าง WS-Fed SP" + +msgid "WS-Federation Identity Provider (Remote)" +msgstr "Identity Provider WS-Federation (Remote)" + +msgid "WS-Federation Service Provider (Hosted)" +msgstr "Servide Provider WS-Federation (Hosted)" + +msgid "Warning" +msgstr "การเตือน" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "ระบบไม่รับค่าที่ส่งจากผู้ให้บริการระบุตัวตน" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "เกิดข้อผิดพลาดขณะสร้างข้อมูลรับรองการยืนยันตัวตนจากผู้ให้บริการระบุตัวตน" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "หากไม่มีชื่อผู้ใช้และรหัสผ่าน คุณจะไม่สามารถเข้าถึงบริการได้ โปรดติดต่อฝ่ายสนับสนุนของหน่วยงานของคุณ" + +msgid "World" +msgstr "โลก" + +msgid "XML metadata" +msgstr "ข้อมูล metadata รูปแบบ XML" + +msgid "Yes, all services" +msgstr "ใช่ ทุกบริการ" + +msgid "Yes, continue" +msgstr "ใช่ ดำเนินการต่อ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "คุณเข้าถึง Artifact Resolution Service แต่ไม่ได้ส่งข้อความ SAML ArtifactResolve โปรดทราบว่า endpoint นี้ไม่ควรเข้าถึงโดยตรง" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "คุณเข้าถึง Assertion Consumer Service แต่ไม่ได้ส่งข้อความ SAML Authentication Response โปรดทราบว่า endpoint นี้ไม่ควรเข้าถึงโดยตรง" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "คุณเข้าถึง Single Sign On Service แต่ไม่ได้ส่งข้อความ SAML Authentication Request โปรดทราบว่า endpoint นี้ไม่ควรเข้าถึงโดยตรง" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "คุณเข้าถึง SingleLogoutService แต่ไม่ได้ส่งข้อความ SAML LogoutRequest หรือ LogoutResponse โปรดทราบว่า endpoint นี้ไม่ควรเข้าถึงโดยตรง" + +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "คุณกำลังจะส่งข้อความ กดปุ่ม 'ส่งข้อความ' เพื่อดำเนินการต่อ" + +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "คุณกำลังจะส่งข้อความ กดลิงก์ 'ส่งข้อความ' เพื่อดำเนินการต่อ" + +msgid "You are also logged in on these services:" +msgstr "คุณยังคงล็อกอินอยู่ในบริการต่อไปนี้:" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "คุณกำลังเข้าระบบทดสอบก่อนใช้งานจริง หากคุณไม่ใช่ผู้ทดสอบ โปรดอย่าใช้งานลิงก์นี้" + +msgid "You are now successfully logged out from %SP%." +msgstr "คุณได้ออกจากระบบ %SP% เรียบร้อยแล้ว" + +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "คุณสามารถดู metadata xml ได้ที่ URL ที่กำหนดไว้:" + +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "คุณสามารถปิดโหมดดีบักได้จากไฟล์การตั้งค่า global ของ SimpleSAMLphp ที่ชื่อ config/config.php." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "คุณไม่ได้แสดงใบรับรองที่ถูกต้อง" + +msgid "You have been logged out." +msgstr "คุณได้ออกจากระบบเรียบร้อยแล้ว" + +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "คุณเลือก %HOMEORG% เป็นหน่วยงานต้นสังกัด หากไม่ถูกต้อง คุณสามารถเลือกใหม่ได้." + +msgid "You have previously chosen to authenticate at" +msgstr "คุณได้เลือกที่จะยืนยันตัวตนก่อนหน้านี้แล้วที่" + +msgid "You have successfully logged out from all services listed above." +msgstr "คุณได้ออกจากระบบบริการทั้งหมดเรียบร้อยแล้ว" + +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "คุณส่งข้อมูลมายังหน้าล็อกอิน แต่ระบบไม่ได้รับรหัสผ่าน ลองใหม่อีกครั้ง" + +msgid "Your attributes" +msgstr "คุณลักษณะของคุณ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "ไม่สามารถเรียกข้อมูลเซสชันของคุณได้ในขณะนี้ เนื่องจากปัญหาทางเทคนิค กรุณาลองใหม่อีกครั้ง" + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "เซสชันของคุณยังคงใช้งานได้อีก %remaining% วินาที" + +msgid "[Preferred choice]" +msgstr "[ตัวเลือกที่แนะนำ]" + +msgid "not set" +msgstr "ยังไม่ได้ตั้งค่า" diff --git a/locales/tr/LC_MESSAGES/messages.po b/locales/tr/LC_MESSAGES/messages.po index 292eaeaf07..e9fa5669a5 100644 --- a/locales/tr/LC_MESSAGES/messages.po +++ b/locales/tr/LC_MESSAGES/messages.po @@ -1,649 +1,792 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "SAML cevabı verilmemiş" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "SAML mesajı verilmemiş" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Bir servis kendinizi yetkilendirmenizi istedi. Lütfen aşağıdaki forma kullanıcı adınızı ve şifrenizi giriniz." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "Bağlantı" + +msgid "Affiliation at home organization" +msgstr "Bağlı olunan kuruluşla bağlantı" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "SAML isteği oluşturmaya çalışırken bir hata meydana geldi" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Çıkış İsteğini işlemeye çalışırken bir hata oluştu" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Bir beklenmeyen durum gönderildi." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "\"Debug\" modda olduğunuz için, gönderdiğiniz mesajın içeriğini göreceksiniz." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 +msgid "Authentication source error" +msgstr "" + +msgid "Authentication status" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Hatalı istek alındı" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Tanıma servisine giden hatalı istek" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS Hatası" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Change your home organization" +msgstr "Organizasyonunuzu değiştirin" + +msgid "Choose home organization" +msgstr "Organizasyon seçiniz" + +msgid "Choose your home organization" +msgstr "Organizasyonunuzu seçiniz" + +msgid "Common name" +msgstr "Ortak ad" + +msgid "Completed" +msgstr "Tamamlandı" + +msgid "Configuration check" +msgstr "Konfigürasyon kontrolü" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Yapılandırma hatası" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "İstek oluşturmada hata" +msgid "Contact information:" +msgstr "İletişim bilgileri:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Tanıma servisine giden hatalı istek" +msgid "Converted metadata" +msgstr "Dönüştürülmüş üstveri (metadata)" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Kimlik doğrulama cevabı oluşturulamadı" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Geçerli olmayan sertifika" +msgid "Date of birth" +msgstr "Doğum tarihi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP hatası" +msgid "Debug information" +msgstr "Hata ayıklama bilgisi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Çıkış bilgisi kaybedildi" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Çıkış İsteğini işlerken hata oluştu" +msgid "Display name" +msgstr "Görüntülenen isim" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Üstveri (metadata) yüklenmesinde hata" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Kişinin bağlı olduğu kuruluşun belirgin adı" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Giriş yok" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Kişinin öncelikli Kurumsal Birimi'nin belirgin adı" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "RelayState verilmemiş." +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Kişinin bağlı olduğu birimin belirgin adı" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Sayfa bulunamadı" +msgid "Do you want to logout from all the services above?" +msgstr "Yukarıdaki tüm servislerden çıkmak istiyor musunuz?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Şifre atanmadı" +msgid "Domain component (DC)" +msgstr "Alan bileşeni" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "Kimlik sağlayıcıdan gelen cevabı işlerken hata" +msgid "E-mail address:" +msgstr "E-posta adresi:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Ya bu kullanıcı adında bir kullanıcı bulunamadı, yada şifreniz yanlış. Lütfen kullanıcı adını kontrol edin ve yeniden deneyin." + +msgid "Enter your username and password" +msgstr "Kullanıcı adı ve şifrenizi giriniz" + +msgid "Entitlement regarding the service" +msgstr "Servise göre yetki" + +msgid "Error" +msgstr "Hata" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "İstek oluşturmada hata" + +msgid "Error in this metadata entry" +msgstr "Üstveri (metadata) bilgisinde hata var" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Üstveri (metadata) yüklenmesinde hata" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "Servis Sağlayıcı'dan gelen isteği işlerken hata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Kimlik sağlayıcıdan gelen cevabı işlerken hata" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Çıkış İsteğini işlerken hata oluştu" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Kimlik Sağlayıcıdan hata alındı." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Beklenmeyen durum" +msgid "Error report sent" +msgstr "Hata raporu gönderildi" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "CAS sunucusu ile iletişim kurarken hata" + +msgid "Explain what you did when this error occurred..." +msgstr "Bu hatanın neden oluştuğunu açıklayın..." + +msgid "Fax number" +msgstr "Faks numarası" + +msgid "Format" +msgstr "" + +msgid "Given name" +msgstr "Verilen isim" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp kurulum sayfasına geri dön" + +msgid "Go back to the file list" +msgstr "Dosya listesine geri dön" + +msgid "Hello, Untranslated World!" +msgstr "" + +msgid "Help desk homepage" +msgstr "Yardım anasayfası" + +msgid "Help! I don't remember my password." +msgstr "Yardım! Şifremi hatırlamıyorum." + +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "SimpleSAMLphp'nin sizin için ürettiği üstveri (metada). Bu üstveri dokümanını güvenilir bir federasyon kurmak için güvenilir paydaşlara gönderebilirsiniz." + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Merhaba, bu SimpleSAMLphp durum sayfasıdır. Oturumunuzun süresinin dolup dolmadığını, oturumunuzun ne kadar sürdüğünü ve oturumunuza ait tüm bilgileri buradan görebilirsiniz." + +msgid "Home organization domain name" +msgstr "Ana kuruluş alan adı" + +msgid "Home postal address" +msgstr "Ev posta adresi" + +msgid "Home telephone" +msgstr "Ev telefonu" + +msgid "How to get help" +msgstr "Nasıl yardım alınır" + +msgid "Identity number assigned by public authorities" +msgstr "Kamu yetkilileri tarafından belirlenmiş kimlik numarası" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Bu hatayı bildirirseniz, lütfen, sistem yöneticisi tarafından incelebilen kayıtlardan oturumunuzun belirlenebilmesini sağlayan izleme ID'sini de bildirin." + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "XML formatında SAML 2.0 SP Üstverisi (Metadata)" + +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "Eğer diğer tarafta bir SimpleSAMLphp elemanını kullanıyorsanız, düz SimpleSAMLphp dosya biçiminde bunu kullanın:" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 msgid "Incorrect username or password" msgstr "Geçersiz kullanıcı adı yada şifre" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Onay Alıcı Servis (Assertion Consumer Service) arayüzüne giriş yaptınız, ancak SAML Kimlik Doğrulama Cevabı sağlamadınız." - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Bu sayfaya yapılan istekte bir hata var. Nedeni %REASON% idi." +msgid "Incorrect username or password." +msgstr "Kullanıcı adı ve/veya şifre yanlış." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "CAS sunucusu ile iletişim kurarken hata" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp doğru yapılandırılmış gibi görünmüyor." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Geçerli olmayan sertifika" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "SAML isteği oluşturmaya çalışırken bir hata meydana geldi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Tanıma servisine gönderilen parametreler tanımlananlara göre değildi." +msgid "JPEG Photo" +msgstr "JPEG fotoğraf" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Bu kimlik sağlayıcı bir kimlik doğrulama cevabı oluşturuken hata oluştu." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP hatası" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." msgstr "LDAP kullanıcı veritabanı ve siz giriş yapmaya çalışırken, LDAP veritabanına bağlanmamız gerekiyor. Bu seferlik denerken bir sorun oluştu." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Yürürlükteki çıkış işlemi ile ilgili bilgi kayboldu. Çıkmak istediğiniz servise geri dönün ve yeniden çıkmayı denyin. Bu hata, çıkış bilgisinin süresi dolduğu için oluşmuş olabilir. Çıkış bilgisi belirli bir süre için tutulur - genellikle birkaç saat. Bu süre normal bir çıkış işleminin tutacağından daha fazla bir süredir; bu hata yapılandırma ile ilgili başka bir hatayı işaret ediyor olabilir. Eğer sorun devam ederse, servis sağlayıcınızla iletişime geçiniz." - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Çıkış İsteğini işlemeye çalışırken bir hata oluştu" +msgid "Labeled URI" +msgstr "Etiketlenen URI" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "SimpleSAMLphp kurulumunuzda bazı yanlış ayarlamalar sözkonusu. Eğer bu servisin yöneticisi sizseniz, üstveri (metadata) ayarlarınızın düzgün bir şekilde yapıldığından emin olun." +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Bu kısım kullanımda değil. SimpleSAMLphp ayarlarınızın etkinleştirme seçeneklerini kontrol edin." +msgid "Local identity number" +msgstr "Yerel kimlik numarası" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Bu isteğin başlatıcısı, bir sonraki gidiş yerini bildiren RelayState parametresini sağlamamış." +msgid "Locality" +msgstr "Bölge" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Verilen sayfa bulunamadı. URL %URL% idi." +msgid "Logged out" +msgstr "Çıktınız" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Verilen sayfa bulunamadı. Nedeni %REASON% idi. URL %URL% idi." +msgid "Logging out..." +msgstr "Çıkıyor" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Yapılandırmadaki (auth.adminpassword) şifrenin öntanımlı değeri değişmedi. Lütfen yapılandırma dosyasını düzeltin." +msgid "Login" +msgstr "Giriş" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Geçerli bir sertifika sağlamadınız. " +msgid "Logout" +msgstr "Çıkış" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Kimlik Sağlayıcı'dan gelen cevabı kabul etmedik." +msgid "Logout failed" +msgstr "Çıkış başarılamadı" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Bu Kimlik Sağlayıcı bir Servis Sağlayıcı'dan kimlik doğrulama isteği aldı, ancak bu isteği işlemeye çalışırken bir hata oluştu." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Çıkış bilgisi kaybedildi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Kimlik Sağlayıcı hatalı cevap verdi. (SAML Cevabı'ndaki durum kodu başarılamadı)" +msgid "Mail" +msgstr "Posta" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "TekliÇıkışServis (SingleLogoutService) arayüzüne giriş yaptınız, ancak bir SAML Çıkışİsteği ya da ÇıkışCevabı sağlamadınız." +msgid "Manager" +msgstr "Yönetici" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Bir beklenmeyen durum gönderildi." +msgid "Message" +msgstr "Mesaj" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Ya bu kullanıcı adında bir kullanıcı bulunamadı, yada şifreniz yanlış. Lütfen kullanıcı adını kontrol edin ve yeniden deneyin." +msgid "Metadata" +msgstr "Üstveri (metadata)" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Merhaba, bu SimpleSAMLphp durum sayfasıdır. Oturumunuzun süresinin dolup dolmadığını, oturumunuzun ne kadar sürdüğünü ve oturumunuza ait tüm bilgileri buradan görebilirsiniz." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "" -msgid "Logout" -msgstr "Çıkış" +msgid "Metadata overview" +msgstr "Üstveri (metada) genel görünümü" -msgid "Your attributes" -msgstr "Bilgileriniz" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Oturumunuz, şu andan itibaren %remaining% saniyeliğine geçerlidir." +msgid "Mobile" +msgstr "Cep telefonu numarası" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "Lütfen, kimlik doğrulaması yapacağınız kimlik sağlayıcıyı seçiniz: " +msgid "Next" +msgstr "Sıradaki" -msgid "Remember my choice" -msgstr "Seçimimi hatırla" +msgid "Nickname" +msgstr "Takma ad" -msgid "Select" -msgstr "Seç" +msgid "No" +msgstr "Hayır" -msgid "Select your identity provider" -msgstr "Kimlik sağlayıcınızı seçiniz." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "RelayState verilmemiş." -msgid "Sending message" -msgstr "Mesaj gönderiliyor" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "SAML mesajı verilmemiş" -msgid "Yes, continue" -msgstr "Evet, devam et" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Debug information" -msgstr "Hata ayıklama bilgisi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "SAML cevabı verilmemiş" -msgid "E-mail address:" -msgstr "E-posta adresi:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Giriş yok" -msgid "Explain what you did when this error occurred..." -msgstr "Bu hatanın neden oluştuğunu açıklayın..." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "" -msgid "How to get help" -msgstr "Nasıl yardım alınır" +msgid "No errors found." +msgstr "Hata bulunmadı." -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "Bu hatayı bildirirseniz, lütfen, sistem yöneticisi tarafından incelebilen kayıtlardan oturumunuzun belirlenebilmesini sağlayan izleme ID'sini de bildirin." +msgid "No identity providers found. Cannot continue." +msgstr "" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Durumunuz hakkında ileride ortaya çıkabilecek sorularla ilgili yöneticilerin iletişim kurabilmesi için, isteğe bağlı olarak e-posta adresinizi girin." +msgid "No, cancel" +msgstr "Hayır" -msgid "Report errors" -msgstr "Hataları bildir" +msgid "No, only %SP%" +msgstr "Hayır, sadece %SP%" -msgid "Send error report" -msgstr "Hata raporu gönder" +msgid "Notices" +msgstr "Notlar" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Aşağıdaki hata ayıklama bilgisi yöneticinin/yardım masasının ilgisini çekebilir:" +msgid "On hold" +msgstr "Beklemede" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Bu hata beklenmeyen bir durum ya da SimpleSAMLphp'nin yanlış düzenlenmesi ndeniyle oluşmuş olabilir. Bu oturum açma servisinin yöneticisi ile iletişim kurun ve yukarıdaki hata mesajını gönderin." +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Giriş yaptığınız bir yada daha fazla servis çıkışı desteklemiyor. Tüm oturumlarınızın kapatıldığından emin olmak için, tarayıcınızı kapatmanız önerilir." -msgid "You have previously chosen to authenticate at" -msgstr "Dosya listesine geri dön" +msgid "Optional fields" +msgstr "İsteğe bağlı alanlar" -msgid "[Preferred choice]" -msgstr "[Tercih edilen seçenek]" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Durumunuz hakkında ileride ortaya çıkabilecek sorularla ilgili yöneticilerin iletişim kurabilmesi için, isteğe bağlı olarak e-posta adresinizi girin." -msgid "Person's principal name at home organization" -msgstr "Kişinin bağlı olduğu kuruluştaki asıl adı" +msgid "Options missing from config file" +msgstr "Config dosyasındaki tercihler eksik" -msgid "Superfluous options in config file" -msgstr "Config dosyasındaki gereksiz tercihler" +msgid "Organization" +msgstr "Organizasyon" -msgid "Mobile" -msgstr "Cep telefonu numarası" +msgid "Organization name" +msgstr "Organizasyon adı" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 Servis Sağlayıcı (Bu sistemde sunulan)" +msgid "Organization's legal name" +msgstr "Organizasyonu'un resmi adı" -msgid "Display name" -msgstr "Görüntülenen isim" +msgid "Organizational homepage" +msgstr "Kurumsal websayfası" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP Üstveri (Metadata)" +msgid "Organizational number" +msgstr "Kurumsal numara" -msgid "Notices" -msgstr "Notlar" +msgid "Organizational unit" +msgstr "Organizasyonel birim" -msgid "Home telephone" -msgstr "Ev telefonu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Sayfa bulunamadı" -msgid "Service Provider" -msgstr "Servis Sağlayıcı" +msgid "Parse" +msgstr "Çözümle" -msgid "Incorrect username or password." -msgstr "Kullanıcı adı ve/veya şifre yanlış." +msgid "Password" +msgstr "Şifre" -msgid "Submit message" -msgstr "Mesaj gönder" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Şifre atanmadı" -msgid "Locality" -msgstr "Bölge" +msgid "Persistent pseudonymous ID" +msgstr "Kalıcı takma adı ID" -msgid "The following required fields was not found" -msgstr "Şu gerekli alanlar bulunamadı" +msgid "Person's principal name at home organization" +msgstr "Kişinin bağlı olduğu kuruluştaki asıl adı" -msgid "Organizational number" -msgstr "Kurumsal numara" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Lütfen, kimlik doğrulaması yapacağınız kimlik sağlayıcıyı seçiniz: " msgid "Post office box" msgstr "Posta kutusu" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Bir servis kendinizi yetkilendirmenizi istedi. Lütfen aşağıdaki forma kullanıcı adınızı ve şifrenizi giriniz." - -msgid "Error" -msgstr "Hata" - -msgid "Next" -msgstr "Sıradaki" - -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Kişinin bağlı olduğu birimin belirgin adı" +msgid "Postal address" +msgstr "Posta adresi" -msgid "Converted metadata" -msgstr "Dönüştürülmüş üstveri (metadata)" +msgid "Postal code" +msgstr "Posta kodu" -msgid "Mail" -msgstr "Posta" +msgid "Preferred language" +msgstr "Tercih edilen dil" -msgid "No, cancel" -msgstr "Hayır" +msgid "Primary affiliation" +msgstr "Öncelikli bağlantı" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "%HOMEORG%'u organizasyonunuz olarak seçtiniz. Eğer yanlış ise, başka bir tanesini seçebilirsiniz." +msgid "Private information elements" +msgstr "Özel bilgi elemanları" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Kişinin öncelikli Kurumsal Birimi'nin belirgin adı" +msgid "Remember" +msgstr "Hatırla" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "Bir SAML elemanı hakkındaki detayları görmek için, SAML elemanı başlığına tıklayın." +msgid "Remember my choice" +msgstr "Seçimimi hatırla" -msgid "Enter your username and password" -msgstr "Kullanıcı adı ve şifrenizi giriniz" +msgid "Report errors" +msgstr "Hataları bildir" -msgid "No" -msgstr "Hayır" +msgid "Required fields" +msgstr "Gerekli alanlar" -msgid "Home postal address" -msgstr "Ev posta adresi" +msgid "Return to service" +msgstr "Servise geri dön" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP Demo Örneği" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 Kimlik Sağlayıcı (Bu sistemde sunulan)" msgid "SAML 2.0 Identity Provider (Remote)" msgstr "SAML 2.0 Kimlik Sağlayıcı (Uzak sistemde sunulan)" -msgid "Do you want to logout from all the services above?" -msgstr "Yukarıdaki tüm servislerden çıkmak istiyor musunuz?" - -msgid "Given name" -msgstr "Verilen isim" - msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP Demo Örneği" -msgid "Organization name" -msgstr "Organizasyon adı" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "Mesaj göndermek üzeresiniz. Devam etmek için mesaj gönder butonuna tıklayın." +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP Üstveri (Metadata)" -msgid "Home organization domain name" -msgstr "Ana kuruluş alan adı" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 Servis Sağlayıcı (Bu sistemde sunulan)" -msgid "Go back to the file list" -msgstr "Dosya listesine geri dön" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "Hata raporu gönderildi" +msgid "Select" +msgstr "Seç" -msgid "Common name" -msgstr "Ortak ad" +msgid "Select configuration file to check:" +msgstr "Kontrol edilecek konfigürasyon dosyasını seç:" -msgid "Logout failed" -msgstr "Çıkış başarılamadı" +msgid "Select your identity provider" +msgstr "Kimlik sağlayıcınızı seçiniz." -msgid "Identity number assigned by public authorities" -msgstr "Kamu yetkilileri tarafından belirlenmiş kimlik numarası" +msgid "Send e-mail to help desk" +msgstr "Yardım'a e-posta gönderin" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federasyon Kimlik Sağlayıcı (Uzak sistemde sunulan)" +msgid "Send error report" +msgstr "Hata raporu gönder" -msgid "Some error occurred" -msgstr "Hata oluştu" +msgid "Sending message" +msgstr "Mesaj gönderiliyor" -msgid "Organization" -msgstr "Organizasyon" +msgid "Service Provider" +msgstr "Servis Sağlayıcı" -msgid "Choose home organization" -msgstr "Organizasyon seçiniz" +msgid "Session size: %SIZE%" +msgstr "Oturum büyüklüğü: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "Kalıcı takma adı ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Üstveri (Metadata)" -msgid "No errors found." -msgstr "Hata bulunmadı." +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 Kimlik Sağlayıcı (Bu sistemde sunulan)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 Servis Sağlayıcı (Bu sistemde sunulan)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 Kimlik Sağlayıcı (Uzak sistemde sunulan)" -msgid "Required fields" -msgstr "Gerekli alanlar" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Üstveri (Metadata)" -msgid "Domain component (DC)" -msgstr "Alan bileşeni" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 Servis Sağlayıcı (Bu sistemde sunulan)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 Servis Sağlayıcı (Uzak sistemde sunulan)" -msgid "Password" -msgstr "Şifre" - -msgid "Nickname" -msgstr "Takma ad" - -msgid "The error report has been sent to the administrators." -msgstr "Hata raporu yöneticilere gönderildi" - -msgid "Date of birth" -msgstr "Doğum tarihi" - -msgid "Private information elements" -msgstr "Özel bilgi elemanları" - -msgid "You are also logged in on these services:" -msgstr "Ayrıca şu servislere giriş yaptınız:" +msgid "Shibboleth demo" +msgstr "Shibboleth demo" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp Kontroller" -msgid "No, only %SP%" -msgstr "Hayır, sadece %SP%" - -msgid "Username" -msgstr "Kullanıcı adı" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp doğru yapılandırılmış gibi görünmüyor." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp kurulum sayfasına geri dön" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp hatası" -msgid "You have successfully logged out from all services listed above." -msgstr "Yukarıda listelenen tüm servislerden başarıyla çıktınız." +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "%SP%'den başarıyla çıktınız." +msgid "Some error occurred" +msgstr "Hata oluştu" -msgid "Affiliation" -msgstr "Bağlantı" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "" -msgid "You have been logged out." -msgstr "Çıktınız" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "" -msgid "Return to service" -msgstr "Servise geri dön" +msgid "Street" +msgstr "Sokak" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federasyon Servis Sağlayıcı (Bu sistemde sunulan)" +msgid "Submit message" +msgstr "Mesaj gönder" -msgid "Preferred language" -msgstr "Tercih edilen dil" +msgid "Superfluous options in config file" +msgstr "Config dosyasındaki gereksiz tercihler" msgid "Surname" msgstr "Soyadı" -msgid "The following fields was not recognized" -msgstr "Şu alanlar tanınmadı" +msgid "Telephone number" +msgstr "Telefon numarası" -msgid "User ID" -msgstr "Kullanıcı ID" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Kimlik Sağlayıcı hatalı cevap verdi. (SAML Cevabı'ndaki durum kodu başarılamadı)" -msgid "JPEG Photo" -msgstr "JPEG fotoğraf" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "" -msgid "Postal address" -msgstr "Posta adresi" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Aşağıdaki hata ayıklama bilgisi yöneticinin/yardım masasının ilgisini çekebilir:" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "XML formatında SAML 2.0 SP Üstverisi (Metadata)" +msgid "The error report has been sent to the administrators." +msgstr "Hata raporu yöneticilere gönderildi" -msgid "Labeled URI" -msgstr "Etiketlenen URI" +msgid "The following fields was not recognized" +msgstr "Şu alanlar tanınmadı" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 Kimlik Sağlayıcı (Bu sistemde sunulan)" +msgid "The following optional fields was not found" +msgstr "Şu isteğe bağlı alanlar bulunamadı" -msgid "Metadata" -msgstr "Üstveri (metadata)" +msgid "The following required fields was not found" +msgstr "Şu gerekli alanlar bulunamadı" -msgid "Login" -msgstr "Giriş" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Verilen sayfa bulunamadı. URL %URL% idi." -msgid "Yes, all services" -msgstr "Evet, tüm servisler." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Verilen sayfa bulunamadı. Nedeni %REASON% idi. URL %URL% idi." -msgid "Logged out" -msgstr "Çıktınız" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Yürürlükteki çıkış işlemi ile ilgili bilgi kayboldu. Çıkmak istediğiniz servise geri dönün ve yeniden çıkmayı denyin. Bu hata, çıkış bilgisinin süresi dolduğu için oluşmuş olabilir. Çıkış bilgisi belirli bir süre için tutulur - genellikle birkaç saat. Bu süre normal bir çıkış işleminin tutacağından daha fazla bir süredir; bu hata yapılandırma ile ilgili başka bir hatayı işaret ediyor olabilir. Eğer sorun devam ederse, servis sağlayıcınızla iletişime geçiniz." -msgid "Postal code" -msgstr "Posta kodu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Bu isteğin başlatıcısı, bir sonraki gidiş yerini bildiren RelayState parametresini sağlamamış." -msgid "Logging out..." -msgstr "Çıkıyor" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Tanıma servisine gönderilen parametreler tanımlananlara göre değildi." -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 Kimlik Sağlayıcı (Bu sistemde sunulan)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "Öncelikli bağlantı" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Yapılandırmadaki (auth.adminpassword) şifrenin öntanımlı değeri değişmedi. Lütfen yapılandırma dosyasını düzeltin." -msgid "XML metadata" -msgstr "XML üstverisi (metadata)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Bu sayfaya yapılan istekte bir hata var. Nedeni %REASON% idi." -msgid "Telephone number" -msgstr "Telefon numarası" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "SimpleSAMLphp kurulumunuzda bazı yanlış ayarlamalar sözkonusu. Eğer bu servisin yöneticisi sizseniz, üstveri (metadata) ayarlarınızın düzgün bir şekilde yapıldığından emin olun." -msgid "Entitlement regarding the service" -msgstr "Servise göre yetki" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Bu Kimlik Sağlayıcı bir Servis Sağlayıcı'dan kimlik doğrulama isteği aldı, ancak bu isteği işlemeye çalışırken bir hata oluştu." -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Üstveri (Metadata)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Bu kısım kullanımda değil. SimpleSAMLphp ayarlarınızın etkinleştirme seçeneklerini kontrol edin." -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "\"Debug\" modda olduğunuz için, gönderdiğiniz mesajın içeriğini göreceksiniz." +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Bu hata beklenmeyen bir durum ya da SimpleSAMLphp'nin yanlış düzenlenmesi ndeniyle oluşmuş olabilir. Bu oturum açma servisinin yöneticisi ile iletişim kurun ve yukarıdaki hata mesajını gönderin." -msgid "Remember" -msgstr "Hatırla" +msgid "Title" +msgstr "Başlık" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Kişinin bağlı olduğu kuruluşun belirgin adı" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Bir SAML elemanı hakkındaki detayları görmek için, SAML elemanı başlığına tıklayın." -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "Mesaj göndermek üzeresiniz. Devam etmek için mesaj gönder linkine tıklayın." +msgid "Tracking number" +msgstr "" -msgid "Organizational unit" -msgstr "Organizasyonel birim" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "" -msgid "Local identity number" -msgstr "Yerel kimlik numarası" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Üstveri (Metadata)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Beklenmeyen durum" -msgid "Change your home organization" -msgstr "Organizasyonunuzu değiştirin" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "" + +msgid "User ID" +msgstr "Kullanıcı ID" msgid "User's password hash" msgstr "Kullanıcının şifre karması" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "Eğer diğer tarafta bir SimpleSAMLphp elemanını kullanıyorsanız, düz SimpleSAMLphp dosya biçiminde bunu kullanın:" - -msgid "Completed" -msgstr "Tamamlandı" +msgid "Username" +msgstr "Kullanıcı adı" -msgid "Select configuration file to check:" -msgstr "Kontrol edilecek konfigürasyon dosyasını seç:" +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP Demo Örneği" -msgid "On hold" -msgstr "Beklemede" +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federasyon Kimlik Sağlayıcı (Uzak sistemde sunulan)" -msgid "Help! I don't remember my password." -msgstr "Yardım! Şifremi hatırlamıyorum." +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federasyon Servis Sağlayıcı (Bu sistemde sunulan)" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "\"Debug\" modunu global SimpleSAMLphp konfigürasyon dosyasında config/config.php kapatabilirsiniz." +msgid "Warning" +msgstr "" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp hatası" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Kimlik Sağlayıcı'dan gelen cevabı kabul etmedik." -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Giriş yaptığınız bir yada daha fazla servis çıkışı desteklemiyor. Tüm oturumlarınızın kapatıldığından emin olmak için, tarayıcınızı kapatmanız önerilir." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Bu kimlik sağlayıcı bir kimlik doğrulama cevabı oluşturuken hata oluştu." -msgid "Organization's legal name" -msgstr "Organizasyonu'un resmi adı" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Çok kötü! - Kullanıcı adınız ve şifreniz olmadan bu servisi kullanamazsınız. Size yardımcı olabilecek birileri olabilir. Kuruluşunuza danışın. " -msgid "Options missing from config file" -msgstr "Config dosyasındaki tercihler eksik" +msgid "World" +msgstr "" -msgid "The following optional fields was not found" -msgstr "Şu isteğe bağlı alanlar bulunamadı" +msgid "XML metadata" +msgstr "XML üstverisi (metadata)" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "Üstveri xml'ini bu bağlantıdan alabilirsiniz:" +msgid "Yes, all services" +msgstr "Evet, tüm servisler." -msgid "Street" -msgstr "Sokak" +msgid "Yes, continue" +msgstr "Evet, devam et" -msgid "Message" -msgstr "Mesaj" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Contact information:" -msgstr "İletişim bilgileri:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Onay Alıcı Servis (Assertion Consumer Service) arayüzüne giriş yaptınız, ancak SAML Kimlik Doğrulama Cevabı sağlamadınız." -msgid "Optional fields" -msgstr "İsteğe bağlı alanlar" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Giriş sayfasına birşeyler gönderdiniz, fakat bazı nedenlerden dolayı şifreniz gönderilemedi. Lütfen tekrar deneyiniz." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "TekliÇıkışServis (SingleLogoutService) arayüzüne giriş yaptınız, ancak bir SAML Çıkışİsteği ya da ÇıkışCevabı sağlamadınız." -msgid "Fax number" -msgstr "Faks numarası" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Mesaj göndermek üzeresiniz. Devam etmek için mesaj gönder butonuna tıklayın." -msgid "Shibboleth demo" -msgstr "Shibboleth demo" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Mesaj göndermek üzeresiniz. Devam etmek için mesaj gönder linkine tıklayın." -msgid "Error in this metadata entry" -msgstr "Üstveri (metadata) bilgisinde hata var" +msgid "You are also logged in on these services:" +msgstr "Ayrıca şu servislere giriş yaptınız:" -msgid "Session size: %SIZE%" -msgstr "Oturum büyüklüğü: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Şu anda tamamlanmamış bir sisteme giriyorsunuz. Bu doğrulama kurulumu sadece test ve tamamlanma öncesi onaylama amaçlıdır. Eğer birileri size burayı gösteren bir bağlantı gönderdiyse, ve siz test edici değilseniz, muhtemelen yanlış bir bağlantı aldınızı, ve şu anda burada olmamalısınız. " -msgid "Parse" -msgstr "Çözümle" +msgid "You are now successfully logged out from %SP%." +msgstr "%SP%'den başarıyla çıktınız." -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Çok kötü! - Kullanıcı adınız ve şifreniz olmadan bu servisi kullanamazsınız. Size yardımcı olabilecek birileri olabilir. Kuruluşunuza danışın. " +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Üstveri xml'ini bu bağlantıdan alabilirsiniz:" -msgid "Choose your home organization" -msgstr "Organizasyonunuzu seçiniz" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "\"Debug\" modunu global SimpleSAMLphp konfigürasyon dosyasında config/config.php kapatabilirsiniz." -msgid "Send e-mail to help desk" -msgstr "Yardım'a e-posta gönderin" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Geçerli bir sertifika sağlamadınız. " -msgid "Metadata overview" -msgstr "Üstveri (metada) genel görünümü" +msgid "You have been logged out." +msgstr "Çıktınız" -msgid "Title" -msgstr "Başlık" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "%HOMEORG%'u organizasyonunuz olarak seçtiniz. Eğer yanlış ise, başka bir tanesini seçebilirsiniz." -msgid "Manager" -msgstr "Yönetici" +msgid "You have previously chosen to authenticate at" +msgstr "Dosya listesine geri dön" -msgid "Affiliation at home organization" -msgstr "Bağlı olunan kuruluşla bağlantı" +msgid "You have successfully logged out from all services listed above." +msgstr "Yukarıda listelenen tüm servislerden başarıyla çıktınız." -msgid "Help desk homepage" -msgstr "Yardım anasayfası" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Giriş sayfasına birşeyler gönderdiniz, fakat bazı nedenlerden dolayı şifreniz gönderilemedi. Lütfen tekrar deneyiniz." -msgid "Configuration check" -msgstr "Konfigürasyon kontrolü" +msgid "Your attributes" +msgstr "Bilgileriniz" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 Kimlik Sağlayıcı (Uzak sistemde sunulan)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "SimpleSAMLphp'nin sizin için ürettiği üstveri (metada). Bu üstveri dokümanını güvenilir bir federasyon kurmak için güvenilir paydaşlara gönderebilirsiniz." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Oturumunuz, şu andan itibaren %remaining% saniyeliğine geçerlidir." -msgid "Organizational homepage" -msgstr "Kurumsal websayfası" +msgid "[Preferred choice]" +msgstr "[Tercih edilen seçenek]" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "Şu anda tamamlanmamış bir sisteme giriyorsunuz. Bu doğrulama kurulumu sadece test ve tamamlanma öncesi onaylama amaçlıdır. Eğer birileri size burayı gösteren bir bağlantı gönderdiyse, ve siz test edici değilseniz, muhtemelen yanlış bir bağlantı aldınızı, ve şu anda burada olmamalısınız. " +msgid "not set" +msgstr "" diff --git a/locales/uk/LC_MESSAGES/attributes.po b/locales/uk/LC_MESSAGES/attributes.po new file mode 100644 index 0000000000..4599dafbb3 --- /dev/null +++ b/locales/uk/LC_MESSAGES/attributes.po @@ -0,0 +1,2061 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);\n" +"X-Generator: Poedit 3.7\n" + +msgid "aRecord" +msgstr "aRecord" + +msgid "urn:mace:dir:attribute-def:aRecord" +msgstr "urn:mace:dir:attribute-def:aRecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.26" +msgstr "urn:oid:0.9.2342.19200300.100.1.26" + +msgid "aliasedEntryName" +msgstr "aliasedEntryName" + +msgid "urn:mace:dir:attribute-def:aliasedEntryName" +msgstr "urn:mace:dir:attribute-def:aliasedEntryName" + +msgid "urn:oid:2.5.4.1" +msgstr "urn:oid:2.5.4.1" + +msgid "aliasedObjectName" +msgstr "aliasedObjectName" + +msgid "urn:mace:dir:attribute-def:aliasedObjectName" +msgstr "urn:mace:dir:attribute-def:aliasedObjectName" + +msgid "associatedDomain" +msgstr "associatedDomain" + +msgid "urn:mace:dir:attribute-def:associatedDomain" +msgstr "urn:mace:dir:attribute-def:associatedDomain" + +msgid "urn:oid:0.9.2342.19200300.100.1.37" +msgstr "urn:oid:0.9.2342.19200300.100.1.37" + +msgid "associatedName" +msgstr "associatedName" + +msgid "urn:mace:dir:attribute-def:associatedName" +msgstr "urn:mace:dir:attribute-def:associatedName" + +msgid "urn:oid:0.9.2342.19200300.100.1.38" +msgstr "urn:oid:0.9.2342.19200300.100.1.38" + +msgid "audio" +msgstr "audio" + +msgid "urn:mace:dir:attribute-def:audio" +msgstr "urn:mace:dir:attribute-def:audio" + +msgid "urn:oid:0.9.2342.19200300.100.1.55" +msgstr "urn:oid:0.9.2342.19200300.100.1.55" + +msgid "authorityRevocationList" +msgstr "authorityRevocationList" + +msgid "urn:mace:dir:attribute-def:authorityRevocationList" +msgstr "urn:mace:dir:attribute-def:authorityRevocationList" + +msgid "urn:oid:2.5.4.38" +msgstr "urn:oid:2.5.4.38" + +msgid "buildingName" +msgstr "buildingName" + +msgid "urn:mace:dir:attribute-def:buildingName" +msgstr "urn:mace:dir:attribute-def:buildingName" + +msgid "urn:oid:0.9.2342.19200300.100.1.48" +msgstr "urn:oid:0.9.2342.19200300.100.1.48" + +msgid "businessCategory" +msgstr "businessCategory" + +msgid "urn:mace:dir:attribute-def:businessCategory" +msgstr "urn:mace:dir:attribute-def:businessCategory" + +msgid "urn:oid:2.5.4.15" +msgstr "urn:oid:2.5.4.15" + +msgid "c" +msgstr "c" + +msgid "urn:mace:dir:attribute-def:c" +msgstr "urn:mace:dir:attribute-def:c" + +msgid "urn:oid:2.5.4.6" +msgstr "urn:oid:2.5.4.6" + +msgid "cACertificate" +msgstr "cACertificate" + +msgid "urn:mace:dir:attribute-def:cACertificate" +msgstr "urn:mace:dir:attribute-def:cACertificate" + +msgid "urn:oid:2.5.4.37" +msgstr "urn:oid:2.5.4.37" + +msgid "cNAMERecord" +msgstr "cNAMERecord" + +msgid "urn:mace:dir:attribute-def:cNAMERecord" +msgstr "urn:mace:dir:attribute-def:cNAMERecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.31" +msgstr "urn:oid:0.9.2342.19200300.100.1.31" + +msgid "carLicense" +msgstr "carLicense" + +msgid "urn:mace:dir:attribute-def:carLicense" +msgstr "urn:mace:dir:attribute-def:carLicense" + +msgid "urn:oid:2.16.840.1.113730.3.1.1" +msgstr "urn:oid:2.16.840.1.113730.3.1.1" + +msgid "certificateRevocationList" +msgstr "certificateRevocationList" + +msgid "urn:mace:dir:attribute-def:certificateRevocationList" +msgstr "urn:mace:dir:attribute-def:certificateRevocationList" + +msgid "urn:oid:2.5.4.39" +msgstr "urn:oid:2.5.4.39" + +# English string: Common name +msgid "cn" +msgstr "Повне ім'я" + +# English string: Common name +msgid "urn:mace:dir:attribute-def:cn" +msgstr "Повне ім'я" + +# English string: Common name +msgid "urn:oid:2.5.4.3" +msgstr "Повне ім'я" + +msgid "co" +msgstr "co" + +msgid "urn:mace:dir:attribute-def:co" +msgstr "urn:mace:dir:attribute-def:co" + +msgid "urn:oid:0.9.2342.19200300.100.1.43" +msgstr "urn:oid:0.9.2342.19200300.100.1.43" + +msgid "commonName" +msgstr "commonName" + +msgid "urn:mace:dir:attribute-def:commonName" +msgstr "urn:mace:dir:attribute-def:commonName" + +msgid "countryName" +msgstr "countryName" + +msgid "urn:mace:dir:attribute-def:countryName" +msgstr "urn:mace:dir:attribute-def:countryName" + +msgid "crossCertificatePair" +msgstr "crossCertificatePair" + +msgid "urn:mace:dir:attribute-def:crossCertificatePair" +msgstr "urn:mace:dir:attribute-def:crossCertificatePair" + +msgid "urn:oid:2.5.4.40" +msgstr "urn:oid:2.5.4.40" + +msgid "dITRedirect" +msgstr "dITRedirect" + +msgid "urn:mace:dir:attribute-def:dITRedirect" +msgstr "urn:mace:dir:attribute-def:dITRedirect" + +msgid "urn:oid:0.9.2342.19200300.100.1.54" +msgstr "urn:oid:0.9.2342.19200300.100.1.54" + +msgid "dSAQuality" +msgstr "dSAQuality" + +msgid "urn:mace:dir:attribute-def:dSAQuality" +msgstr "urn:mace:dir:attribute-def:dSAQuality" + +msgid "urn:oid:0.9.2342.19200300.100.1.49" +msgstr "urn:oid:0.9.2342.19200300.100.1.49" + +# English string: Domain component (DC) +msgid "dc" +msgstr "Компонент домену (DC)" + +# English string: Domain component (DC) +msgid "urn:mace:dir:attribute-def:dc" +msgstr "Компонент домену (DC)" + +# English string: Domain component (DC) +msgid "urn:oid:0.9.2342.19200300.100.1.25" +msgstr "Компонент домену (DC)" + +msgid "deltaRevocationList" +msgstr "deltaRevocationList" + +msgid "urn:mace:dir:attribute-def:deltaRevocationList" +msgstr "urn:mace:dir:attribute-def:deltaRevocationList" + +msgid "urn:oid:2.5.4.53" +msgstr "urn:oid:2.5.4.53" + +msgid "departmentNumber" +msgstr "departmentNumber" + +msgid "urn:mace:dir:attribute-def:departmentNumber" +msgstr "urn:mace:dir:attribute-def:departmentNumber" + +msgid "urn:oid:2.16.840.1.113730.3.1.2" +msgstr "urn:oid:2.16.840.1.113730.3.1.2" + +msgid "description" +msgstr "description" + +msgid "urn:mace:dir:attribute-def:description" +msgstr "urn:mace:dir:attribute-def:description" + +msgid "urn:oid:2.5.4.13" +msgstr "urn:oid:2.5.4.13" + +msgid "destinationIndicator" +msgstr "destinationIndicator" + +msgid "urn:mace:dir:attribute-def:destinationIndicator" +msgstr "urn:mace:dir:attribute-def:destinationIndicator" + +msgid "urn:oid:2.5.4.27" +msgstr "urn:oid:2.5.4.27" + +# English string: Display name +msgid "displayName" +msgstr "Відображуване ім’я" + +# English string: Display name +msgid "urn:mace:dir:attribute-def:displayName" +msgstr "Відображуване ім’я" + +# English string: Display name +msgid "urn:oid:2.16.840.1.113730.3.1.241" +msgstr "Відображуване ім’я" + +msgid "distinguishedName" +msgstr "distinguishedName" + +msgid "urn:mace:dir:attribute-def:distinguishedName" +msgstr "urn:mace:dir:attribute-def:distinguishedName" + +msgid "urn:oid:2.5.4.49" +msgstr "urn:oid:2.5.4.49" + +msgid "dmdName" +msgstr "dmdName" + +msgid "urn:mace:dir:attribute-def:dmdName" +msgstr "urn:mace:dir:attribute-def:dmdName" + +msgid "urn:oid:2.5.4.54" +msgstr "urn:oid:2.5.4.54" + +msgid "dnQualifier" +msgstr "dnQualifier" + +msgid "urn:mace:dir:attribute-def:dnQualifier" +msgstr "urn:mace:dir:attribute-def:dnQualifier" + +msgid "urn:oid:2.5.4.46" +msgstr "urn:oid:2.5.4.46" + +msgid "documentAuthor" +msgstr "documentAuthor" + +msgid "urn:mace:dir:attribute-def:documentAuthor" +msgstr "urn:mace:dir:attribute-def:documentAuthor" + +msgid "urn:oid:0.9.2342.19200300.100.1.14" +msgstr "urn:oid:0.9.2342.19200300.100.1.14" + +msgid "documentIdentifier" +msgstr "documentIdentifier" + +msgid "urn:mace:dir:attribute-def:documentIdentifier" +msgstr "urn:mace:dir:attribute-def:documentIdentifier" + +msgid "urn:oid:0.9.2342.19200300.100.1.11" +msgstr "urn:oid:0.9.2342.19200300.100.1.11" + +msgid "documentLocation" +msgstr "documentLocation" + +msgid "urn:mace:dir:attribute-def:documentLocation" +msgstr "urn:mace:dir:attribute-def:documentLocation" + +msgid "urn:oid:0.9.2342.19200300.100.1.15" +msgstr "urn:oid:0.9.2342.19200300.100.1.15" + +msgid "documentPublisher" +msgstr "documentPublisher" + +msgid "urn:mace:dir:attribute-def:documentPublisher" +msgstr "urn:mace:dir:attribute-def:documentPublisher" + +msgid "urn:oid:0.9.2342.19200300.100.1.56" +msgstr "urn:oid:0.9.2342.19200300.100.1.56" + +msgid "documentTitle" +msgstr "documentTitle" + +msgid "urn:mace:dir:attribute-def:documentTitle" +msgstr "urn:mace:dir:attribute-def:documentTitle" + +msgid "urn:oid:0.9.2342.19200300.100.1.12" +msgstr "urn:oid:0.9.2342.19200300.100.1.12" + +msgid "documentVersion" +msgstr "documentVersion" + +msgid "urn:mace:dir:attribute-def:documentVersion" +msgstr "urn:mace:dir:attribute-def:documentVersion" + +msgid "urn:oid:0.9.2342.19200300.100.1.13" +msgstr "urn:oid:0.9.2342.19200300.100.1.13" + +msgid "domainComponent" +msgstr "domainComponent" + +msgid "urn:mace:dir:attribute-def:domainComponent" +msgstr "urn:mace:dir:attribute-def:domainComponent" + +msgid "drink" +msgstr "drink" + +msgid "urn:mace:dir:attribute-def:drink" +msgstr "urn:mace:dir:attribute-def:drink" + +msgid "urn:oid:0.9.2342.19200300.100.1.5" +msgstr "urn:oid:0.9.2342.19200300.100.1.5" + +# English string: Organizational homepage +msgid "eduOrgHomePageURI" +msgstr "Домашня сторінка організації" + +# English string: Organizational homepage +msgid "urn:mace:dir:attribute-def:eduOrgHomePageURI" +msgstr "Домашня сторінка організації" + +# English string: Organizational homepage +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.2" +msgstr "Домашня сторінка організації" + +msgid "eduOrgIdentityAuthNPolicyURI" +msgstr "eduOrgIdentityAuthNPolicyURI" + +msgid "urn:mace:dir:attribute-def:eduOrgIdentityAuthNPolicyURI" +msgstr "urn:mace:dir:attribute-def:eduOrgIdentityAuthNPolicyURI" + +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.3" +msgstr "urn:oid:1.3.6.1.4.1.5923.1.2.1.3" + +# English string: Organization's legal name +msgid "eduOrgLegalName" +msgstr "Юридична назва організації" + +# English string: Organization's legal name +msgid "urn:mace:dir:attribute-def:eduOrgLegalName" +msgstr "Юридична назва організації" + +# English string: Organization's legal name +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.4" +msgstr "Юридична назва організації" + +msgid "eduOrgSuperiorURI" +msgstr "eduOrgSuperiorURI" + +msgid "urn:mace:dir:attribute-def:eduOrgSuperiorURI" +msgstr "urn:mace:dir:attribute-def:eduOrgSuperiorURI" + +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.5" +msgstr "urn:oid:1.3.6.1.4.1.5923.1.2.1.5" + +msgid "eduOrgWhitePagesURI" +msgstr "eduOrgWhitePagesURI" + +msgid "urn:mace:dir:attribute-def:eduOrgWhitePagesURI" +msgstr "urn:mace:dir:attribute-def:eduOrgWhitePagesURI" + +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.6" +msgstr "urn:oid:1.3.6.1.4.1.5923.1.2.1.6" + +# English string: Affiliation +msgid "eduPersonAffiliation" +msgstr "Членство" + +# English string: Affiliation +msgid "urn:mace:dir:attribute-def:eduPersonAffiliation" +msgstr "Членство" + +# English string: Affiliation +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.1" +msgstr "Членство" + +# English string: Identity assurance profile +msgid "eduPersonAssurance" +msgstr "Ідентифікатор гарантованого профайлу" + +# English string: Identity assurance profile +msgid "urn:mace:dir:attribute-def:eduPersonAssurance" +msgstr "Ідентифікатор гарантованого профайлу" + +# English string: Identity assurance profile +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.11" +msgstr "Ідентифікатор гарантованого профайлу" + +# English string: Entitlement regarding the service +msgid "eduPersonEntitlement" +msgstr "Право на надання послуг" + +# English string: Entitlement regarding the service +msgid "urn:mace:dir:attribute-def:eduPersonEntitlement" +msgstr "Право на надання послуг" + +# English string: Entitlement regarding the service +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.7" +msgstr "Право на надання послуг" + +# English string: Nickname +msgid "eduPersonNickname" +msgstr "Псевдонім" + +# English string: Nickname +msgid "urn:mace:dir:attribute-def:eduPersonNickname" +msgstr "Псевдонім" + +# English string: Nickname +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.2" +msgstr "Псевдонім" + +# English string: Distinguished name (DN) of person's home organization +msgid "eduPersonOrgDN" +msgstr "Відмінне ім’я (DN) користувача домашньої організації" + +# English string: Distinguished name (DN) of person's home organization +msgid "urn:mace:dir:attribute-def:eduPersonOrgDN" +msgstr "Відмінне ім’я (DN) користувача домашньої організації" + +# English string: Distinguished name (DN) of person's home organization +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.3" +msgstr "Відмінне ім’я (DN) користувача домашньої організації" + +# English string: Distinguished name (DN) of the person's home organizational unit +msgid "eduPersonOrgUnitDN" +msgstr "Відмінне ім'я (DN) користувача з підрозділу домашньої організації" + +# English string: Distinguished name (DN) of the person's home organizational unit +msgid "urn:mace:dir:attribute-def:eduPersonOrgUnitDN" +msgstr "Відмінне ім'я (DN) користувача з підрозділу домашньої організації" + +# English string: Distinguished name (DN) of the person's home organizational unit +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.4" +msgstr "Відмінне ім'я (DN) користувача з підрозділу домашньої організації" + +# English string: Primary affiliation +msgid "eduPersonPrimaryAffiliation" +msgstr "Головне членство" + +# English string: Primary affiliation +msgid "urn:mace:dir:attribute-def:eduPersonPrimaryAffiliation" +msgstr "Головне членство" + +# English string: Primary affiliation +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.5" +msgstr "Головне членство" + +# English string: Distinguished name (DN) of person's primary Organizational Unit +msgid "eduPersonPrimaryOrgUnitDN" +msgstr "Відмінне ім'я (DN) користувача основного підрозділу організації" + +# English string: Distinguished name (DN) of person's primary Organizational Unit +msgid "urn:mace:dir:attribute-def:eduPersonPrimaryOrgUnitDN" +msgstr "Відмінне ім'я (DN) користувача основного підрозділу організації" + +# English string: Distinguished name (DN) of person's primary Organizational Unit +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.8" +msgstr "Відмінне ім'я (DN) користувача основного підрозділу організації" + +# English string: Person's principal name at home organization +msgid "eduPersonPrincipalName" +msgstr "Ім'я керівника головної організації" + +# English string: Person's principal name at home organization +msgid "urn:mace:dir:attribute-def:eduPersonPrincipalName" +msgstr "Ім'я керівника головної організації" + +# English string: Person's principal name at home organization +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.6" +msgstr "Ім'я керівника головної організації" + +# English string: Affiliation at home organization +msgid "eduPersonScopedAffiliation" +msgstr "Членство в головній організації" + +# English string: Affiliation at home organization +msgid "urn:mace:dir:attribute-def:eduPersonScopedAffiliation" +msgstr "Членство в головній організації" + +# English string: Affiliation at home organization +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.9" +msgstr "Членство в головній організації" + +# English string: Persistent pseudonymous ID +msgid "eduPersonTargetedID" +msgstr "ID постійного псевдоніма" + +# English string: Persistent pseudonymous ID +msgid "urn:mace:dir:attribute-def:eduPersonTargetedID" +msgstr "ID постійного псевдоніма" + +# English string: Persistent pseudonymous ID +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.10" +msgstr "ID постійного псевдоніма" + +# English string: Person's non-reassignable, persistent pseudonymous ID at home organization +msgid "eduPersonUniqueId" +msgstr "eduPersonUniqueId" + +# English string: Person's non-reassignable, persistent pseudonymous ID at home organization +msgid "urn:mace:dir:attribute-def:eduPersonUniqueId" +msgstr "urn:mace:dir:attribute-def:eduPersonUniqueId" + +# English string: Person's non-reassignable, persistent pseudonymous ID at home organization +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.13" +msgstr "urn:oid:1.3.6.1.4.1.5923.1.1.1.13" + +msgid "email" +msgstr "email" + +msgid "urn:mace:dir:attribute-def:email" +msgstr "urn:mace:dir:attribute-def:email" + +msgid "urn:oid:1.2.840.113549.1.9.1" +msgstr "urn:oid:1.2.840.113549.1.9.1" + +msgid "emailAddress" +msgstr "emailAddress" + +msgid "urn:mace:dir:attribute-def:emailAddress" +msgstr "urn:mace:dir:attribute-def:emailAddress" + +msgid "employeeNumber" +msgstr "employeeNumber" + +msgid "urn:mace:dir:attribute-def:employeeNumber" +msgstr "urn:mace:dir:attribute-def:employeeNumber" + +msgid "urn:oid:2.16.840.1.113730.3.1.3" +msgstr "urn:oid:2.16.840.1.113730.3.1.3" + +msgid "employeeType" +msgstr "employeeType" + +msgid "urn:mace:dir:attribute-def:employeeType" +msgstr "urn:mace:dir:attribute-def:employeeType" + +msgid "urn:oid:2.16.840.1.113730.3.1.4" +msgstr "urn:oid:2.16.840.1.113730.3.1.4" + +msgid "enhancedSearchGuide" +msgstr "enhancedSearchGuide" + +msgid "urn:mace:dir:attribute-def:enhancedSearchGuide" +msgstr "urn:mace:dir:attribute-def:enhancedSearchGuide" + +msgid "urn:oid:2.5.4.47" +msgstr "urn:oid:2.5.4.47" + +# English string: Fax number +msgid "facsimileTelephoneNumber" +msgstr "Номер факсу" + +# English string: Fax number +msgid "urn:mace:dir:attribute-def:facsimileTelephoneNumber" +msgstr "Номер факсу" + +# English string: Fax number +msgid "urn:oid:2.5.4.23" +msgstr "Номер факсу" + +msgid "favouriteDrink" +msgstr "favouriteDrink" + +msgid "urn:mace:dir:attribute-def:favouriteDrink" +msgstr "urn:mace:dir:attribute-def:favouriteDrink" + +msgid "fax" +msgstr "fax" + +msgid "urn:mace:dir:attribute-def:fax" +msgstr "urn:mace:dir:attribute-def:fax" + +msgid "federationFeideSchemaVersion" +msgstr "federationFeideSchemaVersion" + +msgid "urn:mace:dir:attribute-def:federationFeideSchemaVersion" +msgstr "urn:mace:dir:attribute-def:federationFeideSchemaVersion" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.9" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.9" + +msgid "friendlyCountryName" +msgstr "friendlyCountryName" + +msgid "urn:mace:dir:attribute-def:friendlyCountryName" +msgstr "urn:mace:dir:attribute-def:friendlyCountryName" + +msgid "generationQualifier" +msgstr "generationQualifier" + +msgid "urn:mace:dir:attribute-def:generationQualifier" +msgstr "urn:mace:dir:attribute-def:generationQualifier" + +msgid "urn:oid:2.5.4.44" +msgstr "urn:oid:2.5.4.44" + +# English string: Given name +msgid "givenName" +msgstr "Ім'я" + +# English string: Given name +msgid "urn:mace:dir:attribute-def:givenName" +msgstr "Ім'я" + +# English string: Given name +msgid "urn:oid:2.5.4.42" +msgstr "Ім'я" + +msgid "gn" +msgstr "gn" + +msgid "urn:mace:dir:attribute-def:gn" +msgstr "urn:mace:dir:attribute-def:gn" + +# English string: Home telephone +msgid "homePhone" +msgstr "Домашній телефон" + +# English string: Home telephone +msgid "urn:mace:dir:attribute-def:homePhone" +msgstr "Домашній телефон" + +# English string: Home telephone +msgid "urn:oid:0.9.2342.19200300.100.1.20" +msgstr "Домашній телефон" + +# English string: Home postal address +msgid "homePostalAddress" +msgstr "Домашня поштова адреса" + +# English string: Home postal address +msgid "urn:mace:dir:attribute-def:homePostalAddress" +msgstr "Домашня поштова адреса" + +# English string: Home postal address +msgid "urn:oid:0.9.2342.19200300.100.1.39" +msgstr "Домашня поштова адреса" + +msgid "homeTelephoneNumber" +msgstr "homeTelephoneNumber" + +msgid "urn:mace:dir:attribute-def:homeTelephoneNumber" +msgstr "urn:mace:dir:attribute-def:homeTelephoneNumber" + +msgid "host" +msgstr "host" + +msgid "urn:mace:dir:attribute-def:host" +msgstr "urn:mace:dir:attribute-def:host" + +msgid "urn:oid:0.9.2342.19200300.100.1.9" +msgstr "urn:oid:0.9.2342.19200300.100.1.9" + +msgid "houseIdentifier" +msgstr "houseIdentifier" + +msgid "urn:mace:dir:attribute-def:houseIdentifier" +msgstr "urn:mace:dir:attribute-def:houseIdentifier" + +msgid "urn:oid:2.5.4.51" +msgstr "urn:oid:2.5.4.51" + +msgid "info" +msgstr "info" + +msgid "urn:mace:dir:attribute-def:info" +msgstr "urn:mace:dir:attribute-def:info" + +msgid "urn:oid:0.9.2342.19200300.100.1.4" +msgstr "urn:oid:0.9.2342.19200300.100.1.4" + +msgid "initials" +msgstr "initials" + +msgid "urn:mace:dir:attribute-def:initials" +msgstr "urn:mace:dir:attribute-def:initials" + +msgid "urn:oid:2.5.4.43" +msgstr "urn:oid:2.5.4.43" + +msgid "internationaliSDNNumber" +msgstr "internationaliSDNNumber" + +msgid "urn:mace:dir:attribute-def:internationaliSDNNumber" +msgstr "urn:mace:dir:attribute-def:internationaliSDNNumber" + +msgid "urn:oid:2.5.4.25" +msgstr "urn:oid:2.5.4.25" + +msgid "janetMailbox" +msgstr "janetMailbox" + +msgid "urn:mace:dir:attribute-def:janetMailbox" +msgstr "urn:mace:dir:attribute-def:janetMailbox" + +msgid "urn:oid:0.9.2342.19200300.100.1.46" +msgstr "urn:oid:0.9.2342.19200300.100.1.46" + +# English string: JPEG Photo +msgid "jpegPhoto" +msgstr "Фотографія у форматі JPEG" + +# English string: JPEG Photo +msgid "urn:mace:dir:attribute-def:jpegPhoto" +msgstr "Фотографія у форматі JPEG" + +# English string: JPEG Photo +msgid "urn:oid:0.9.2342.19200300.100.1.60" +msgstr "Фотографія у форматі JPEG" + +msgid "knowledgeInformation" +msgstr "knowledgeInformation" + +msgid "urn:mace:dir:attribute-def:knowledgeInformation" +msgstr "urn:mace:dir:attribute-def:knowledgeInformation" + +msgid "urn:oid:2.5.4.2" +msgstr "urn:oid:2.5.4.2" + +# English string: Locality +msgid "l" +msgstr "Район" + +# English string: Locality +msgid "urn:mace:dir:attribute-def:l" +msgstr "Район" + +# English string: Locality +msgid "urn:oid:2.5.4.7" +msgstr "Район" + +# English string: Labeled URI +msgid "labeledURI" +msgstr "Маркований URI (LabeledURI)" + +# English string: Labeled URI +msgid "urn:mace:dir:attribute-def:labeledURI" +msgstr "Маркований URI (LabeledURI)" + +# English string: Labeled URI +msgid "urn:oid:1.3.6.1.4.1.250.1.57" +msgstr "Маркований URI (LabeledURI)" + +msgid "localityName" +msgstr "localityName" + +msgid "urn:mace:dir:attribute-def:localityName" +msgstr "urn:mace:dir:attribute-def:localityName" + +msgid "mDRecord" +msgstr "mDRecord" + +msgid "urn:mace:dir:attribute-def:mDRecord" +msgstr "urn:mace:dir:attribute-def:mDRecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.27" +msgstr "urn:oid:0.9.2342.19200300.100.1.27" + +msgid "mXRecord" +msgstr "mXRecord" + +msgid "urn:mace:dir:attribute-def:mXRecord" +msgstr "urn:mace:dir:attribute-def:mXRecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.28" +msgstr "urn:oid:0.9.2342.19200300.100.1.28" + +# English string: Mail +msgid "mail" +msgstr "Пошта" + +# English string: Mail +msgid "urn:mace:dir:attribute-def:mail" +msgstr "Пошта" + +# English string: Mail +msgid "urn:oid:0.9.2342.19200300.100.1.3" +msgstr "Пошта" + +msgid "mailPreferenceOption" +msgstr "mailPreferenceOption" + +msgid "urn:mace:dir:attribute-def:mailPreferenceOption" +msgstr "urn:mace:dir:attribute-def:mailPreferenceOption" + +msgid "urn:oid:0.9.2342.19200300.100.1.47" +msgstr "urn:oid:0.9.2342.19200300.100.1.47" + +# English string: Manager +msgid "manager" +msgstr "Керуючий" + +# English string: Manager +msgid "urn:mace:dir:attribute-def:manager" +msgstr "Керуючий" + +# English string: Manager +msgid "urn:oid:0.9.2342.19200300.100.1.10" +msgstr "Керуючий" + +msgid "member" +msgstr "member" + +msgid "urn:mace:dir:attribute-def:member" +msgstr "urn:mace:dir:attribute-def:member" + +msgid "urn:oid:2.5.4.31" +msgstr "urn:oid:2.5.4.31" + +# English string: Mobile +msgid "mobile" +msgstr "Мобільний" + +# English string: Mobile +msgid "urn:mace:dir:attribute-def:mobile" +msgstr "Мобільний" + +# English string: Mobile +msgid "urn:oid:0.9.2342.19200300.100.1.41" +msgstr "Мобільний" + +msgid "mobileTelephoneNumber" +msgstr "mobileTelephoneNumber" + +msgid "urn:mace:dir:attribute-def:mobileTelephoneNumber" +msgstr "urn:mace:dir:attribute-def:mobileTelephoneNumber" + +msgid "nSRecord" +msgstr "nSRecord" + +msgid "urn:mace:dir:attribute-def:nSRecord" +msgstr "urn:mace:dir:attribute-def:nSRecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.29" +msgstr "urn:oid:0.9.2342.19200300.100.1.29" + +msgid "name" +msgstr "name" + +msgid "urn:mace:dir:attribute-def:name" +msgstr "urn:mace:dir:attribute-def:name" + +msgid "urn:oid:2.5.4.41" +msgstr "urn:oid:2.5.4.41" + +msgid "norEduOrgAcronym" +msgstr "norEduOrgAcronym" + +msgid "urn:mace:dir:attribute-def:norEduOrgAcronym" +msgstr "urn:mace:dir:attribute-def:norEduOrgAcronym" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.6" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.6" + +# English string: Organizational number +msgid "norEduOrgNIN" +msgstr "Номер організації" + +# English string: Organizational number +msgid "urn:mace:dir:attribute-def:norEduOrgNIN" +msgstr "Номер організації" + +# English string: Organizational number +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.12" +msgstr "Номер організації" + +msgid "norEduOrgSchemaVersion" +msgstr "norEduOrgSchemaVersion" + +msgid "urn:mace:dir:attribute-def:norEduOrgSchemaVersion" +msgstr "urn:mace:dir:attribute-def:norEduOrgSchemaVersion" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.11" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.11" + +msgid "norEduOrgUniqueIdentifier" +msgstr "norEduOrgUniqueIdentifier" + +msgid "urn:mace:dir:attribute-def:norEduOrgUniqueIdentifier" +msgstr "urn:mace:dir:attribute-def:norEduOrgUniqueIdentifier" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.7" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.7" + +msgid "norEduOrgUniqueNumber" +msgstr "norEduOrgUniqueNumber" + +msgid "urn:mace:dir:attribute-def:norEduOrgUniqueNumber" +msgstr "urn:mace:dir:attribute-def:norEduOrgUniqueNumber" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.1" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.1" + +msgid "norEduOrgUnitUniqueIdentifier" +msgstr "norEduOrgUnitUniqueIdentifier" + +msgid "urn:mace:dir:attribute-def:norEduOrgUnitUniqueIdentifier" +msgstr "urn:mace:dir:attribute-def:norEduOrgUnitUniqueIdentifier" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.8" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.8" + +msgid "norEduOrgUnitUniqueNumber" +msgstr "norEduOrgUnitUniqueNumber" + +msgid "urn:mace:dir:attribute-def:norEduOrgUnitUniqueNumber" +msgstr "urn:mace:dir:attribute-def:norEduOrgUnitUniqueNumber" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.2" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.2" + +# English string: Date of birth +msgid "norEduPersonBirthDate" +msgstr "Дата народження" + +# English string: Date of birth +msgid "urn:mace:dir:attribute-def:norEduPersonBirthDate" +msgstr "Дата народження" + +# English string: Date of birth +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.3" +msgstr "Дата народження" + +# English string: Local identity number +msgid "norEduPersonLIN" +msgstr "Локальний ідентифікаційний номер" + +# English string: Local identity number +msgid "urn:mace:dir:attribute-def:norEduPersonLIN" +msgstr "Локальний ідентифікаційний номер" + +# English string: Local identity number +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.4" +msgstr "Локальний ідентифікаційний номер" + +# English string: Identity number assigned by public authorities +msgid "norEduPersonNIN" +msgstr "Ідентифікаційний номер, що присвоюється органами державної влади" + +# English string: Identity number assigned by public authorities +msgid "urn:mace:dir:attribute-def:norEduPersonNIN" +msgstr "Ідентифікаційний номер, що присвоюється органами державної влади" + +# English string: Identity number assigned by public authorities +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.5" +msgstr "Ідентифікаційний номер, що присвоюється органами державної влади" + +# English string: Organization name +msgid "o" +msgstr "Назва організації" + +# English string: Organization name +msgid "urn:mace:dir:attribute-def:o" +msgstr "Назва організації" + +# English string: Organization name +msgid "urn:oid:2.5.4.10" +msgstr "Назва організації" + +msgid "objectClass" +msgstr "objectClass" + +msgid "urn:mace:dir:attribute-def:objectClass" +msgstr "urn:mace:dir:attribute-def:objectClass" + +msgid "urn:oid:2.5.4.0" +msgstr "urn:oid:2.5.4.0" + +msgid "organizationName" +msgstr "organizationName" + +msgid "urn:mace:dir:attribute-def:organizationName" +msgstr "urn:mace:dir:attribute-def:organizationName" + +msgid "organizationalStatus" +msgstr "organizationalStatus" + +msgid "urn:mace:dir:attribute-def:organizationalStatus" +msgstr "urn:mace:dir:attribute-def:organizationalStatus" + +msgid "urn:oid:0.9.2342.19200300.100.1.45" +msgstr "urn:oid:0.9.2342.19200300.100.1.45" + +msgid "organizationalUnitName" +msgstr "organizationalUnitName" + +msgid "urn:mace:dir:attribute-def:organizationalUnitName" +msgstr "urn:mace:dir:attribute-def:organizationalUnitName" + +# English string: Organizational unit +msgid "urn:oid:2.5.4.11" +msgstr "Підрозділ організації" + +msgid "otherMailbox" +msgstr "otherMailbox" + +msgid "urn:mace:dir:attribute-def:otherMailbox" +msgstr "urn:mace:dir:attribute-def:otherMailbox" + +msgid "urn:oid:0.9.2342.19200300.100.1.22" +msgstr "urn:oid:0.9.2342.19200300.100.1.22" + +# English string: Organizational unit +msgid "ou" +msgstr "Підрозділ організації" + +# English string: Organizational unit +msgid "urn:mace:dir:attribute-def:ou" +msgstr "Підрозділ організації" + +msgid "owner" +msgstr "owner" + +msgid "urn:mace:dir:attribute-def:owner" +msgstr "urn:mace:dir:attribute-def:owner" + +msgid "urn:oid:2.5.4.32" +msgstr "urn:oid:2.5.4.32" + +msgid "pager" +msgstr "pager" + +msgid "urn:mace:dir:attribute-def:pager" +msgstr "urn:mace:dir:attribute-def:pager" + +msgid "urn:oid:0.9.2342.19200300.100.1.42" +msgstr "urn:oid:0.9.2342.19200300.100.1.42" + +msgid "pagerTelephoneNumber" +msgstr "pagerTelephoneNumber" + +msgid "urn:mace:dir:attribute-def:pagerTelephoneNumber" +msgstr "urn:mace:dir:attribute-def:pagerTelephoneNumber" + +# English string: Service-specific pseudonymous ID at home organization +msgid "pairwise-id" +msgstr "pairwise-id" + +# English string: Service-specific pseudonymous ID at home organization +msgid "urn:oasis:names:tc:SAML:attribute:pairwise-id" +msgstr "urn:oasis:names:tc:SAML:attribute:pairwise-id" + +msgid "personalSignature" +msgstr "personalSignature" + +msgid "urn:mace:dir:attribute-def:personalSignature" +msgstr "urn:mace:dir:attribute-def:personalSignature" + +msgid "urn:oid:0.9.2342.19200300.100.1.53" +msgstr "urn:oid:0.9.2342.19200300.100.1.53" + +msgid "personalTitle" +msgstr "personalTitle" + +msgid "urn:mace:dir:attribute-def:personalTitle" +msgstr "urn:mace:dir:attribute-def:personalTitle" + +msgid "urn:oid:0.9.2342.19200300.100.1.40" +msgstr "urn:oid:0.9.2342.19200300.100.1.40" + +msgid "photo" +msgstr "photo" + +msgid "urn:mace:dir:attribute-def:photo" +msgstr "urn:mace:dir:attribute-def:photo" + +msgid "urn:oid:0.9.2342.19200300.100.1.7" +msgstr "urn:oid:0.9.2342.19200300.100.1.7" + +msgid "physicalDeliveryOfficeName" +msgstr "physicalDeliveryOfficeName" + +msgid "urn:mace:dir:attribute-def:physicalDeliveryOfficeName" +msgstr "urn:mace:dir:attribute-def:physicalDeliveryOfficeName" + +msgid "urn:oid:2.5.4.19" +msgstr "urn:oid:2.5.4.19" + +msgid "pkcs9email" +msgstr "pkcs9email" + +msgid "urn:mace:dir:attribute-def:pkcs9email" +msgstr "urn:mace:dir:attribute-def:pkcs9email" + +# English string: Post office box +msgid "postOfficeBox" +msgstr "Абонентська поштова скринька" + +# English string: Post office box +msgid "urn:mace:dir:attribute-def:postOfficeBox" +msgstr "Абонентська поштова скринька" + +# English string: Post office box +msgid "urn:oid:2.5.4.18" +msgstr "Абонентська поштова скринька" + +# English string: Postal address +msgid "postalAddress" +msgstr "Поштова адреса" + +# English string: Postal address +msgid "urn:mace:dir:attribute-def:postalAddress" +msgstr "Поштова адреса" + +# English string: Postal address +msgid "urn:oid:2.5.4.16" +msgstr "Поштова адреса" + +# English string: Postal code +msgid "postalCode" +msgstr "Поштовий індекс" + +# English string: Postal code +msgid "urn:mace:dir:attribute-def:postalCode" +msgstr "Поштовий індекс" + +# English string: Postal code +msgid "urn:oid:2.5.4.17" +msgstr "Поштовий індекс" + +msgid "preferredDeliveryMethod" +msgstr "preferredDeliveryMethod" + +msgid "urn:mace:dir:attribute-def:preferredDeliveryMethod" +msgstr "urn:mace:dir:attribute-def:preferredDeliveryMethod" + +msgid "urn:oid:2.5.4.28" +msgstr "urn:oid:2.5.4.28" + +# English string: Preferred language +msgid "preferredLanguage" +msgstr "Бажана мова" + +# English string: Preferred language +msgid "urn:mace:dir:attribute-def:preferredLanguage" +msgstr "Бажана мова" + +# English string: Preferred language +msgid "urn:oid:2.16.840.1.113730.3.1.39" +msgstr "Бажана мова" + +msgid "presentationAddress" +msgstr "presentationAddress" + +msgid "urn:mace:dir:attribute-def:presentationAddress" +msgstr "urn:mace:dir:attribute-def:presentationAddress" + +msgid "urn:oid:2.5.4.29" +msgstr "urn:oid:2.5.4.29" + +msgid "protocolInformation" +msgstr "protocolInformation" + +msgid "urn:mace:dir:attribute-def:protocolInformation" +msgstr "urn:mace:dir:attribute-def:protocolInformation" + +msgid "urn:oid:2.5.4.48" +msgstr "urn:oid:2.5.4.48" + +msgid "pseudonym" +msgstr "pseudonym" + +msgid "urn:mace:dir:attribute-def:pseudonym" +msgstr "urn:mace:dir:attribute-def:pseudonym" + +msgid "urn:oid:2.5.4.65" +msgstr "urn:oid:2.5.4.65" + +msgid "registeredAddress" +msgstr "registeredAddress" + +msgid "urn:mace:dir:attribute-def:registeredAddress" +msgstr "urn:mace:dir:attribute-def:registeredAddress" + +msgid "urn:oid:2.5.4.26" +msgstr "urn:oid:2.5.4.26" + +msgid "rfc822Mailbox" +msgstr "rfc822Mailbox" + +msgid "urn:mace:dir:attribute-def:rfc822Mailbox" +msgstr "urn:mace:dir:attribute-def:rfc822Mailbox" + +msgid "roleOccupant" +msgstr "roleOccupant" + +msgid "urn:mace:dir:attribute-def:roleOccupant" +msgstr "urn:mace:dir:attribute-def:roleOccupant" + +msgid "urn:oid:2.5.4.33" +msgstr "urn:oid:2.5.4.33" + +msgid "roomNumber" +msgstr "roomNumber" + +msgid "urn:mace:dir:attribute-def:roomNumber" +msgstr "urn:mace:dir:attribute-def:roomNumber" + +msgid "urn:oid:0.9.2342.19200300.100.1.6" +msgstr "urn:oid:0.9.2342.19200300.100.1.6" + +msgid "sOARecord" +msgstr "sOARecord" + +msgid "urn:mace:dir:attribute-def:sOARecord" +msgstr "urn:mace:dir:attribute-def:sOARecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.30" +msgstr "urn:oid:0.9.2342.19200300.100.1.30" + +msgid "schacCountryOfCitizenship" +msgstr "schacCountryOfCitizenship" + +msgid "urn:mace:terena.org:attribute-def:schacCountryOfCitizenship" +msgstr "urn:mace:terena.org:attribute-def:schacCountryOfCitizenship" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.5" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.5" + +msgid "urn:schac:attribute-def:schacCountryOfCitizenship" +msgstr "urn:schac:attribute-def:schacCountryOfCitizenship" + +msgid "schacCountryOfResidence" +msgstr "schacCountryOfResidence" + +msgid "urn:mace:terena.org:attribute-def:schacCountryOfResidence" +msgstr "urn:mace:terena.org:attribute-def:schacCountryOfResidence" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.11" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.11" + +msgid "urn:schac:attribute-def:schacCountryOfResidence" +msgstr "urn:schac:attribute-def:schacCountryOfResidence" + +msgid "schacDateOfBirth" +msgstr "schacDateOfBirth" + +msgid "urn:mace:terena.org:attribute-def:schacDateOfBirth" +msgstr "urn:mace:terena.org:attribute-def:schacDateOfBirth" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.3" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.3" + +msgid "urn:schac:attribute-def:schacDateOfBirth" +msgstr "urn:schac:attribute-def:schacDateOfBirth" + +msgid "schacExpiryDate" +msgstr "schacExpiryDate" + +msgid "urn:mace:terena.org:attribute-def:schacExpiryDate" +msgstr "urn:mace:terena.org:attribute-def:schacExpiryDate" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.17" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.17" + +msgid "urn:schac:attribute-def:schacExpiryDate" +msgstr "urn:schac:attribute-def:schacExpiryDate" + +msgid "schacGender" +msgstr "schacGender" + +msgid "urn:mace:terena.org:attribute-def:schacGender" +msgstr "urn:mace:terena.org:attribute-def:schacGender" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.2" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.2" + +msgid "urn:schac:attribute-def:schacGender" +msgstr "urn:schac:attribute-def:schacGender" + +# English string: Home organization domain name +msgid "schacHomeOrganization" +msgstr "Доменне ім'я головної організації" + +# English string: Home organization domain name +msgid "urn:mace:terena.org:attribute-def:schacHomeOrganization" +msgstr "Доменне ім'я головної організації" + +# English string: Home organization domain name +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.9" +msgstr "Доменне ім'я головної організації" + +# English string: Home organization domain name +msgid "urn:schac:attribute-def:schacHomeOrganization" +msgstr "Доменне ім'я головної організації" + +msgid "schacHomeOrganizationType" +msgstr "schacHomeOrganizationType" + +msgid "urn:mace:terena.org:attribute-def:schacHomeOrganizationType" +msgstr "urn:mace:terena.org:attribute-def:schacHomeOrganizationType" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.10" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.10" + +msgid "urn:schac:attribute-def:schacHomeOrganizationType" +msgstr "urn:schac:attribute-def:schacHomeOrganizationType" + +msgid "schacMotherTongue" +msgstr "schacMotherTongue" + +msgid "urn:mace:terena.org:attribute-def:schacMotherTongue" +msgstr "urn:mace:terena.org:attribute-def:schacMotherTongue" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.1" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.1" + +msgid "urn:schac:attribute-def:schacMotherTongue" +msgstr "urn:schac:attribute-def:schacMotherTongue" + +msgid "schacPersonalPosition" +msgstr "schacPersonalPosition" + +msgid "urn:mace:terena.org:attribute-def:schacPersonalPosition" +msgstr "urn:mace:terena.org:attribute-def:schacPersonalPosition" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.13" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.13" + +msgid "urn:schac:attribute-def:schacPersonalPosition" +msgstr "urn:schac:attribute-def:schacPersonalPosition" + +msgid "schacPersonalTitle" +msgstr "schacPersonalTitle" + +msgid "urn:mace:terena.org:attribute-def:schacPersonalTitle" +msgstr "urn:mace:terena.org:attribute-def:schacPersonalTitle" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.8" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.8" + +msgid "urn:schac:attribute-def:schacPersonalTitle" +msgstr "urn:schac:attribute-def:schacPersonalTitle" + +msgid "schacPersonalUniqueCode" +msgstr "schacPersonalUniqueCode" + +msgid "urn:mace:terena.org:attribute-def:schacPersonalUniqueCode" +msgstr "urn:mace:terena.org:attribute-def:schacPersonalUniqueCode" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.14" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.14" + +msgid "urn:schac:attribute-def:schacPersonalUniqueCode" +msgstr "urn:schac:attribute-def:schacPersonalUniqueCode" + +msgid "schacPersonalUniqueID" +msgstr "schacPersonalUniqueID" + +msgid "urn:mace:terena.org:attribute-def:schacPersonalUniqueID" +msgstr "urn:mace:terena.org:attribute-def:schacPersonalUniqueID" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.15" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.15" + +msgid "urn:schac:attribute-def:schacPersonalUniqueID" +msgstr "urn:schac:attribute-def:schacPersonalUniqueID" + +msgid "schacPlaceOfBirth" +msgstr "schacPlaceOfBirth" + +msgid "urn:mace:terena.org:attribute-def:schacPlaceOfBirth" +msgstr "urn:mace:terena.org:attribute-def:schacPlaceOfBirth" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.4" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.4" + +msgid "urn:schac:attribute-def:schacPlaceOfBirth" +msgstr "urn:schac:attribute-def:schacPlaceOfBirth" + +msgid "schacProjectMembership" +msgstr "schacProjectMembership" + +msgid "urn:mace:terena.org:attribute-def:schacProjectMembership" +msgstr "urn:mace:terena.org:attribute-def:schacProjectMembership" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.20" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.20" + +msgid "urn:schac:attribute-def:schacProjectMembership" +msgstr "urn:schac:attribute-def:schacProjectMembership" + +msgid "schacProjectSpecificRole" +msgstr "schacProjectSpecificRole" + +msgid "urn:mace:terena.org:attribute-def:schacProjectSpecificRole" +msgstr "urn:mace:terena.org:attribute-def:schacProjectSpecificRole" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.21" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.21" + +msgid "urn:schac:attribute-def:schacProjectSpecificRole" +msgstr "urn:schac:attribute-def:schacProjectSpecificRole" + +msgid "schacSn1" +msgstr "schacSn1" + +msgid "urn:mace:terena.org:attribute-def:schacSn1" +msgstr "urn:mace:terena.org:attribute-def:schacSn1" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.6" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.6" + +msgid "urn:schac:attribute-def:schacSn1" +msgstr "urn:schac:attribute-def:schacSn1" + +msgid "schacSn2" +msgstr "schacSn2" + +msgid "urn:mace:terena.org:attribute-def:schacSn2" +msgstr "urn:mace:terena.org:attribute-def:schacSn2" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.7" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.7" + +msgid "urn:schac:attribute-def:schacSn2" +msgstr "urn:schac:attribute-def:schacSn2" + +msgid "schacUserPresenceID" +msgstr "schacUserPresenceID" + +msgid "urn:mace:terena.org:attribute-def:schacUserPresenceID" +msgstr "urn:mace:terena.org:attribute-def:schacUserPresenceID" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.12" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.12" + +msgid "urn:schac:attribute-def:schacUserPresenceID" +msgstr "urn:schac:attribute-def:schacUserPresenceID" + +# English string: Private information elements +msgid "schacUserPrivateAttribute" +msgstr "Елементи особистої інформації" + +# English string: Private information elements +msgid "urn:mace:terena.org:attribute-def:schacUserPrivateAttribute" +msgstr "Елементи особистої інформації" + +# English string: Private information elements +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.18" +msgstr "Елементи особистої інформації" + +# English string: Private information elements +msgid "urn:schac:attribute-def:schacUserPrivateAttribute" +msgstr "Елементи особистої інформації" + +msgid "schacUserStatus" +msgstr "schacUserStatus" + +msgid "urn:mace:terena.org:attribute-def:schacUserStatus" +msgstr "urn:mace:terena.org:attribute-def:schacUserStatus" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.19" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.19" + +msgid "urn:schac:attribute-def:schacUserStatus" +msgstr "urn:schac:attribute-def:schacUserStatus" + +msgid "schacYearOfBirth" +msgstr "schacYearOfBirth" + +msgid "urn:mace:terena.org:attribute-def:schacYearOfBirth" +msgstr "urn:mace:terena.org:attribute-def:schacYearOfBirth" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.0.2.3" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.0.2.3" + +msgid "urn:schac:attribute-def:schacYearOfBirth" +msgstr "urn:schac:attribute-def:schacYearOfBirth" + +msgid "searchGuide" +msgstr "searchGuide" + +msgid "urn:mace:dir:attribute-def:searchGuide" +msgstr "urn:mace:dir:attribute-def:searchGuide" + +msgid "urn:oid:2.5.4.14" +msgstr "urn:oid:2.5.4.14" + +msgid "secretary" +msgstr "secretary" + +msgid "urn:mace:dir:attribute-def:secretary" +msgstr "urn:mace:dir:attribute-def:secretary" + +msgid "urn:oid:0.9.2342.19200300.100.1.21" +msgstr "urn:oid:0.9.2342.19200300.100.1.21" + +msgid "seeAlso" +msgstr "seeAlso" + +msgid "urn:mace:dir:attribute-def:seeAlso" +msgstr "urn:mace:dir:attribute-def:seeAlso" + +msgid "urn:oid:2.5.4.34" +msgstr "urn:oid:2.5.4.34" + +msgid "serialNumber" +msgstr "serialNumber" + +msgid "urn:mace:dir:attribute-def:serialNumber" +msgstr "urn:mace:dir:attribute-def:serialNumber" + +msgid "urn:oid:2.5.4.5" +msgstr "urn:oid:2.5.4.5" + +msgid "singleLevelQuality" +msgstr "singleLevelQuality" + +msgid "urn:mace:dir:attribute-def:singleLevelQuality" +msgstr "urn:mace:dir:attribute-def:singleLevelQuality" + +msgid "urn:oid:0.9.2342.19200300.100.1.50" +msgstr "urn:oid:0.9.2342.19200300.100.1.50" + +msgid "sisSchoolGrade" +msgstr "sisSchoolGrade" + +msgid "urn:mace:dir:attribute-def:sisSchoolGrade" +msgstr "urn:mace:dir:attribute-def:sisSchoolGrade" + +msgid "urn:oid:1.2.752.194.10.2.2" +msgstr "urn:oid:1.2.752.194.10.2.2" + +msgid "sisLegalGuardianFor" +msgstr "sisLegalGuardianFor" + +msgid "urn:mace:dir:attribute-def:sisLegalGuardianFor" +msgstr "urn:mace:dir:attribute-def:sisLegalGuardianFor" + +msgid "urn:oid:1.2.752.194.10.2.1" +msgstr "urn:oid:1.2.752.194.10.2.1" + +# English string: Surname +msgid "sn" +msgstr "Прізвище" + +# English string: Surname +msgid "urn:mace:dir:attribute-def:sn" +msgstr "Прізвище" + +# English string: Surname +msgid "urn:oid:2.5.4.4" +msgstr "Прізвище" + +msgid "st" +msgstr "st" + +msgid "urn:mace:dir:attribute-def:st" +msgstr "urn:mace:dir:attribute-def:st" + +msgid "urn:oid:2.5.4.8" +msgstr "urn:oid:2.5.4.8" + +msgid "stateOrProvinceName" +msgstr "stateOrProvinceName" + +msgid "urn:mace:dir:attribute-def:stateOrProvinceName" +msgstr "urn:mace:dir:attribute-def:stateOrProvinceName" + +# English string: Street +msgid "street" +msgstr "Вулиця" + +# English string: Street +msgid "urn:mace:dir:attribute-def:street" +msgstr "Вулиця" + +# English string: Street +msgid "urn:oid:2.5.4.9" +msgstr "Вулиця" + +msgid "streetAddress" +msgstr "streetAddress" + +msgid "urn:mace:dir:attribute-def:streetAddress" +msgstr "urn:mace:dir:attribute-def:streetAddress" + +# English string: Pseudonymous ID at home organization +msgid "subject-id" +msgstr "subject-id" + +# English string: Pseudonymous ID at home organization +msgid "urn:oasis:names:tc:SAML:attribute:subject-id" +msgstr "urn:oasis:names:tc:SAML:attribute:subject-id" + +msgid "subtreeMaximumQuality" +msgstr "subtreeMaximumQuality" + +msgid "urn:mace:dir:attribute-def:subtreeMaximumQuality" +msgstr "urn:mace:dir:attribute-def:subtreeMaximumQuality" + +msgid "urn:oid:0.9.2342.19200300.100.1.52" +msgstr "urn:oid:0.9.2342.19200300.100.1.52" + +msgid "subtreeMinimumQuality" +msgstr "subtreeMinimumQuality" + +msgid "urn:mace:dir:attribute-def:subtreeMinimumQuality" +msgstr "urn:mace:dir:attribute-def:subtreeMinimumQuality" + +msgid "urn:oid:0.9.2342.19200300.100.1.51" +msgstr "urn:oid:0.9.2342.19200300.100.1.51" + +msgid "supportedAlgorithms" +msgstr "supportedAlgorithms" + +msgid "urn:mace:dir:attribute-def:supportedAlgorithms" +msgstr "urn:mace:dir:attribute-def:supportedAlgorithms" + +msgid "urn:oid:2.5.4.52" +msgstr "urn:oid:2.5.4.52" + +msgid "supportedApplicationContext" +msgstr "supportedApplicationContext" + +msgid "urn:mace:dir:attribute-def:supportedApplicationContext" +msgstr "urn:mace:dir:attribute-def:supportedApplicationContext" + +msgid "urn:oid:2.5.4.30" +msgstr "urn:oid:2.5.4.30" + +msgid "surname" +msgstr "surname" + +msgid "urn:mace:dir:attribute-def:surname" +msgstr "urn:mace:dir:attribute-def:surname" + +# English string: Telephone number +msgid "telephoneNumber" +msgstr "Номер телефону" + +# English string: Telephone number +msgid "urn:mace:dir:attribute-def:telephoneNumber" +msgstr "Номер телефону" + +# English string: Telephone number +msgid "urn:oid:2.5.4.20" +msgstr "Номер телефону" + +msgid "teletexTerminalIdentifier" +msgstr "teletexTerminalIdentifier" + +msgid "urn:mace:dir:attribute-def:teletexTerminalIdentifier" +msgstr "urn:mace:dir:attribute-def:teletexTerminalIdentifier" + +msgid "urn:oid:2.5.4.22" +msgstr "urn:oid:2.5.4.22" + +msgid "telexNumber" +msgstr "telexNumber" + +msgid "urn:mace:dir:attribute-def:telexNumber" +msgstr "urn:mace:dir:attribute-def:telexNumber" + +msgid "urn:oid:2.5.4.21" +msgstr "urn:oid:2.5.4.21" + +msgid "textEncodedORAddress" +msgstr "textEncodedORAddress" + +msgid "urn:mace:dir:attribute-def:textEncodedORAddress" +msgstr "urn:mace:dir:attribute-def:textEncodedORAddress" + +msgid "urn:oid:0.9.2342.19200300.100.1.2" +msgstr "urn:oid:0.9.2342.19200300.100.1.2" + +# English string: Title +msgid "title" +msgstr "Заголовок" + +# English string: Title +msgid "urn:mace:dir:attribute-def:title" +msgstr "Заголовок" + +# English string: Title +msgid "urn:oid:2.5.4.12" +msgstr "Заголовок" + +# English string: User ID +msgid "uid" +msgstr "ID користувача" + +# English string: User ID +msgid "urn:mace:dir:attribute-def:uid" +msgstr "ID користувача" + +# English string: User ID +msgid "urn:oid:0.9.2342.19200300.100.1.1" +msgstr "ID користувача" + +msgid "uniqueIdentifier" +msgstr "uniqueIdentifier" + +msgid "urn:mace:dir:attribute-def:uniqueIdentifier" +msgstr "urn:mace:dir:attribute-def:uniqueIdentifier" + +msgid "urn:oid:0.9.2342.19200300.100.1.44" +msgstr "urn:oid:0.9.2342.19200300.100.1.44" + +msgid "uniqueMember" +msgstr "uniqueMember" + +msgid "urn:mace:dir:attribute-def:uniqueMember" +msgstr "urn:mace:dir:attribute-def:uniqueMember" + +msgid "urn:oid:2.5.4.50" +msgstr "urn:oid:2.5.4.50" + +msgid "userCertificate" +msgstr "userCertificate" + +msgid "urn:mace:dir:attribute-def:userCertificate" +msgstr "urn:mace:dir:attribute-def:userCertificate" + +msgid "urn:oid:2.5.4.36" +msgstr "urn:oid:2.5.4.36" + +msgid "userClass" +msgstr "userClass" + +msgid "urn:mace:dir:attribute-def:userClass" +msgstr "urn:mace:dir:attribute-def:userClass" + +msgid "urn:oid:0.9.2342.19200300.100.1.8" +msgstr "urn:oid:0.9.2342.19200300.100.1.8" + +msgid "userPKCS12" +msgstr "userPKCS12" + +msgid "urn:mace:dir:attribute-def:userPKCS12" +msgstr "urn:mace:dir:attribute-def:userPKCS12" + +msgid "urn:oid:2.16.840.1.113730.3.1.216" +msgstr "urn:oid:2.16.840.1.113730.3.1.216" + +# English string: User's password hash +msgid "userPassword" +msgstr "Хеш пароля користувача" + +# English string: User's password hash +msgid "urn:mace:dir:attribute-def:userPassword" +msgstr "Хеш пароля користувача" + +# English string: User's password hash +msgid "urn:oid:2.5.4.35" +msgstr "Хеш пароля користувача" + +msgid "userSMIMECertificate" +msgstr "userSMIMECertificate" + +msgid "urn:mace:dir:attribute-def:userSMIMECertificate" +msgstr "urn:mace:dir:attribute-def:userSMIMECertificate" + +msgid "urn:oid:2.16.840.1.113730.3.1.40" +msgstr "urn:oid:2.16.840.1.113730.3.1.40" + +msgid "userid" +msgstr "userid" + +msgid "urn:mace:dir:attribute-def:userid" +msgstr "urn:mace:dir:attribute-def:userid" + +msgid "x121Address" +msgstr "x121Address" + +msgid "urn:mace:dir:attribute-def:x121Address" +msgstr "urn:mace:dir:attribute-def:x121Address" + +msgid "urn:oid:2.5.4.24" +msgstr "urn:oid:2.5.4.24" + +msgid "x500UniqueIdentifier" +msgstr "x500UniqueIdentifier" + +msgid "urn:mace:dir:attribute-def:x500UniqueIdentifier" +msgstr "urn:mace:dir:attribute-def:x500UniqueIdentifier" + +msgid "urn:oid:2.5.4.45" +msgstr "urn:oid:2.5.4.45" + +# English string: Common name +msgid "facebook_cn" +msgstr "Повне ім'я" + +msgid "http://axschema.org/contact/country/home" +msgstr "http://axschema.org/contact/country/home" + +msgid "openid.sreg.country" +msgstr "openid.sreg.country" + +msgid "facebook.about_me" +msgstr "facebook.about_me" + +msgid "linkedin.summary" +msgstr "linkedin.summary" + +msgid "twitter.description" +msgstr "twitter.description" + +# English string: Display name +msgid "facebook.name" +msgstr "Відображуване ім'я" + +# English string: Display name +msgid "http://axschema.org/namePerson/friendly" +msgstr "Відображуване ім'я" + +# English string: Display name +msgid "openid.sreg.nickname" +msgstr "Відображуване ім'я" + +# English string: Display name +msgid "http://axschema.org/namePerson" +msgstr "Відображуване ім'я" + +# English string: Display name +msgid "openid.sreg.fullname" +msgstr "Відображуване ім'я" + +# English string: Display name +msgid "twitter.name" +msgstr "Відображуване ім'я" + +# English string: Display name +msgid "windowslive.displayName" +msgstr "Відображуване ім'я" + +# English string: Person's principal name at home organization +msgid "facebook_user" +msgstr "Ім'я керівника головної організації" + +# English string: Person's principal name at home organization +msgid "linkedin_user" +msgstr "Ім'я керівника головної організації" + +# English string: Person's principal name at home organization +msgid "twitter_screen_n_realm" +msgstr "Ім'я керівника головної організації" + +# English string: Person's principal name at home organization +msgid "windowslive_user" +msgstr "Ім'я керівника головної організації" + +# English string: Person's principal name at home organization +msgid "windowslive.userPrincipalName" +msgstr "Ім'я керівника головної організації" + +# English string: Persistent pseudonymous ID +msgid "facebook_targetedID" +msgstr "ID постійного псевдоніма" + +# English string: Persistent pseudonymous ID +msgid "linkedin_targetedID" +msgstr "IID постійного псевдоніма" + +# English string: Persistent pseudonymous ID +msgid "twitter_targetedID" +msgstr "ID постійного псевдоніма" + +# English string: Persistent pseudonymous ID +msgid "windowslive_targetedID" +msgstr "ID постійного псевдоніма" + +# English string: Fax number +msgid "http://axschema.org/contact/phone/fax" +msgstr "Номер факсу" + +# English string: Given name +msgid "facebook.first_name" +msgstr "Ім'я" + +# English string: Given name +msgid "linkedin.firstName" +msgstr "Ім'я" + +# English string: Given name +msgid "http://axschema.org/namePerson/first" +msgstr "Ім'я" + +# English string: Given name +msgid "windowslive.FirstName" +msgstr "Ім'я" + +# English string: Given name +msgid "windowslive.givenName" +msgstr "Ім'я" + +# English string: Home telephone +msgid "http://axschema.org/contact/phone/home" +msgstr "Домашній телефон" + +# English string: Locality +msgid "windowslive.Location" +msgstr "Район" + +# English string: Labeled URI +msgid "facebook.profile_url" +msgstr "Маркований URI (LabeledURI)" + +# English string: Labeled URI +msgid "twitter.url" +msgstr "Маркований URI (LabeledURI)" + +# English string: Mail +msgid "facebook.email" +msgstr "Пошта" + +# English string: Mail +msgid "http://axschema.org/contact/email" +msgstr "Пошта" + +# English string: Mail +msgid "openid.sreg.email" +msgstr "Пошта" + +# English string: Mail +msgid "windowslive_mail" +msgstr "Пошта" + +# English string: Mail +msgid "windowslive.mail" +msgstr "Пошта" + +# English string: Mobile +msgid "http://axschema.org/contact/phone/cell" +msgstr "Мобільний" + +# English string: Organization name +msgid "http://axschema.org/company/name" +msgstr "Назва організації" + +msgid "http://axschema.org/namePerson/prefix" +msgstr "http://axschema.org/namePerson/prefix" + +# English string: Postal code +msgid "http://axschema.org/contact/postalCode/home" +msgstr "Поштовий індекс" + +# English string: Postal code +msgid "openid.sreg.postcode" +msgstr "Поштовий індекс" + +# English string: Preferred language +msgid "facebook.locale" +msgstr "Бажана мова" + +# English string: Preferred language +msgid "http://axschema.org/pref/language" +msgstr "Бажана мова" + +# English string: Preferred language +msgid "openid.sreg.language" +msgstr "Бажана мова" + +# English string: Preferred language +msgid "twitter.lang" +msgstr "Бажана мова" + +# English string: Preferred language +msgid "windowslive.preferredLanguage" +msgstr "Бажана мова" + +# English string: Surname +msgid "facebook.last_name" +msgstr "Прізвище" + +# English string: Surname +msgid "linkedin.lastName" +msgstr "Прізвище" + +# English string: Surname +msgid "http://axschema.org/namePerson/last" +msgstr "Прізвище" + +# English string: Surname +msgid "windowslive.LastName" +msgstr "Прізвище" + +# English string: Surname +msgid "windowslive.surname" +msgstr "Прізвище" + +# English string: Telephone number +msgid "http://axschema.org/contact/phone/default" +msgstr "Номер телефону" + +# English string: Telephone number +msgid "http://axschema.org/contact/phone/business" +msgstr "Номер телефону" + +# English string: Title +msgid "linkedin.headline" +msgstr "Заголовок" + +# English string: Title +msgid "http://axschema.org/company/title" +msgstr "Заголовок" + +# English string: User ID +msgid "facebook.username" +msgstr "ID користувача" + +# English string: User ID +msgid "linkedin.id" +msgstr "ID користувача" + +# English string: User ID +msgid "twitter.screen_name" +msgstr "ID користувача" + +# English string: User ID +msgid "windowslive_uid" +msgstr "ID користувача" + +# English string: User ID +msgid "windowslive.id" +msgstr "ID користувача" diff --git a/locales/uk/LC_MESSAGES/messages.po b/locales/uk/LC_MESSAGES/messages.po new file mode 100644 index 0000000000..7443c67750 --- /dev/null +++ b/locales/uk/LC_MESSAGES/messages.po @@ -0,0 +1,837 @@ +msgid "" +msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" +"X-Domain: messages\n" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "%MESSAGE%" + +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Служба запросила автентифікацію. Будь ласка, введіть ім’я користувача та пароль у форму нижче." + +msgid "ADFS IdP Metadata" +msgstr "Метадані постачальника ідентифікації IdP ADFS" + +msgid "ADFS Identity Provider (Hosted)" +msgstr "Постачальник ідентифікації ADFS (хостинговий)" + +msgid "ADFS SP Metadata" +msgstr "Метадані постачальника послуг (SP) ADFS" + +msgid "ADFS Service Provider (Remote)" +msgstr "Постачальник сервісів ADFS (віддалений)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "Пароль адміністратора не встановлено у хешованому вигляді" + +msgid "Affiliation" +msgstr "Членство" + +msgid "Affiliation at home organization" +msgstr "Належність до домашньої організації" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Виникла помилка при формуванні SAML-запиту." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Сталася помилка під час обробки запиту на вихід із системи." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Виникла необроблена виняткова ситуація." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Оскільки ви перебуваєте в режимі налагодження, ви можете бачити вміст повідомлення, яке надсилаєте:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Аутентифікацію перервано" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Помилка автентифікації в джерелі %AUTHSOURCE%. Причина: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Помилка автентифікації: сертифікат, надісланий вашим браузером, є недійсним або не може бути прочитаний" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Помилка автентифікації: сертифікат, надісланий вашим браузером, невідомий" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Помилка автентифікації: ваш браузер не надіслав жодного сертифіката" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 +msgid "Authentication source error" +msgstr "Помилка джерела автентифікаці" + +msgid "Authentication status" +msgstr "Статус автентифікації" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 +msgid "Bad request received" +msgstr "Отримано некоректний запит" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Некоректний запит до служби виявлення" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 +msgid "CAS Error" +msgstr "Помилка CAS" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "Не вдалося отримати дані сеансу" + +msgid "Certificates" +msgstr "Сертифікати" + +msgid "Change your home organization" +msgstr "Змініть вашу домашню організацію" + +msgid "Choose home organization" +msgstr "Виберіть домашню організацію" + +msgid "Choose your home organization" +msgstr "Виберить вашу домашню організацію" + +msgid "Common name" +msgstr "Звичайне ім’я" + +msgid "Completed" +msgstr "Виконано" + +msgid "Configuration check" +msgstr "Перевірка конфігурації" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 +msgid "Configuration error" +msgstr "Помилка конфігурації" + +msgid "Contact information:" +msgstr "Контактна інформація:" + +msgid "Converted metadata" +msgstr "Перетворені метадані" + +msgid "Copy to clipboard" +msgstr "Скопіювати до буфера обміну" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 +msgid "Could not create authentication response" +msgstr "Не вдалося створити відповідь автентифікації" + +msgid "Date of birth" +msgstr "Дата народження" + +msgid "Debug information" +msgstr "Налагоджувальна інформація" + +msgid "Debug information to be used by your support staff" +msgstr "Налагоджувальна інформація для використання вашою службою підтримки" + +msgid "Display name" +msgstr "Відображуване ім’я" + +msgid "Distinguished name (DN) of person's home organization" +msgstr "Унікальне ім’я (DN) домашньої організації особи" + +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Визначене ім’я (DN) головного організаційного підрозділу особи" + +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Визначене ім’я (DN) домашнього структурного підрозділу особи" + +msgid "Do you want to logout from all the services above?" +msgstr "Хочете завершити сеанс у всіх вищезгаданих сервісах?" + +msgid "Domain component (DC)" +msgstr "Компонент домену (DC)" + +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Завантажте сертифікати X509 у форматі файлів з кодуванням PEM." + +msgid "E-mail address:" +msgstr "Адреса електронної пошти:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Користувача з вказаним іменем не знайдено, або введений пароль неправильний. Перевірте ім’я користувача та спробуйте ще раз." + +msgid "Enter your username and password" +msgstr "Введіть ім’я користувача та пароль" + +msgid "Entitlement regarding the service" +msgstr "Право на користування сервісом" + +msgid "Error" +msgstr "Помилка" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Помилка під час створення запиту" + +msgid "Error in this metadata entry" +msgstr "Помилка в цьому записі метаданих" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Помилка завантаження метаданих" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Error processing request from Service Provider" +msgstr "Помилка обробки запиту від постачальника послуг" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Помилка обробки відповіді від постачальника ідентифікації" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Помилка обробки запиту на вихід із системи" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 +msgid "Error received from Identity Provider" +msgstr "Отримано помилку від постачальника ідентифікації" + +msgid "Error report sent" +msgstr "Звіт про помилку надіслано" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Помилка під час зв'язку з сервером CAS." + +msgid "Explain what you did when this error occurred..." +msgstr "Поясніть, що ви зробили, коли сталася ця помилка..." + +msgid "Fax number" +msgstr "Номер факса" + +msgid "Format" +msgstr "Формат" + +msgid "Given name" +msgstr "Ім'я" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Повернутися на сторінку встановлення SimpleSAMLphp" + +msgid "Go back to the file list" +msgstr "Повернутися до списку файлів" + +msgid "Group membership" +msgstr "Членство в групі" + +msgid "Hello, Untranslated World!" +msgstr "Привіт, Untranslated World!" + +msgid "Help desk homepage" +msgstr "Домашня сторінка служби підтримки" + +msgid "Help! I don't remember my password." +msgstr "Допоможіть! Я не пам’ятаю свій пароль." + +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Ось метадані, які SimpleSAMLphp згенерував для вас. Ви можете надіслати цей документ метаданих довіреним партнерам для налаштування довіреної федерації." + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Привіт! Це сторінка стану SimpleSAMLphp. Тут ви можете побачити, чи завершено вашу сесію, скільки часу залишилося до її завершення, а також усі атрибути, пов’язані з вашою сесією." + +msgid "Home organization domain name" +msgstr "Доменне ім’я домашньої організації" + +msgid "Home postal address" +msgstr "Домашня поштова адреса" + +msgid "Home telephone" +msgstr "Домашній телефон" + +msgid "How to get help" +msgstr "Як отримати допомогу" + +msgid "Identity assurance profile" +msgstr "Профіль гарантії автентичності особи" + +msgid "Identity number assigned by public authorities" +msgstr "Ідентифікаційний номер, присвоєний державними органами" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Якщо ви повідомляєте про цю помилку, будь ласка, також вкажіть цей номер відстеження, який дозволяє знайти вашу сесію в журналах, доступних системному адміністратору:" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "У форматі XML метаданих SAML 2.0:" + +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "У форматі плоского файлу SimpleSAMLphp — використовуйте це, якщо на іншій стороні використовується сутність SimpleSAMLphp:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Неправильне ім’я користувача або пароль" + +msgid "Incorrect username or password." +msgstr "Неправильне ім’я користувача або пароль." + +msgid "Information about your current session" +msgstr "Інформація про вашу поточну сесію" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Недійсний сертифікат" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" + +msgid "JPEG Photo" +msgstr "Фотографія в форматі JPEG" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Помилка LDAP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP — це база даних користувачів, і коли ви намагаєтесь увійти в систему, нам потрібно звернутися до бази даних LDAP. Цього разу під час спроби виникла помилка." + +msgid "Labeled URI" +msgstr "Маркований URI (LabeledURI)" + +msgid "Language" +msgstr "Мова" + +msgid "Legal name" +msgstr "Офіційна назва" + +msgid "Local identity number" +msgstr "Місцевий ідентифікаційний номер" + +msgid "Locality" +msgstr "Місцевість" + +msgid "Logged out" +msgstr "Вихід виконано" + +msgid "Logging out of the following services:" +msgstr "Вихід із таких сервісів:" + +msgid "Logging out..." +msgstr "Вихід із системи..." + +msgid "Login" +msgstr "Вхід" + +msgid "Login at" +msgstr "Вхід на" + +msgid "Logout" +msgstr "Вийти" + +msgid "Logout failed" +msgstr "Не вдалося вийти із системи" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Інформацію про вихід втрачено" + +msgid "Mail" +msgstr "Пошта" + +msgid "Manager" +msgstr "Управляючий" + +msgid "Message" +msgstr "Повідомлення" + +msgid "Metadata" +msgstr "Метадані" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Метадані не знайдені" + +msgid "Metadata overview" +msgstr "Загальна інформація про метадані" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "Цей метод не підтримується" + +msgid "Mobile" +msgstr "Мобільний" + +msgid "Next" +msgstr "Далі" + +msgid "Nickname" +msgstr "Псевдонім" + +msgid "No" +msgstr "Ні" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Відсутній параметр RelayState" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Не надано повідомлення SAML" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "Запит SAML не надано" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Відсутня відповідь SAML" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Доступ заборонено" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Сертифікат відсутній" + +msgid "No errors found." +msgstr "Помилок не виявлено." + +msgid "No identity providers found. Cannot continue." +msgstr "Постачальників ідентифікації не знайдено. Неможливо продовжити." + +msgid "No, cancel" +msgstr "Ні, скасувати" + +msgid "No, only %SP%" +msgstr "Ні, тільки для служби %SP%" + +msgid "Notices" +msgstr "Повідомлення" + +msgid "ORCID researcher identifiers" +msgstr "Унікальні ідентифікатори ORCID для дослідників" + +msgid "On hold" +msgstr "У режимі очікування" + +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Одна або кілька служб, у які ви увійшли, не підтримують вихід із системи. Щоб переконатися, що всі ваші сеанси завершено, рекомендується закрити ваш браузер." + +msgid "Optional fields" +msgstr "Необов’язкові поля" + +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "За бажанням введіть свою електронну адресу, щоб адміністратори могли зв’язатися з вами для уточнення деталей щодо вашої проблеми:" + +msgid "Options missing from config file" +msgstr "Параметри відсутні у файлі конфігурації" + +msgid "Organization" +msgstr "Організація" + +msgid "Organization name" +msgstr "Назва організації" + +msgid "Organization's legal name" +msgstr "Юридична назва організації" + +msgid "Organizational homepage" +msgstr "Домашня сторінка організації" + +msgid "Organizational number" +msgstr "Номер організації" + +msgid "Organizational unit" +msgstr "Підрозділ організації" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Сторінку не знайдено" + +msgid "Parse" +msgstr "Аналіз" + +msgid "Password" +msgstr "Пароль" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Пароль не встановлено" + +msgid "Persistent pseudonymous ID" +msgstr "Cтійкий псевдонімний ідентифікатор ID" + +msgid "Person's principal name at home organization" +msgstr "Ім'я керівника головної організації" + +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Будь ласка, виберіть постачальника ідентифікації, через якого ви хочете пройти автентифікацію:" + +msgid "Post office box" +msgstr "Абонентська скринька" + +msgid "Postal address" +msgstr "Поштова адреса" + +msgid "Postal code" +msgstr "Поштовий індекс" + +msgid "Preferred language" +msgstr "Бажана мова" + +msgid "Primary affiliation" +msgstr "Основна приналежність" + +msgid "Private information elements" +msgstr "Елементи особистої інформації" + +msgid "Remember" +msgstr "Запам'ятати" + +msgid "Remember me" +msgstr "Запам'ятати мене" + +msgid "Remember my choice" +msgstr "Запам’ятати мій вибір" + +msgid "Remember my username" +msgstr "Запам’ятати моє ім'я користувача" + +msgid "Report errors" +msgstr "Повідомлення про помилки" + +msgid "Required fields" +msgstr "Обов'язкові поля" + +msgid "Return to service" +msgstr "Повернутися до сервісу" + +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "Постачальник ідентифікації SAML 2.0 (хостинговий)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "Постачальник ідентифікації SAML 2.0 (віддалений)" + +msgid "SAML 2.0 SP Demo Example" +msgstr "Демонстраційний приклад SAML 2.0 SP" + +msgid "SAML 2.0 SP Metadata" +msgstr "Метадані постачальника послуг SAML 2.0" + +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "Постачальник сервісів SAML 2.0 (хостинговий)" + +msgid "SAML Subject" +msgstr "Об'єкт SAML" + +msgid "Select" +msgstr "Вибрати" + +msgid "Select configuration file to check:" +msgstr "Виберіть файл конфігурації для перевірки:" + +msgid "Select your identity provider" +msgstr "Виберіть свого постачальника ідентифікації" + +msgid "Send e-mail to help desk" +msgstr "Надіслати електронного листа до служби підтримки" + +msgid "Send error report" +msgstr "Надіслати звіт про помилку" + +msgid "Sending message" +msgstr "Надіслати повідомлення" + +msgid "Service Provider" +msgstr "Постачальник послуг" + +msgid "Session size: %SIZE%" +msgstr "Розмір сесії: %SIZE%" + +msgid "Shib 1.3 IdP Metadata" +msgstr "Метадані IdP Shib 1.3" + +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Постачальник ідентифікації Shib 1.3 (хостинговий)" + +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Постачальник ідентифікації Shib 1.3 (віддалений)" + +msgid "Shib 1.3 SP Metadata" +msgstr "Метаданные сервис провайдера Shib 1.3 SP" + +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Постачальник сервісів Shib 1.3 (хостинговий)" + +msgid "Shib 1.3 Service Provider (Remote)" +msgstr "Постачальник сервісів Shib 1.3 (віддалений)" + +msgid "Shibboleth demo" +msgstr "Тестова версія Shibboleth" + +msgid "SimpleSAMLphp Diagnostics" +msgstr "Діагностика SimpleSAMLphp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Здається, SimpleSAMLphp неправильно налаштований." + +msgid "SimpleSAMLphp error" +msgstr "Помилка SimpleSAMLphp" + +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "Оскільки ваш браузер не підтримує JavaScript, вам потрібно натиснути кнопку нижче, щоб продовжити." + +msgid "Some error occurred" +msgstr "Виникла помилка" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Втрачено дані про поточний стан" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Інформацію про стан втрачено, і немає способу перезапустити запит" + +msgid "Street" +msgstr "Вулиця" + +msgid "Submit message" +msgstr "Надіслати повідомлення" + +msgid "Superfluous options in config file" +msgstr "Зайві параметри у конфігураційному файлі" + +msgid "Surname" +msgstr "Прізвище" + +msgid "Telephone number" +msgstr "Номер телефону" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Постачальник ідентифікації відповів з помилкою. (Код статусу в SAML-відповіді не є успішним)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Автентифікацію було перервано користувачем" + +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Наведена нижче інформація може зацікавити адміністратора або службу підтримки:" + +msgid "The error report has been sent to the administrators." +msgstr "Звіт про помилку надіслано адміністраторам." + +msgid "The following fields was not recognized" +msgstr "Наступні поля не були розпізнані" + +msgid "The following optional fields was not found" +msgstr "Наступні необов’язкові поля не знайдено" + +msgid "The following required fields was not found" +msgstr "Наступні обов’язкові поля не знайдено" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Задану сторінку не знайдено. URL-адреса: %URL%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Задану сторінку не знайдено. Причина: %REASON% URL-адреса: %URL%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Інформація про поточну операцію виходу була втрачена. Вам слід повернутися до сервісу, з якого ви намагалися вийти, і спробувати вийти ще раз. Ця помилка може бути спричинена закінченням терміну дії інформації про вихід. Інформація про вихід зберігається протягом обмеженого періоду часу - зазвичай кілька годин. Це довше, ніж має тривати будь-яка звичайна операція виходу з системи, тому ця помилка може вказувати на якусь іншу помилку у конфігурації. Якщо проблема не зникає, зверніться до свого постачальника послуг." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Ініціатор цього запиту не надав параметр RelayState, який вказує, куди слід перейти далі." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Параметри, надіслані до служби виявлення, не відповідають технічним специфікаціям." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "Пароль у конфігурації (auth.adminpassword) не є хешованим значенням. Повні інструкції щодо виправлення цієї помилки наведені на сторінці https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Пароль у конфігурації (auth.adminpassword) не змінено зі значення за замовчуванням. Будь ласка, відредагуйте конфігураційний файл." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Сталася помилка у запиті до цієї сторінки. Причина: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "У вашій інсталяції SimpleSAMLphp є деякі помилки у конфігурації. Якщо ви є адміністратором цього сервісу, переконайтеся, що конфігурація метаданих налаштована правильно." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Цей постачальник Ідентифікації отримав запит на автентифікацію від Постачальника послуг, але під час обробки запиту сталася помилка." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Цю кінцеву точку не увімкнено. Перевірте опції увімкнення у вашій конфігурації SimpleSAMLphp." + +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Ця помилка, ймовірно, пов'язана з неочікуваною поведінкою або неправильною конфігурацією SimpleSAMLphp. Зверніться до адміністратора цієї служби входу і надішліть йому повідомлення про помилку, що наведене вище." + +msgid "Title" +msgstr "Заголовок" + +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Щоб переглянути деталі SAML-об'єкта, натисніть на заголовок SAML-об'єкта." + +msgid "Tracking number" +msgstr "Номер для відстеження" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Неможливо знайти метадані для %ENTITYID%" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Не вдалося вийти з одного або кількох сервісів. Щоб переконатися, що всі ваші сеанси завершено, рекомендується закрити веббраузер." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Необроблений виняток" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Невідомий сертифікат" + +msgid "User ID" +msgstr "ID користувача" + +msgid "User's password hash" +msgstr "Хеш пароля користувача" + +msgid "Username" +msgstr "Ім'я користувача" + +msgid "WS-Fed SP Demo Example" +msgstr "Демонстраційний приклад WS-Fed SP" + +msgid "WS-Federation Identity Provider (Remote)" +msgstr "Постачальник ідентифікації WS-Federation (віддалений)" + +msgid "WS-Federation Service Provider (Hosted)" +msgstr "Постачальник послуг WS-Federation (хостинговий)" + +msgid "Warning" +msgstr "Увага" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Відповідь, надіслана постачальником ідентифікації, не була прийнята." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Виникла помилка під час формування відповіді автентифікації цим постачальником ідентитифікації." + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Без вашого імені користувача та пароля ви не зможете пройти автентифікацію для доступу до сервісу. Можливо, хтось зможе вам допомогти. Зверніться до служби підтримки у вашій організації!" + +msgid "World" +msgstr "Світ" + +msgid "XML metadata" +msgstr "XML метадані" + +msgid "Yes, all services" +msgstr "Так, для всіх сервісів" + +msgid "Yes, continue" +msgstr "Так, продовжити" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ви звернулися до інтерфейсу служби розв’язання артефактів, але не надали повідомлення SAML ArtifactResolve. Зверніть увагу, що ця кінцева точка не призначена для прямого доступу." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ви звернулися до інтерфейсу служби отримання тверджень (Assertion Consumer Service), але не надали автентифікаційну відповідь SAML. Зверніть увагу, що ця кінцева точка не призначена для прямого доступу." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ви звернулися до інтерфейсу служби єдиного входу (Single Sign-On), але не надали автентифікаційний запит SAML. Зверніть увагу, що ця кінцева точка не призначена для прямого доступу." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ви звернулися до інтерфейсу служби єдиного виходу (SingleLogoutService), але не надали запит на вихід або відповідь SAML. Зверніть увагу, що ця кінцева точка не призначена для прямого доступу." + +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Ви збираєтеся надіслати повідомлення. Натисніть кнопку Надіслати повідомлення, щоб продовжити." + +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Ви збираєтесь надіслати повідомлення. Натисніть посилання Надіслати повідомлення, щоб продовжити." + +msgid "You are also logged in on these services:" +msgstr "Ви також авторизовані в наступних сервісах:" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Ви зараз отримали доступ до тестової системи.Ця система автентифікації призначена лише для тестування та перевірки попередньої версії. Якщо хтось надіслав вам посилання, яке привело вас сюди, і ви не є тестувальником, ймовірно, це неправильне посилання, і вам < не слід бути тут." + +msgid "You are now successfully logged out from %SP%." +msgstr "Ви успішно вийшли з системи %SP%." + +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Ви можете отримати XML-метадані за спеціальним посиланням URL:" + +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Ви можете вимкнути режим налагодження у глобальному конфігураційному файлі SimpleSAMLphp -config/config.php." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Ви не надали дійсний сертифікат." + +msgid "You have been logged out." +msgstr "Ви вийшли з системи." + +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Ви обрали %HOMEORG% як вашу домашню організацію. Якщо це помилка, ви можете вибрати іншу." + +msgid "You have previously chosen to authenticate at" +msgstr "Раніше ви обрали автентифікацію через" + +msgid "You have successfully logged out from all services listed above." +msgstr "Ви успішно вийшли з усіх перелічених вище сервісів." + +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Ви надіслали запит на сторінку входу, але з якоїсь причини пароль не був переданий. Спробуйте ще раз, будь ласка." + +msgid "Your attributes" +msgstr "Ваші атрибути" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "Наразі неможливо отримати дані вашої сесії через технічні неполадки. Спробуйте ще раз за кілька хвилин." + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Ваша сесія буде дійсною ще протягом %remaining% секунд." + +msgid "[Preferred choice]" +msgstr "[Бажаний вибір]" + +msgid "not set" +msgstr "не встановлено" diff --git a/locales/vi/LC_MESSAGES/attributes.po b/locales/vi/LC_MESSAGES/attributes.po new file mode 100644 index 0000000000..eae929aaa0 --- /dev/null +++ b/locales/vi/LC_MESSAGES/attributes.po @@ -0,0 +1,2058 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "aRecord" +msgstr "aRecord" + +msgid "urn:mace:dir:attribute-def:aRecord" +msgstr "urn:mace:dir:attribute-def:aRecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.26" +msgstr "urn:oid:0.9.2342.19200300.100.1.26" + +msgid "aliasedEntryName" +msgstr "aliasedEntryName" + +msgid "urn:mace:dir:attribute-def:aliasedEntryName" +msgstr "urn:mace:dir:attribute-def:aliasedEntryName" + +msgid "urn:oid:2.5.4.1" +msgstr "urn:oid:2.5.4.1" + +msgid "aliasedObjectName" +msgstr "aliasedObjectName" + +msgid "urn:mace:dir:attribute-def:aliasedObjectName" +msgstr "urn:mace:dir:attribute-def:aliasedObjectName" + +msgid "associatedDomain" +msgstr "associatedDomain" + +msgid "urn:mace:dir:attribute-def:associatedDomain" +msgstr "urn:mace:dir:attribute-def:associatedDomain" + +msgid "urn:oid:0.9.2342.19200300.100.1.37" +msgstr "urn:oid:0.9.2342.19200300.100.1.37" + +msgid "associatedName" +msgstr "associatedName" + +msgid "urn:mace:dir:attribute-def:associatedName" +msgstr "urn:mace:dir:attribute-def:associatedName" + +msgid "urn:oid:0.9.2342.19200300.100.1.38" +msgstr "urn:oid:0.9.2342.19200300.100.1.38" + +msgid "audio" +msgstr "audio" + +msgid "urn:mace:dir:attribute-def:audio" +msgstr "urn:mace:dir:attribute-def:audio" + +msgid "urn:oid:0.9.2342.19200300.100.1.55" +msgstr "urn:oid:0.9.2342.19200300.100.1.55" + +msgid "authorityRevocationList" +msgstr "authorityRevocationList" + +msgid "urn:mace:dir:attribute-def:authorityRevocationList" +msgstr "urn:mace:dir:attribute-def:authorityRevocationList" + +msgid "urn:oid:2.5.4.38" +msgstr "urn:oid:2.5.4.38" + +msgid "buildingName" +msgstr "buildingName" + +msgid "urn:mace:dir:attribute-def:buildingName" +msgstr "urn:mace:dir:attribute-def:buildingName" + +msgid "urn:oid:0.9.2342.19200300.100.1.48" +msgstr "urn:oid:0.9.2342.19200300.100.1.48" + +msgid "businessCategory" +msgstr "businessCategory" + +msgid "urn:mace:dir:attribute-def:businessCategory" +msgstr "urn:mace:dir:attribute-def:businessCategory" + +msgid "urn:oid:2.5.4.15" +msgstr "urn:oid:2.5.4.15" + +msgid "c" +msgstr "c" + +msgid "urn:mace:dir:attribute-def:c" +msgstr "urn:mace:dir:attribute-def:c" + +msgid "urn:oid:2.5.4.6" +msgstr "urn:oid:2.5.4.6" + +msgid "cACertificate" +msgstr "cACertificate" + +msgid "urn:mace:dir:attribute-def:cACertificate" +msgstr "urn:mace:dir:attribute-def:cACertificate" + +msgid "urn:oid:2.5.4.37" +msgstr "urn:oid:2.5.4.37" + +msgid "cNAMERecord" +msgstr "cNAMERecord" + +msgid "urn:mace:dir:attribute-def:cNAMERecord" +msgstr "urn:mace:dir:attribute-def:cNAMERecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.31" +msgstr "urn:oid:0.9.2342.19200300.100.1.31" + +msgid "carLicense" +msgstr "carLicense" + +msgid "urn:mace:dir:attribute-def:carLicense" +msgstr "urn:mace:dir:attribute-def:carLicense" + +msgid "urn:oid:2.16.840.1.113730.3.1.1" +msgstr "urn:oid:2.16.840.1.113730.3.1.1" + +msgid "certificateRevocationList" +msgstr "certificateRevocationList" + +msgid "urn:mace:dir:attribute-def:certificateRevocationList" +msgstr "urn:mace:dir:attribute-def:certificateRevocationList" + +msgid "urn:oid:2.5.4.39" +msgstr "urn:oid:2.5.4.39" + +# English string: Common name +msgid "cn" +msgstr "Tên thường gọi" + +# English string: Common name +msgid "urn:mace:dir:attribute-def:cn" +msgstr "Tên thường gọi" + +# English string: Common name +msgid "urn:oid:2.5.4.3" +msgstr "Tên thường gọi" + +msgid "co" +msgstr "co" + +msgid "urn:mace:dir:attribute-def:co" +msgstr "urn:mace:dir:attribute-def:co" + +msgid "urn:oid:0.9.2342.19200300.100.1.43" +msgstr "urn:oid:0.9.2342.19200300.100.1.43" + +msgid "commonName" +msgstr "commonName" + +msgid "urn:mace:dir:attribute-def:commonName" +msgstr "urn:mace:dir:attribute-def:commonName" + +msgid "countryName" +msgstr "countryName" + +msgid "urn:mace:dir:attribute-def:countryName" +msgstr "urn:mace:dir:attribute-def:countryName" + +msgid "crossCertificatePair" +msgstr "crossCertificatePair" + +msgid "urn:mace:dir:attribute-def:crossCertificatePair" +msgstr "urn:mace:dir:attribute-def:crossCertificatePair" + +msgid "urn:oid:2.5.4.40" +msgstr "urn:oid:2.5.4.40" + +msgid "dITRedirect" +msgstr "dITRedirect" + +msgid "urn:mace:dir:attribute-def:dITRedirect" +msgstr "urn:mace:dir:attribute-def:dITRedirect" + +msgid "urn:oid:0.9.2342.19200300.100.1.54" +msgstr "urn:oid:0.9.2342.19200300.100.1.54" + +msgid "dSAQuality" +msgstr "dSAQuality" + +msgid "urn:mace:dir:attribute-def:dSAQuality" +msgstr "urn:mace:dir:attribute-def:dSAQuality" + +msgid "urn:oid:0.9.2342.19200300.100.1.49" +msgstr "urn:oid:0.9.2342.19200300.100.1.49" + +# English string: Domain component (DC) +msgid "dc" +msgstr "Domain component(DC)" + +# English string: Domain component (DC) +msgid "urn:mace:dir:attribute-def:dc" +msgstr "Domain component(DC)" + +# English string: Domain component (DC) +msgid "urn:oid:0.9.2342.19200300.100.1.25" +msgstr "Domain component(DC)" + +msgid "deltaRevocationList" +msgstr "deltaRevocationList" + +msgid "urn:mace:dir:attribute-def:deltaRevocationList" +msgstr "urn:mace:dir:attribute-def:deltaRevocationList" + +msgid "urn:oid:2.5.4.53" +msgstr "urn:oid:2.5.4.53" + +msgid "departmentNumber" +msgstr "departmentNumber" + +msgid "urn:mace:dir:attribute-def:departmentNumber" +msgstr "urn:mace:dir:attribute-def:departmentNumber" + +msgid "urn:oid:2.16.840.1.113730.3.1.2" +msgstr "urn:oid:2.16.840.1.113730.3.1.2" + +msgid "description" +msgstr "mô tả" + +msgid "urn:mace:dir:attribute-def:description" +msgstr "urn:mace:dir:attribute-def:description" + +msgid "urn:oid:2.5.4.13" +msgstr "urn:oid:2.5.4.13" + +msgid "destinationIndicator" +msgstr "destinationIndicator" + +msgid "urn:mace:dir:attribute-def:destinationIndicator" +msgstr "urn:mace:dir:attribute-def:destinationIndicator" + +msgid "urn:oid:2.5.4.27" +msgstr "urn:oid:2.5.4.27" + +# English string: Display name +msgid "displayName" +msgstr "Tên hiển thị" + +# English string: Display name +msgid "urn:mace:dir:attribute-def:displayName" +msgstr "Tên hiển thị" + +# English string: Display name +msgid "urn:oid:2.16.840.1.113730.3.1.241" +msgstr "Tên hiển thị" + +msgid "distinguishedName" +msgstr "distinguishedName" + +msgid "urn:mace:dir:attribute-def:distinguishedName" +msgstr "urn:mace:dir:attribute-def:distinguishedName" + +msgid "urn:oid:2.5.4.49" +msgstr "urn:oid:2.5.4.49" + +msgid "dmdName" +msgstr "dmdName" + +msgid "urn:mace:dir:attribute-def:dmdName" +msgstr "urn:mace:dir:attribute-def:dmdName" + +msgid "urn:oid:2.5.4.54" +msgstr "urn:oid:2.5.4.54" + +msgid "dnQualifier" +msgstr "dnQualifier" + +msgid "urn:mace:dir:attribute-def:dnQualifier" +msgstr "urn:mace:dir:attribute-def:dnQualifier" + +msgid "urn:oid:2.5.4.46" +msgstr "urn:oid:2.5.4.46" + +msgid "documentAuthor" +msgstr "documentAuthor" + +msgid "urn:mace:dir:attribute-def:documentAuthor" +msgstr "urn:mace:dir:attribute-def:documentAuthor" + +msgid "urn:oid:0.9.2342.19200300.100.1.14" +msgstr "urn:oid:0.9.2342.19200300.100.1.14" + +msgid "documentIdentifier" +msgstr "documentIdentifier" + +msgid "urn:mace:dir:attribute-def:documentIdentifier" +msgstr "urn:mace:dir:attribute-def:documentIdentifier" + +msgid "urn:oid:0.9.2342.19200300.100.1.11" +msgstr "urn:oid:0.9.2342.19200300.100.1.11" + +msgid "documentLocation" +msgstr "documentLocation" + +msgid "urn:mace:dir:attribute-def:documentLocation" +msgstr "urn:mace:dir:attribute-def:documentLocation" + +msgid "urn:oid:0.9.2342.19200300.100.1.15" +msgstr "urn:oid:0.9.2342.19200300.100.1.15" + +msgid "documentPublisher" +msgstr "documentPublisher" + +msgid "urn:mace:dir:attribute-def:documentPublisher" +msgstr "urn:mace:dir:attribute-def:documentPublisher" + +msgid "urn:oid:0.9.2342.19200300.100.1.56" +msgstr "urn:oid:0.9.2342.19200300.100.1.56" + +msgid "documentTitle" +msgstr "documentTitle" + +msgid "urn:mace:dir:attribute-def:documentTitle" +msgstr "urn:mace:dir:attribute-def:documentTitle" + +msgid "urn:oid:0.9.2342.19200300.100.1.12" +msgstr "urn:oid:0.9.2342.19200300.100.1.12" + +msgid "documentVersion" +msgstr "documentVersion" + +msgid "urn:mace:dir:attribute-def:documentVersion" +msgstr "urn:mace:dir:attribute-def:documentVersion" + +msgid "urn:oid:0.9.2342.19200300.100.1.13" +msgstr "urn:oid:0.9.2342.19200300.100.1.13" + +msgid "domainComponent" +msgstr "domainComponent" + +msgid "urn:mace:dir:attribute-def:domainComponent" +msgstr "urn:mace:dir:attribute-def:domainComponent" + +msgid "drink" +msgstr "drink" + +msgid "urn:mace:dir:attribute-def:drink" +msgstr "urn:mace:dir:attribute-def:drink" + +msgid "urn:oid:0.9.2342.19200300.100.1.5" +msgstr "urn:oid:0.9.2342.19200300.100.1.5" + +# English string: Organizational homepage +msgid "eduOrgHomePageURI" +msgstr "Trang chủ của tổ chức" + +# English string: Organizational homepage +msgid "urn:mace:dir:attribute-def:eduOrgHomePageURI" +msgstr "Trang chủ của tổ chức" + +# English string: Organizational homepage +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.2" +msgstr "Trang chủ của tổ chức" + +msgid "eduOrgIdentityAuthNPolicyURI" +msgstr "eduOrgIdentityAuthNPolicyURI" + +msgid "urn:mace:dir:attribute-def:eduOrgIdentityAuthNPolicyURI" +msgstr "urn:mace:dir:attribute-def:eduOrgIdentityAuthNPolicyURI" + +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.3" +msgstr "urn:oid:1.3.6.1.4.1.5923.1.2.1.3" + +# English string: Organization's legal name +msgid "eduOrgLegalName" +msgstr "Tên hợp pháp của tổ chức" + +# English string: Organization's legal name +msgid "urn:mace:dir:attribute-def:eduOrgLegalName" +msgstr "Tên hợp pháp của tổ chức" + +# English string: Organization's legal name +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.4" +msgstr "Tên hợp pháp của tổ chức" + +msgid "eduOrgSuperiorURI" +msgstr "eduOrgSuperiorURI" + +msgid "urn:mace:dir:attribute-def:eduOrgSuperiorURI" +msgstr "urn:mace:dir:attribute-def:eduOrgSuperiorURI" + +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.5" +msgstr "urn:oid:1.3.6.1.4.1.5923.1.2.1.5" + +msgid "eduOrgWhitePagesURI" +msgstr "eduOrgWhitePagesURI" + +msgid "urn:mace:dir:attribute-def:eduOrgWhitePagesURI" +msgstr "urn:mace:dir:attribute-def:eduOrgWhitePagesURI" + +msgid "urn:oid:1.3.6.1.4.1.5923.1.2.1.6" +msgstr "urn:oid:1.3.6.1.4.1.5923.1.2.1.6" + +# English string: Affiliation +msgid "eduPersonAffiliation" +msgstr "Liên kết" + +# English string: Affiliation +msgid "urn:mace:dir:attribute-def:eduPersonAffiliation" +msgstr "Liên kết" + +# English string: Affiliation +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.1" +msgstr "Liên kết" + +# English string: Identity assurance profile +msgid "eduPersonAssurance" +msgstr "Hồ sơ đảm bảo danh tính" + +# English string: Identity assurance profile +msgid "urn:mace:dir:attribute-def:eduPersonAssurance" +msgstr "Hồ sơ đảm bảo danh tính" + +# English string: Identity assurance profile +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.11" +msgstr "Hồ sơ đảm bảo danh tính" + +# English string: Entitlement regarding the service +msgid "eduPersonEntitlement" +msgstr "Quyền liên quan đến dịch vụ" + +# English string: Entitlement regarding the service +msgid "urn:mace:dir:attribute-def:eduPersonEntitlement" +msgstr "Quyền liên quan đến dịch vụ" + +# English string: Entitlement regarding the service +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.7" +msgstr "Quyền liên quan đến dịch vụ" + +# English string: Nickname +msgid "eduPersonNickname" +msgstr "Biệt danh" + +# English string: Nickname +msgid "urn:mace:dir:attribute-def:eduPersonNickname" +msgstr "Biệt danh" + +# English string: Nickname +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.2" +msgstr "Biệt danh" + +# English string: Distinguished name (DN) of person's home organization +msgid "eduPersonOrgDN" +msgstr "Distinguished name (DN) of person's home organization" + +# English string: Distinguished name (DN) of person's home organization +msgid "urn:mace:dir:attribute-def:eduPersonOrgDN" +msgstr "Distinguished name (DN) of person's home organization" + +# English string: Distinguished name (DN) of person's home organization +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.3" +msgstr "Distinguished name (DN) of person's home organization" + +# English string: Distinguished name (DN) of the person's home organizational unit +msgid "eduPersonOrgUnitDN" +msgstr "Distinguished name (DN) of the person's home organizational unit" + +# English string: Distinguished name (DN) of the person's home organizational unit +msgid "urn:mace:dir:attribute-def:eduPersonOrgUnitDN" +msgstr "Distinguished name (DN) of the person's home organizational unit" + +# English string: Distinguished name (DN) of the person's home organizational unit +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.4" +msgstr "Distinguished name (DN) of the person's home organizational unit" + +# English string: Primary affiliation +msgid "eduPersonPrimaryAffiliation" +msgstr "Liên kết chính" + +# English string: Primary affiliation +msgid "urn:mace:dir:attribute-def:eduPersonPrimaryAffiliation" +msgstr "Liên kết chính" + +# English string: Primary affiliation +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.5" +msgstr "Liên kết chính" + +# English string: Distinguished name (DN) of person's primary Organizational Unit +msgid "eduPersonPrimaryOrgUnitDN" +msgstr "Distinguished name (DN) of person's primary Organizational Unit" + +# English string: Distinguished name (DN) of person's primary Organizational Unit +msgid "urn:mace:dir:attribute-def:eduPersonPrimaryOrgUnitDN" +msgstr "Distinguished name (DN) of person's primary Organizational Unit" + +# English string: Distinguished name (DN) of person's primary Organizational Unit +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.8" +msgstr "Distinguished name (DN) of person's primary Organizational Unit" + +# English string: Person's principal name at home organization +msgid "eduPersonPrincipalName" +msgstr "Tên chính thức của người đó tại tổ chức trong nước" + +# English string: Person's principal name at home organization +msgid "urn:mace:dir:attribute-def:eduPersonPrincipalName" +msgstr "Tên chính thức của người đó tại tổ chức trong nước" + +# English string: Person's principal name at home organization +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.6" +msgstr "Tên chính thức của người đó tại tổ chức trong nước" + +# English string: Affiliation at home organization +msgid "eduPersonScopedAffiliation" +msgstr "Liên kết với tổ chức trong nước" + +# English string: Affiliation at home organization +msgid "urn:mace:dir:attribute-def:eduPersonScopedAffiliation" +msgstr "Liên kết với tổ chức trong nước" + +# English string: Affiliation at home organization +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.9" +msgstr "Liên kết với tổ chức trong nước" + +# English string: Persistent pseudonymous ID +msgid "eduPersonTargetedID" +msgstr "Persistent pseudonymous ID" + +# English string: Persistent pseudonymous ID +msgid "urn:mace:dir:attribute-def:eduPersonTargetedID" +msgstr "Persistent pseudonymous ID" + +# English string: Persistent pseudonymous ID +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.10" +msgstr "Persistent pseudonymous ID" + +# English string: Person's non-reassignable, persistent pseudonymous ID at home organization +msgid "eduPersonUniqueId" +msgstr "eduPersonUniqueId" + +# English string: Person's non-reassignable, persistent pseudonymous ID at home organization +msgid "urn:mace:dir:attribute-def:eduPersonUniqueId" +msgstr "urn:mace:dir:attribute-def:eduPersonUniqueId" + +# English string: Person's non-reassignable, persistent pseudonymous ID at home organization +msgid "urn:oid:1.3.6.1.4.1.5923.1.1.1.13" +msgstr "urn:oid:1.3.6.1.4.1.5923.1.1.1.13" + +msgid "email" +msgstr "email" + +msgid "urn:mace:dir:attribute-def:email" +msgstr "urn:mace:dir:attribute-def:email" + +msgid "urn:oid:1.2.840.113549.1.9.1" +msgstr "urn:oid:1.2.840.113549.1.9.1" + +msgid "emailAddress" +msgstr "emailAddress" + +msgid "urn:mace:dir:attribute-def:emailAddress" +msgstr "urn:mace:dir:attribute-def:emailAddress" + +msgid "employeeNumber" +msgstr "employeeNumber" + +msgid "urn:mace:dir:attribute-def:employeeNumber" +msgstr "urn:mace:dir:attribute-def:employeeNumber" + +msgid "urn:oid:2.16.840.1.113730.3.1.3" +msgstr "urn:oid:2.16.840.1.113730.3.1.3" + +msgid "employeeType" +msgstr "employeeType" + +msgid "urn:mace:dir:attribute-def:employeeType" +msgstr "urn:mace:dir:attribute-def:employeeType" + +msgid "urn:oid:2.16.840.1.113730.3.1.4" +msgstr "urn:oid:2.16.840.1.113730.3.1.4" + +msgid "enhancedSearchGuide" +msgstr "enhancedSearchGuide" + +msgid "urn:mace:dir:attribute-def:enhancedSearchGuide" +msgstr "urn:mace:dir:attribute-def:enhancedSearchGuide" + +msgid "urn:oid:2.5.4.47" +msgstr "urn:oid:2.5.4.47" + +# English string: Fax number +msgid "facsimileTelephoneNumber" +msgstr "Số fax" + +# English string: Fax number +msgid "urn:mace:dir:attribute-def:facsimileTelephoneNumber" +msgstr "Số fax" + +# English string: Fax number +msgid "urn:oid:2.5.4.23" +msgstr "Số fax" + +msgid "favouriteDrink" +msgstr "favouriteDrink" + +msgid "urn:mace:dir:attribute-def:favouriteDrink" +msgstr "urn:mace:dir:attribute-def:favouriteDrink" + +msgid "fax" +msgstr "fax" + +msgid "urn:mace:dir:attribute-def:fax" +msgstr "urn:mace:dir:attribute-def:fax" + +msgid "federationFeideSchemaVersion" +msgstr "federationFeideSchemaVersion" + +msgid "urn:mace:dir:attribute-def:federationFeideSchemaVersion" +msgstr "urn:mace:dir:attribute-def:federationFeideSchemaVersion" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.9" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.9" + +msgid "friendlyCountryName" +msgstr "friendlyCountryName" + +msgid "urn:mace:dir:attribute-def:friendlyCountryName" +msgstr "urn:mace:dir:attribute-def:friendlyCountryName" + +msgid "generationQualifier" +msgstr "generationQualifier" + +msgid "urn:mace:dir:attribute-def:generationQualifier" +msgstr "urn:mace:dir:attribute-def:generationQualifier" + +msgid "urn:oid:2.5.4.44" +msgstr "urn:oid:2.5.4.44" + +# English string: Given name +msgid "givenName" +msgstr "Tên gọi" + +# English string: Given name +msgid "urn:mace:dir:attribute-def:givenName" +msgstr "Tên gọi" + +# English string: Given name +msgid "urn:oid:2.5.4.42" +msgstr "Tên gọi" + +msgid "gn" +msgstr "gn" + +msgid "urn:mace:dir:attribute-def:gn" +msgstr "urn:mace:dir:attribute-def:gn" + +# English string: Home telephone +msgid "homePhone" +msgstr "Điện thoại nhà riêng" + +# English string: Home telephone +msgid "urn:mace:dir:attribute-def:homePhone" +msgstr "Điện thoại nhà riêng" + +# English string: Home telephone +msgid "urn:oid:0.9.2342.19200300.100.1.20" +msgstr "Điện thoại nhà riêng" + +# English string: Home postal address +msgid "homePostalAddress" +msgstr "Địa chỉ bưu chính nhà" + +# English string: Home postal address +msgid "urn:mace:dir:attribute-def:homePostalAddress" +msgstr "Địa chỉ bưu chính nhà" + +# English string: Home postal address +msgid "urn:oid:0.9.2342.19200300.100.1.39" +msgstr "Địa chỉ bưu chính nhà" + +msgid "homeTelephoneNumber" +msgstr "homeTelephoneNumber" + +msgid "urn:mace:dir:attribute-def:homeTelephoneNumber" +msgstr "urn:mace:dir:attribute-def:homeTelephoneNumber" + +msgid "host" +msgstr "host" + +msgid "urn:mace:dir:attribute-def:host" +msgstr "urn:mace:dir:attribute-def:host" + +msgid "urn:oid:0.9.2342.19200300.100.1.9" +msgstr "urn:oid:0.9.2342.19200300.100.1.9" + +msgid "houseIdentifier" +msgstr "houseIdentifier" + +msgid "urn:mace:dir:attribute-def:houseIdentifier" +msgstr "urn:mace:dir:attribute-def:houseIdentifier" + +msgid "urn:oid:2.5.4.51" +msgstr "urn:oid:2.5.4.51" + +msgid "info" +msgstr "info" + +msgid "urn:mace:dir:attribute-def:info" +msgstr "urn:mace:dir:attribute-def:info" + +msgid "urn:oid:0.9.2342.19200300.100.1.4" +msgstr "urn:oid:0.9.2342.19200300.100.1.4" + +msgid "initials" +msgstr "initials" + +msgid "urn:mace:dir:attribute-def:initials" +msgstr "urn:mace:dir:attribute-def:initials" + +msgid "urn:oid:2.5.4.43" +msgstr "urn:oid:2.5.4.43" + +msgid "internationaliSDNNumber" +msgstr "internationaliSDNNumber" + +msgid "urn:mace:dir:attribute-def:internationaliSDNNumber" +msgstr "urn:mace:dir:attribute-def:internationaliSDNNumber" + +msgid "urn:oid:2.5.4.25" +msgstr "urn:oid:2.5.4.25" + +msgid "janetMailbox" +msgstr "janetMailbox" + +msgid "urn:mace:dir:attribute-def:janetMailbox" +msgstr "urn:mace:dir:attribute-def:janetMailbox" + +msgid "urn:oid:0.9.2342.19200300.100.1.46" +msgstr "urn:oid:0.9.2342.19200300.100.1.46" + +# English string: JPEG Photo +msgid "jpegPhoto" +msgstr "Ảnh JPEG" + +# English string: JPEG Photo +msgid "urn:mace:dir:attribute-def:jpegPhoto" +msgstr "Ảnh JPEG" + +# English string: JPEG Photo +msgid "urn:oid:0.9.2342.19200300.100.1.60" +msgstr "Ảnh JPEG" + +msgid "knowledgeInformation" +msgstr "knowledgeInformation" + +msgid "urn:mace:dir:attribute-def:knowledgeInformation" +msgstr "urn:mace:dir:attribute-def:knowledgeInformation" + +msgid "urn:oid:2.5.4.2" +msgstr "urn:oid:2.5.4.2" + +# English string: Locality +msgid "l" +msgstr "Địa phương" + +# English string: Locality +msgid "urn:mace:dir:attribute-def:l" +msgstr "Địa phương" + +# English string: Locality +msgid "urn:oid:2.5.4.7" +msgstr "Địa phương" + +# English string: Labeled URI +msgid "labeledURI" +msgstr "URI được gắn nhãn" + +# English string: Labeled URI +msgid "urn:mace:dir:attribute-def:labeledURI" +msgstr "URI được gắn nhãn" + +# English string: Labeled URI +msgid "urn:oid:1.3.6.1.4.1.250.1.57" +msgstr "URI được gắn nhãn" + +msgid "localityName" +msgstr "localityName" + +msgid "urn:mace:dir:attribute-def:localityName" +msgstr "urn:mace:dir:attribute-def:localityName" + +msgid "mDRecord" +msgstr "mDRecord" + +msgid "urn:mace:dir:attribute-def:mDRecord" +msgstr "urn:mace:dir:attribute-def:mDRecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.27" +msgstr "urn:oid:0.9.2342.19200300.100.1.27" + +msgid "mXRecord" +msgstr "mXRecord" + +msgid "urn:mace:dir:attribute-def:mXRecord" +msgstr "urn:mace:dir:attribute-def:mXRecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.28" +msgstr "urn:oid:0.9.2342.19200300.100.1.28" + +# English string: Mail +msgid "mail" +msgstr "Thư" + +# English string: Mail +msgid "urn:mace:dir:attribute-def:mail" +msgstr "Thư" + +# English string: Mail +msgid "urn:oid:0.9.2342.19200300.100.1.3" +msgstr "Thư" + +msgid "mailPreferenceOption" +msgstr "mailPreferenceOption" + +msgid "urn:mace:dir:attribute-def:mailPreferenceOption" +msgstr "urn:mace:dir:attribute-def:mailPreferenceOption" + +msgid "urn:oid:0.9.2342.19200300.100.1.47" +msgstr "urn:oid:0.9.2342.19200300.100.1.47" + +# English string: Manager +msgid "manager" +msgstr "Quản lý" + +# English string: Manager +msgid "urn:mace:dir:attribute-def:manager" +msgstr "Quản lý" + +# English string: Manager +msgid "urn:oid:0.9.2342.19200300.100.1.10" +msgstr "Quản lý" + +msgid "member" +msgstr "hội viên" + +msgid "urn:mace:dir:attribute-def:member" +msgstr "urn:mace:dir:attribute-def:member" + +msgid "urn:oid:2.5.4.31" +msgstr "urn:oid:2.5.4.31" + +# English string: Mobile +msgid "mobile" +msgstr "Di động" + +# English string: Mobile +msgid "urn:mace:dir:attribute-def:mobile" +msgstr "Di động" + +# English string: Mobile +msgid "urn:oid:0.9.2342.19200300.100.1.41" +msgstr "Di động" + +msgid "mobileTelephoneNumber" +msgstr "mobileTelephoneNumber" + +msgid "urn:mace:dir:attribute-def:mobileTelephoneNumber" +msgstr "urn:mace:dir:attribute-def:mobileTelephoneNumber" + +msgid "nSRecord" +msgstr "nSRecord" + +msgid "urn:mace:dir:attribute-def:nSRecord" +msgstr "urn:mace:dir:attribute-def:nSRecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.29" +msgstr "urn:oid:0.9.2342.19200300.100.1.29" + +msgid "name" +msgstr "name" + +msgid "urn:mace:dir:attribute-def:name" +msgstr "urn:mace:dir:attribute-def:name" + +msgid "urn:oid:2.5.4.41" +msgstr "urn:oid:2.5.4.41" + +msgid "norEduOrgAcronym" +msgstr "norEduOrgAcronym" + +msgid "urn:mace:dir:attribute-def:norEduOrgAcronym" +msgstr "urn:mace:dir:attribute-def:norEduOrgAcronym" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.6" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.6" + +# English string: Organizational number +msgid "norEduOrgNIN" +msgstr "Số tổ chức" + +# English string: Organizational number +msgid "urn:mace:dir:attribute-def:norEduOrgNIN" +msgstr "Số tổ chức" + +# English string: Organizational number +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.12" +msgstr "Số tổ chức" + +msgid "norEduOrgSchemaVersion" +msgstr "norEduOrgSchemaVersion" + +msgid "urn:mace:dir:attribute-def:norEduOrgSchemaVersion" +msgstr "urn:mace:dir:attribute-def:norEduOrgSchemaVersion" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.11" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.11" + +msgid "norEduOrgUniqueIdentifier" +msgstr "norEduOrgUniqueIdentifier" + +msgid "urn:mace:dir:attribute-def:norEduOrgUniqueIdentifier" +msgstr "urn:mace:dir:attribute-def:norEduOrgUniqueIdentifier" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.7" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.7" + +msgid "norEduOrgUniqueNumber" +msgstr "norEduOrgUniqueNumber" + +msgid "urn:mace:dir:attribute-def:norEduOrgUniqueNumber" +msgstr "urn:mace:dir:attribute-def:norEduOrgUniqueNumber" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.1" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.1" + +msgid "norEduOrgUnitUniqueIdentifier" +msgstr "norEduOrgUnitUniqueIdentifier" + +msgid "urn:mace:dir:attribute-def:norEduOrgUnitUniqueIdentifier" +msgstr "urn:mace:dir:attribute-def:norEduOrgUnitUniqueIdentifier" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.8" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.8" + +msgid "norEduOrgUnitUniqueNumber" +msgstr "norEduOrgUnitUniqueNumber" + +msgid "urn:mace:dir:attribute-def:norEduOrgUnitUniqueNumber" +msgstr "urn:mace:dir:attribute-def:norEduOrgUnitUniqueNumber" + +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.2" +msgstr "urn:oid:1.3.6.1.4.1.2428.90.1.2" + +# English string: Date of birth +msgid "norEduPersonBirthDate" +msgstr "Ngày sinh" + +# English string: Date of birth +msgid "urn:mace:dir:attribute-def:norEduPersonBirthDate" +msgstr "Ngày sinh" + +# English string: Date of birth +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.3" +msgstr "Ngày sinh" + +# English string: Local identity number +msgid "norEduPersonLIN" +msgstr "Số định danh địa phương" + +# English string: Local identity number +msgid "urn:mace:dir:attribute-def:norEduPersonLIN" +msgstr "Số định danh địa phương" + +# English string: Local identity number +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.4" +msgstr "Số định danh địa phương" + +# English string: Identity number assigned by public authorities +msgid "norEduPersonNIN" +msgstr "Số định danh do cơ quan chức năng cấp" + +# English string: Identity number assigned by public authorities +msgid "urn:mace:dir:attribute-def:norEduPersonNIN" +msgstr "Số định danh do cơ quan chức năng cấp" + +# English string: Identity number assigned by public authorities +msgid "urn:oid:1.3.6.1.4.1.2428.90.1.5" +msgstr "Số định danh do cơ quan chức năng cấp" + +# English string: Organization name +msgid "o" +msgstr "Tên tổ chức" + +# English string: Organization name +msgid "urn:mace:dir:attribute-def:o" +msgstr "Tên tổ chức" + +# English string: Organization name +msgid "urn:oid:2.5.4.10" +msgstr "Tên tổ chức" + +msgid "objectClass" +msgstr "objectClass" + +msgid "urn:mace:dir:attribute-def:objectClass" +msgstr "urn:mace:dir:attribute-def:objectClass" + +msgid "urn:oid:2.5.4.0" +msgstr "urn:oid:2.5.4.0" + +msgid "organizationName" +msgstr "organizationName" + +msgid "urn:mace:dir:attribute-def:organizationName" +msgstr "urn:mace:dir:attribute-def:organizationName" + +msgid "organizationalStatus" +msgstr "organizationalStatus" + +msgid "urn:mace:dir:attribute-def:organizationalStatus" +msgstr "urn:mace:dir:attribute-def:organizationalStatus" + +msgid "urn:oid:0.9.2342.19200300.100.1.45" +msgstr "urn:oid:0.9.2342.19200300.100.1.45" + +msgid "organizationalUnitName" +msgstr "organizationalUnitName" + +msgid "urn:mace:dir:attribute-def:organizationalUnitName" +msgstr "urn:mace:dir:attribute-def:organizationalUnitName" + +# English string: Organizational unit +msgid "urn:oid:2.5.4.11" +msgstr "Đơn vị tổ chức" + +msgid "otherMailbox" +msgstr "otherMailbox" + +msgid "urn:mace:dir:attribute-def:otherMailbox" +msgstr "urn:mace:dir:attribute-def:otherMailbox" + +msgid "urn:oid:0.9.2342.19200300.100.1.22" +msgstr "urn:oid:0.9.2342.19200300.100.1.22" + +# English string: Organizational unit +msgid "ou" +msgstr "Đơn vị tổ chức" + +# English string: Organizational unit +msgid "urn:mace:dir:attribute-def:ou" +msgstr "Đơn vị tổ chức" + +msgid "owner" +msgstr "chủ sở hữu" + +msgid "urn:mace:dir:attribute-def:owner" +msgstr "urn:mace:dir:attribute-def:owner" + +msgid "urn:oid:2.5.4.32" +msgstr "urn:oid:2.5.4.32" + +msgid "pager" +msgstr "pager" + +msgid "urn:mace:dir:attribute-def:pager" +msgstr "urn:mace:dir:attribute-def:pager" + +msgid "urn:oid:0.9.2342.19200300.100.1.42" +msgstr "urn:oid:0.9.2342.19200300.100.1.42" + +msgid "pagerTelephoneNumber" +msgstr "pagerTelephoneNumber" + +msgid "urn:mace:dir:attribute-def:pagerTelephoneNumber" +msgstr "urn:mace:dir:attribute-def:pagerTelephoneNumber" + +# English string: Service-specific pseudonymous ID at home organization +msgid "pairwise-id" +msgstr "pairwise-id" + +# English string: Service-specific pseudonymous ID at home organization +msgid "urn:oasis:names:tc:SAML:attribute:pairwise-id" +msgstr "urn:oasis:names:tc:SAML:attribute:pairwise-id" + +msgid "personalSignature" +msgstr "personalSignature" + +msgid "urn:mace:dir:attribute-def:personalSignature" +msgstr "urn:mace:dir:attribute-def:personalSignature" + +msgid "urn:oid:0.9.2342.19200300.100.1.53" +msgstr "urn:oid:0.9.2342.19200300.100.1.53" + +msgid "personalTitle" +msgstr "personalTitle" + +msgid "urn:mace:dir:attribute-def:personalTitle" +msgstr "urn:mace:dir:attribute-def:personalTitle" + +msgid "urn:oid:0.9.2342.19200300.100.1.40" +msgstr "urn:oid:0.9.2342.19200300.100.1.40" + +msgid "photo" +msgstr "photo" + +msgid "urn:mace:dir:attribute-def:photo" +msgstr "urn:mace:dir:attribute-def:photo" + +msgid "urn:oid:0.9.2342.19200300.100.1.7" +msgstr "urn:oid:0.9.2342.19200300.100.1.7" + +msgid "physicalDeliveryOfficeName" +msgstr "physicalDeliveryOfficeName" + +msgid "urn:mace:dir:attribute-def:physicalDeliveryOfficeName" +msgstr "urn:mace:dir:attribute-def:physicalDeliveryOfficeName" + +msgid "urn:oid:2.5.4.19" +msgstr "urn:oid:2.5.4.19" + +msgid "pkcs9email" +msgstr "pkcs9email" + +msgid "urn:mace:dir:attribute-def:pkcs9email" +msgstr "urn:mace:dir:attribute-def:pkcs9email" + +# English string: Post office box +msgid "postOfficeBox" +msgstr "Hộp thư bưu điện" + +# English string: Post office box +msgid "urn:mace:dir:attribute-def:postOfficeBox" +msgstr "Hộp thư bưu điện" + +# English string: Post office box +msgid "urn:oid:2.5.4.18" +msgstr "Hộp thư bưu điện" + +# English string: Postal address +msgid "postalAddress" +msgstr "Địa chỉ bưu chính" + +# English string: Postal address +msgid "urn:mace:dir:attribute-def:postalAddress" +msgstr "Địa chỉ bưu chính" + +# English string: Postal address +msgid "urn:oid:2.5.4.16" +msgstr "Địa chỉ bưu chính" + +# English string: Postal code +msgid "postalCode" +msgstr "Mã bưu điện" + +# English string: Postal code +msgid "urn:mace:dir:attribute-def:postalCode" +msgstr "Mã bưu điện" + +# English string: Postal code +msgid "urn:oid:2.5.4.17" +msgstr "Mã bưu điện" + +msgid "preferredDeliveryMethod" +msgstr "preferredDeliveryMethod" + +msgid "urn:mace:dir:attribute-def:preferredDeliveryMethod" +msgstr "urn:mace:dir:attribute-def:preferredDeliveryMethod" + +msgid "urn:oid:2.5.4.28" +msgstr "urn:oid:2.5.4.28" + +# English string: Preferred language +msgid "preferredLanguage" +msgstr "Ngôn ngữ mong muốn" + +# English string: Preferred language +msgid "urn:mace:dir:attribute-def:preferredLanguage" +msgstr "Ngôn ngữ mong muốn" + +# English string: Preferred language +msgid "urn:oid:2.16.840.1.113730.3.1.39" +msgstr "Ngôn ngữ mong muốn" + +msgid "presentationAddress" +msgstr "presentationAddress" + +msgid "urn:mace:dir:attribute-def:presentationAddress" +msgstr "urn:mace:dir:attribute-def:presentationAddress" + +msgid "urn:oid:2.5.4.29" +msgstr "urn:oid:2.5.4.29" + +msgid "protocolInformation" +msgstr "protocolInformation" + +msgid "urn:mace:dir:attribute-def:protocolInformation" +msgstr "urn:mace:dir:attribute-def:protocolInformation" + +msgid "urn:oid:2.5.4.48" +msgstr "urn:oid:2.5.4.48" + +msgid "pseudonym" +msgstr "pseudonym" + +msgid "urn:mace:dir:attribute-def:pseudonym" +msgstr "urn:mace:dir:attribute-def:pseudonym" + +msgid "urn:oid:2.5.4.65" +msgstr "urn:oid:2.5.4.65" + +msgid "registeredAddress" +msgstr "registeredAddress" + +msgid "urn:mace:dir:attribute-def:registeredAddress" +msgstr "urn:mace:dir:attribute-def:registeredAddress" + +msgid "urn:oid:2.5.4.26" +msgstr "urn:oid:2.5.4.26" + +msgid "rfc822Mailbox" +msgstr "rfc822Mailbox" + +msgid "urn:mace:dir:attribute-def:rfc822Mailbox" +msgstr "urn:mace:dir:attribute-def:rfc822Mailbox" + +msgid "roleOccupant" +msgstr "roleOccupant" + +msgid "urn:mace:dir:attribute-def:roleOccupant" +msgstr "urn:mace:dir:attribute-def:roleOccupant" + +msgid "urn:oid:2.5.4.33" +msgstr "urn:oid:2.5.4.33" + +msgid "roomNumber" +msgstr "roomNumber" + +msgid "urn:mace:dir:attribute-def:roomNumber" +msgstr "urn:mace:dir:attribute-def:roomNumber" + +msgid "urn:oid:0.9.2342.19200300.100.1.6" +msgstr "urn:oid:0.9.2342.19200300.100.1.6" + +msgid "sOARecord" +msgstr "sOARecord" + +msgid "urn:mace:dir:attribute-def:sOARecord" +msgstr "urn:mace:dir:attribute-def:sOARecord" + +msgid "urn:oid:0.9.2342.19200300.100.1.30" +msgstr "urn:oid:0.9.2342.19200300.100.1.30" + +msgid "schacCountryOfCitizenship" +msgstr "schacCountryOfCitizenship" + +msgid "urn:mace:terena.org:attribute-def:schacCountryOfCitizenship" +msgstr "urn:mace:terena.org:attribute-def:schacCountryOfCitizenship" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.5" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.5" + +msgid "urn:schac:attribute-def:schacCountryOfCitizenship" +msgstr "urn:schac:attribute-def:schacCountryOfCitizenship" + +msgid "schacCountryOfResidence" +msgstr "schacCountryOfResidence" + +msgid "urn:mace:terena.org:attribute-def:schacCountryOfResidence" +msgstr "urn:mace:terena.org:attribute-def:schacCountryOfResidence" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.11" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.11" + +msgid "urn:schac:attribute-def:schacCountryOfResidence" +msgstr "urn:schac:attribute-def:schacCountryOfResidence" + +msgid "schacDateOfBirth" +msgstr "schacDateOfBirth" + +msgid "urn:mace:terena.org:attribute-def:schacDateOfBirth" +msgstr "urn:mace:terena.org:attribute-def:schacDateOfBirth" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.3" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.3" + +msgid "urn:schac:attribute-def:schacDateOfBirth" +msgstr "urn:schac:attribute-def:schacDateOfBirth" + +msgid "schacExpiryDate" +msgstr "schacExpiryDate" + +msgid "urn:mace:terena.org:attribute-def:schacExpiryDate" +msgstr "urn:mace:terena.org:attribute-def:schacExpiryDate" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.17" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.17" + +msgid "urn:schac:attribute-def:schacExpiryDate" +msgstr "urn:schac:attribute-def:schacExpiryDate" + +msgid "schacGender" +msgstr "schacGender" + +msgid "urn:mace:terena.org:attribute-def:schacGender" +msgstr "urn:mace:terena.org:attribute-def:schacGender" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.2" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.2" + +msgid "urn:schac:attribute-def:schacGender" +msgstr "urn:schac:attribute-def:schacGender" + +# English string: Home organization domain name +msgid "schacHomeOrganization" +msgstr "Tên miền tổ chức chính" + +# English string: Home organization domain name +msgid "urn:mace:terena.org:attribute-def:schacHomeOrganization" +msgstr "Tên miền tổ chức chính" + +# English string: Home organization domain name +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.9" +msgstr "Tên miền tổ chức chính" + +# English string: Home organization domain name +msgid "urn:schac:attribute-def:schacHomeOrganization" +msgstr "Tên miền tổ chức chính" + +msgid "schacHomeOrganizationType" +msgstr "schacHomeOrganizationType" + +msgid "urn:mace:terena.org:attribute-def:schacHomeOrganizationType" +msgstr "urn:mace:terena.org:attribute-def:schacHomeOrganizationType" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.10" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.10" + +msgid "urn:schac:attribute-def:schacHomeOrganizationType" +msgstr "urn:schac:attribute-def:schacHomeOrganizationType" + +msgid "schacMotherTongue" +msgstr "schacMotherTongue" + +msgid "urn:mace:terena.org:attribute-def:schacMotherTongue" +msgstr "urn:mace:terena.org:attribute-def:schacMotherTongue" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.1" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.1" + +msgid "urn:schac:attribute-def:schacMotherTongue" +msgstr "urn:schac:attribute-def:schacMotherTongue" + +msgid "schacPersonalPosition" +msgstr "schacPersonalPosition" + +msgid "urn:mace:terena.org:attribute-def:schacPersonalPosition" +msgstr "urn:mace:terena.org:attribute-def:schacPersonalPosition" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.13" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.13" + +msgid "urn:schac:attribute-def:schacPersonalPosition" +msgstr "urn:schac:attribute-def:schacPersonalPosition" + +msgid "schacPersonalTitle" +msgstr "schacPersonalTitle" + +msgid "urn:mace:terena.org:attribute-def:schacPersonalTitle" +msgstr "urn:mace:terena.org:attribute-def:schacPersonalTitle" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.8" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.8" + +msgid "urn:schac:attribute-def:schacPersonalTitle" +msgstr "urn:schac:attribute-def:schacPersonalTitle" + +msgid "schacPersonalUniqueCode" +msgstr "schacPersonalUniqueCode" + +msgid "urn:mace:terena.org:attribute-def:schacPersonalUniqueCode" +msgstr "urn:mace:terena.org:attribute-def:schacPersonalUniqueCode" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.14" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.14" + +msgid "urn:schac:attribute-def:schacPersonalUniqueCode" +msgstr "urn:schac:attribute-def:schacPersonalUniqueCode" + +msgid "schacPersonalUniqueID" +msgstr "schacPersonalUniqueID" + +msgid "urn:mace:terena.org:attribute-def:schacPersonalUniqueID" +msgstr "urn:mace:terena.org:attribute-def:schacPersonalUniqueID" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.15" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.15" + +msgid "urn:schac:attribute-def:schacPersonalUniqueID" +msgstr "urn:schac:attribute-def:schacPersonalUniqueID" + +msgid "schacPlaceOfBirth" +msgstr "schacPlaceOfBirth" + +msgid "urn:mace:terena.org:attribute-def:schacPlaceOfBirth" +msgstr "urn:mace:terena.org:attribute-def:schacPlaceOfBirth" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.4" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.4" + +msgid "urn:schac:attribute-def:schacPlaceOfBirth" +msgstr "urn:schac:attribute-def:schacPlaceOfBirth" + +msgid "schacProjectMembership" +msgstr "schacProjectMembership" + +msgid "urn:mace:terena.org:attribute-def:schacProjectMembership" +msgstr "urn:mace:terena.org:attribute-def:schacProjectMembership" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.20" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.20" + +msgid "urn:schac:attribute-def:schacProjectMembership" +msgstr "urn:schac:attribute-def:schacProjectMembership" + +msgid "schacProjectSpecificRole" +msgstr "schacProjectSpecificRole" + +msgid "urn:mace:terena.org:attribute-def:schacProjectSpecificRole" +msgstr "urn:mace:terena.org:attribute-def:schacProjectSpecificRole" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.21" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.21" + +msgid "urn:schac:attribute-def:schacProjectSpecificRole" +msgstr "urn:schac:attribute-def:schacProjectSpecificRole" + +msgid "schacSn1" +msgstr "schacSn1" + +msgid "urn:mace:terena.org:attribute-def:schacSn1" +msgstr "urn:mace:terena.org:attribute-def:schacSn1" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.6" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.6" + +msgid "urn:schac:attribute-def:schacSn1" +msgstr "urn:schac:attribute-def:schacSn1" + +msgid "schacSn2" +msgstr "schacSn2" + +msgid "urn:mace:terena.org:attribute-def:schacSn2" +msgstr "urn:mace:terena.org:attribute-def:schacSn2" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.7" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.7" + +msgid "urn:schac:attribute-def:schacSn2" +msgstr "urn:schac:attribute-def:schacSn2" + +msgid "schacUserPresenceID" +msgstr "schacUserPresenceID" + +msgid "urn:mace:terena.org:attribute-def:schacUserPresenceID" +msgstr "urn:mace:terena.org:attribute-def:schacUserPresenceID" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.12" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.12" + +msgid "urn:schac:attribute-def:schacUserPresenceID" +msgstr "urn:schac:attribute-def:schacUserPresenceID" + +# English string: Private information elements +msgid "schacUserPrivateAttribute" +msgstr "Các thông tin cá nhân" + +# English string: Private information elements +msgid "urn:mace:terena.org:attribute-def:schacUserPrivateAttribute" +msgstr "Các thông tin cá nhân" + +# English string: Private information elements +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.18" +msgstr "Các thông tin cá nhân" + +# English string: Private information elements +msgid "urn:schac:attribute-def:schacUserPrivateAttribute" +msgstr "Các thông tin cá nhân" + +msgid "schacUserStatus" +msgstr "schacUserStatus" + +msgid "urn:mace:terena.org:attribute-def:schacUserStatus" +msgstr "urn:mace:terena.org:attribute-def:schacUserStatus" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.2.19" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.2.19" + +msgid "urn:schac:attribute-def:schacUserStatus" +msgstr "urn:schac:attribute-def:schacUserStatus" + +msgid "schacYearOfBirth" +msgstr "schacYearOfBirth" + +msgid "urn:mace:terena.org:attribute-def:schacYearOfBirth" +msgstr "urn:mace:terena.org:attribute-def:schacYearOfBirth" + +msgid "urn:oid:1.3.6.1.4.1.25178.1.0.2.3" +msgstr "urn:oid:1.3.6.1.4.1.25178.1.0.2.3" + +msgid "urn:schac:attribute-def:schacYearOfBirth" +msgstr "urn:schac:attribute-def:schacYearOfBirth" + +msgid "searchGuide" +msgstr "searchGuide" + +msgid "urn:mace:dir:attribute-def:searchGuide" +msgstr "urn:mace:dir:attribute-def:searchGuide" + +msgid "urn:oid:2.5.4.14" +msgstr "urn:oid:2.5.4.14" + +msgid "secretary" +msgstr "secretary" + +msgid "urn:mace:dir:attribute-def:secretary" +msgstr "urn:mace:dir:attribute-def:secretary" + +msgid "urn:oid:0.9.2342.19200300.100.1.21" +msgstr "urn:oid:0.9.2342.19200300.100.1.21" + +msgid "seeAlso" +msgstr "seeAlso" + +msgid "urn:mace:dir:attribute-def:seeAlso" +msgstr "urn:mace:dir:attribute-def:seeAlso" + +msgid "urn:oid:2.5.4.34" +msgstr "urn:oid:2.5.4.34" + +msgid "serialNumber" +msgstr "serialNumber" + +msgid "urn:mace:dir:attribute-def:serialNumber" +msgstr "urn:mace:dir:attribute-def:serialNumber" + +msgid "urn:oid:2.5.4.5" +msgstr "urn:oid:2.5.4.5" + +msgid "singleLevelQuality" +msgstr "singleLevelQuality" + +msgid "urn:mace:dir:attribute-def:singleLevelQuality" +msgstr "urn:mace:dir:attribute-def:singleLevelQuality" + +msgid "urn:oid:0.9.2342.19200300.100.1.50" +msgstr "urn:oid:0.9.2342.19200300.100.1.50" + +msgid "sisSchoolGrade" +msgstr "sisSchoolGrade" + +msgid "urn:mace:dir:attribute-def:sisSchoolGrade" +msgstr "urn:mace:dir:attribute-def:sisSchoolGrade" + +msgid "urn:oid:1.2.752.194.10.2.2" +msgstr "urn:oid:1.2.752.194.10.2.2" + +msgid "sisLegalGuardianFor" +msgstr "sisLegalGuardianFor" + +msgid "urn:mace:dir:attribute-def:sisLegalGuardianFor" +msgstr "urn:mace:dir:attribute-def:sisLegalGuardianFor" + +msgid "urn:oid:1.2.752.194.10.2.1" +msgstr "urn:oid:1.2.752.194.10.2.1" + +# English string: Surname +msgid "sn" +msgstr "Tên đệm" + +# English string: Surname +msgid "urn:mace:dir:attribute-def:sn" +msgstr "Tên đệm" + +# English string: Surname +msgid "urn:oid:2.5.4.4" +msgstr "Tên đệm" + +msgid "st" +msgstr "st" + +msgid "urn:mace:dir:attribute-def:st" +msgstr "urn:mace:dir:attribute-def:st" + +msgid "urn:oid:2.5.4.8" +msgstr "urn:oid:2.5.4.8" + +msgid "stateOrProvinceName" +msgstr "stateOrProvinceName" + +msgid "urn:mace:dir:attribute-def:stateOrProvinceName" +msgstr "urn:mace:dir:attribute-def:stateOrProvinceName" + +# English string: Street +msgid "street" +msgstr "Đường" + +# English string: Street +msgid "urn:mace:dir:attribute-def:street" +msgstr "Đường" + +# English string: Street +msgid "urn:oid:2.5.4.9" +msgstr "Đường" + +msgid "streetAddress" +msgstr "streetAddress" + +msgid "urn:mace:dir:attribute-def:streetAddress" +msgstr "urn:mace:dir:attribute-def:streetAddress" + +# English string: Pseudonymous ID at home organization +msgid "subject-id" +msgstr "subject-id" + +# English string: Pseudonymous ID at home organization +msgid "urn:oasis:names:tc:SAML:attribute:subject-id" +msgstr "urn:oasis:names:tc:SAML:attribute:subject-id" + +msgid "subtreeMaximumQuality" +msgstr "subtreeMaximumQuality" + +msgid "urn:mace:dir:attribute-def:subtreeMaximumQuality" +msgstr "urn:mace:dir:attribute-def:subtreeMaximumQuality" + +msgid "urn:oid:0.9.2342.19200300.100.1.52" +msgstr "urn:oid:0.9.2342.19200300.100.1.52" + +msgid "subtreeMinimumQuality" +msgstr "subtreeMinimumQuality" + +msgid "urn:mace:dir:attribute-def:subtreeMinimumQuality" +msgstr "urn:mace:dir:attribute-def:subtreeMinimumQuality" + +msgid "urn:oid:0.9.2342.19200300.100.1.51" +msgstr "urn:oid:0.9.2342.19200300.100.1.51" + +msgid "supportedAlgorithms" +msgstr "supportedAlgorithms" + +msgid "urn:mace:dir:attribute-def:supportedAlgorithms" +msgstr "urn:mace:dir:attribute-def:supportedAlgorithms" + +msgid "urn:oid:2.5.4.52" +msgstr "urn:oid:2.5.4.52" + +msgid "supportedApplicationContext" +msgstr "supportedApplicationContext" + +msgid "urn:mace:dir:attribute-def:supportedApplicationContext" +msgstr "urn:mace:dir:attribute-def:supportedApplicationContext" + +msgid "urn:oid:2.5.4.30" +msgstr "urn:oid:2.5.4.30" + +msgid "surname" +msgstr "surname" + +msgid "urn:mace:dir:attribute-def:surname" +msgstr "urn:mace:dir:attribute-def:surname" + +# English string: Telephone number +msgid "telephoneNumber" +msgstr "Số điện thoại" + +# English string: Telephone number +msgid "urn:mace:dir:attribute-def:telephoneNumber" +msgstr "Số điện thoại" + +# English string: Telephone number +msgid "urn:oid:2.5.4.20" +msgstr "Số điện thoại" + +msgid "teletexTerminalIdentifier" +msgstr "teletexTerminalIdentifier" + +msgid "urn:mace:dir:attribute-def:teletexTerminalIdentifier" +msgstr "urn:mace:dir:attribute-def:teletexTerminalIdentifier" + +msgid "urn:oid:2.5.4.22" +msgstr "urn:oid:2.5.4.22" + +msgid "telexNumber" +msgstr "telexNumber" + +msgid "urn:mace:dir:attribute-def:telexNumber" +msgstr "urn:mace:dir:attribute-def:telexNumber" + +msgid "urn:oid:2.5.4.21" +msgstr "urn:oid:2.5.4.21" + +msgid "textEncodedORAddress" +msgstr "textEncodedORAddress" + +msgid "urn:mace:dir:attribute-def:textEncodedORAddress" +msgstr "urn:mace:dir:attribute-def:textEncodedORAddress" + +msgid "urn:oid:0.9.2342.19200300.100.1.2" +msgstr "urn:oid:0.9.2342.19200300.100.1.2" + +# English string: Title +msgid "title" +msgstr "Tiêu đề" + +# English string: Title +msgid "urn:mace:dir:attribute-def:title" +msgstr "Tiêu đề" + +# English string: Title +msgid "urn:oid:2.5.4.12" +msgstr "Tiêu đề" + +# English string: User ID +msgid "uid" +msgstr "ID người dùng" + +# English string: User ID +msgid "urn:mace:dir:attribute-def:uid" +msgstr "ID người dùng" + +# English string: User ID +msgid "urn:oid:0.9.2342.19200300.100.1.1" +msgstr "ID người dùng" + +msgid "uniqueIdentifier" +msgstr "uniqueIdentifier" + +msgid "urn:mace:dir:attribute-def:uniqueIdentifier" +msgstr "urn:mace:dir:attribute-def:uniqueIdentifier" + +msgid "urn:oid:0.9.2342.19200300.100.1.44" +msgstr "urn:oid:0.9.2342.19200300.100.1.44" + +msgid "uniqueMember" +msgstr "uniqueMember" + +msgid "urn:mace:dir:attribute-def:uniqueMember" +msgstr "urn:mace:dir:attribute-def:uniqueMember" + +msgid "urn:oid:2.5.4.50" +msgstr "urn:oid:2.5.4.50" + +msgid "userCertificate" +msgstr "userCertificate" + +msgid "urn:mace:dir:attribute-def:userCertificate" +msgstr "urn:mace:dir:attribute-def:userCertificate" + +msgid "urn:oid:2.5.4.36" +msgstr "urn:oid:2.5.4.36" + +msgid "userClass" +msgstr "userClass" + +msgid "urn:mace:dir:attribute-def:userClass" +msgstr "urn:mace:dir:attribute-def:userClass" + +msgid "urn:oid:0.9.2342.19200300.100.1.8" +msgstr "urn:oid:0.9.2342.19200300.100.1.8" + +msgid "userPKCS12" +msgstr "userPKCS12" + +msgid "urn:mace:dir:attribute-def:userPKCS12" +msgstr "urn:mace:dir:attribute-def:userPKCS12" + +msgid "urn:oid:2.16.840.1.113730.3.1.216" +msgstr "urn:oid:2.16.840.1.113730.3.1.216" + +# English string: User's password hash +msgid "userPassword" +msgstr "Băm mật khẩu của người dùng" + +# English string: User's password hash +msgid "urn:mace:dir:attribute-def:userPassword" +msgstr "Băm mật khẩu của người dùng" + +# English string: User's password hash +msgid "urn:oid:2.5.4.35" +msgstr "Băm mật khẩu của người dùng" + +msgid "userSMIMECertificate" +msgstr "userSMIMECertificate" + +msgid "urn:mace:dir:attribute-def:userSMIMECertificate" +msgstr "urn:mace:dir:attribute-def:userSMIMECertificate" + +msgid "urn:oid:2.16.840.1.113730.3.1.40" +msgstr "urn:oid:2.16.840.1.113730.3.1.40" + +msgid "userid" +msgstr "userid" + +msgid "urn:mace:dir:attribute-def:userid" +msgstr "urn:mace:dir:attribute-def:userid" + +msgid "x121Address" +msgstr "x121Address" + +msgid "urn:mace:dir:attribute-def:x121Address" +msgstr "urn:mace:dir:attribute-def:x121Address" + +msgid "urn:oid:2.5.4.24" +msgstr "urn:oid:2.5.4.24" + +msgid "x500UniqueIdentifier" +msgstr "x500UniqueIdentifier" + +msgid "urn:mace:dir:attribute-def:x500UniqueIdentifier" +msgstr "urn:mace:dir:attribute-def:x500UniqueIdentifier" + +msgid "urn:oid:2.5.4.45" +msgstr "urn:oid:2.5.4.45" + +# English string: Common name +msgid "facebook_cn" +msgstr "Tên thường gọi" + +msgid "http://axschema.org/contact/country/home" +msgstr "http://axschema.org/contact/country/home" + +msgid "openid.sreg.country" +msgstr "openid.sreg.country" + +msgid "facebook.about_me" +msgstr "facebook.about_me" + +msgid "linkedin.summary" +msgstr "linkedin.summary" + +msgid "twitter.description" +msgstr "twitter.description" + +# English string: Display name +msgid "facebook.name" +msgstr "Tên hiển thị" + +# English string: Display name +msgid "http://axschema.org/namePerson/friendly" +msgstr "Tên hiển thị" + +# English string: Display name +msgid "openid.sreg.nickname" +msgstr "Tên hiển thị" + +# English string: Display name +msgid "http://axschema.org/namePerson" +msgstr "Tên hiển thị" + +# English string: Display name +msgid "openid.sreg.fullname" +msgstr "Tên hiển thị" + +# English string: Display name +msgid "twitter.name" +msgstr "Tên hiển thị" + +# English string: Display name +msgid "windowslive.displayName" +msgstr "Tên hiển thị" + +# English string: Person's principal name at home organization +msgid "facebook_user" +msgstr "Tên chính của người đó tại tổ chức nhà" + +# English string: Person's principal name at home organization +msgid "linkedin_user" +msgstr "Tên chính của người đó tại tổ chức nhà" + +# English string: Person's principal name at home organization +msgid "twitter_screen_n_realm" +msgstr "Tên chính của người đó tại tổ chức nhà" + +# English string: Person's principal name at home organization +msgid "windowslive_user" +msgstr "Tên chính của người đó tại tổ chức nhà" + +# English string: Person's principal name at home organization +msgid "windowslive.userPrincipalName" +msgstr "Tên chính của người đó tại tổ chức nhà" + +# English string: Persistent pseudonymous ID +msgid "facebook_targetedID" +msgstr "Persistent pseudonymous ID" + +# English string: Persistent pseudonymous ID +msgid "linkedin_targetedID" +msgstr "Persistent pseudonymous ID" + +# English string: Persistent pseudonymous ID +msgid "twitter_targetedID" +msgstr "Persistent pseudonymous ID" + +# English string: Persistent pseudonymous ID +msgid "windowslive_targetedID" +msgstr "Persistent pseudonymous ID" + +# English string: Fax number +msgid "http://axschema.org/contact/phone/fax" +msgstr "Số fax" + +# English string: Given name +msgid "facebook.first_name" +msgstr "Tên gọi" + +# English string: Given name +msgid "linkedin.firstName" +msgstr "Tên gọi" + +# English string: Given name +msgid "http://axschema.org/namePerson/first" +msgstr "Tên gọi" + +# English string: Given name +msgid "windowslive.FirstName" +msgstr "Tên gọi" + +# English string: Given name +msgid "windowslive.givenName" +msgstr "Tên gọi" + +# English string: Home telephone +msgid "http://axschema.org/contact/phone/home" +msgstr "Điện thoại nhà riêng" + +# English string: Locality +msgid "windowslive.Location" +msgstr "Địa phương" + +# English string: Labeled URI +msgid "facebook.profile_url" +msgstr "URI được gắn nhãn" + +# English string: Labeled URI +msgid "twitter.url" +msgstr "URI được gắn nhãn" + +# English string: Mail +msgid "facebook.email" +msgstr "Thư" + +# English string: Mail +msgid "http://axschema.org/contact/email" +msgstr "Thư" + +# English string: Mail +msgid "openid.sreg.email" +msgstr "Thư" + +# English string: Mail +msgid "windowslive_mail" +msgstr "Thư" + +# English string: Mail +msgid "windowslive.mail" +msgstr "Thư" + +# English string: Mobile +msgid "http://axschema.org/contact/phone/cell" +msgstr "Di động" + +# English string: Organization name +msgid "http://axschema.org/company/name" +msgstr "Tên tổ chức" + +msgid "http://axschema.org/namePerson/prefix" +msgstr "http://axschema.org/namePerson/prefix" + +# English string: Postal code +msgid "http://axschema.org/contact/postalCode/home" +msgstr "Mã bưu điện" + +# English string: Postal code +msgid "openid.sreg.postcode" +msgstr "Mã bưu điện" + +# English string: Preferred language +msgid "facebook.locale" +msgstr "Ngôn ngữ ưa thích" + +# English string: Preferred language +msgid "http://axschema.org/pref/language" +msgstr "Ngôn ngữ ưa thích" + +# English string: Preferred language +msgid "openid.sreg.language" +msgstr "Ngôn ngữ ưa thích" + +# English string: Preferred language +msgid "twitter.lang" +msgstr "Ngôn ngữ ưa thích" + +# English string: Preferred language +msgid "windowslive.preferredLanguage" +msgstr "Ngôn ngữ ưa thích" + +# English string: Surname +msgid "facebook.last_name" +msgstr "Tên đệm" + +# English string: Surname +msgid "linkedin.lastName" +msgstr "Tên đệm" + +# English string: Surname +msgid "http://axschema.org/namePerson/last" +msgstr "Tên đệm" + +# English string: Surname +msgid "windowslive.LastName" +msgstr "Tên đệm" + +# English string: Surname +msgid "windowslive.surname" +msgstr "Tên đệm" + +# English string: Telephone number +msgid "http://axschema.org/contact/phone/default" +msgstr "Số điện thoại" + +# English string: Telephone number +msgid "http://axschema.org/contact/phone/business" +msgstr "Số điện thoại" + +# English string: Title +msgid "linkedin.headline" +msgstr "Tiêu đề" + +# English string: Title +msgid "http://axschema.org/company/title" +msgstr "Tiêu đề" + +# English string: User ID +msgid "facebook.username" +msgstr "ID người dùng" + +# English string: User ID +msgid "linkedin.id" +msgstr "ID người dùng" + +# English string: User ID +msgid "twitter.screen_name" +msgstr "ID người dùng" + +# English string: User ID +msgid "windowslive_uid" +msgstr "ID người dùng" + +# English string: User ID +msgid "windowslive.id" +msgstr "ID người dùng" diff --git a/locales/vi/LC_MESSAGES/messages.po b/locales/vi/LC_MESSAGES/messages.po new file mode 100644 index 0000000000..afb7577cd0 --- /dev/null +++ b/locales/vi/LC_MESSAGES/messages.po @@ -0,0 +1,813 @@ +msgid "" +msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" +"X-Domain: messages\n" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "%MESSAGE%" + +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Một dịch vụ đã yêu cầu bạn xác thực. Vui lòng nhập tên người dùng và mật khẩu của bạn vào biểu mẫu bên dưới." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "Mật khẩu quản trị viên không được đặt thành giá trị băm" + +msgid "Affiliation" +msgstr "Liên kết" + +msgid "Affiliation at home organization" +msgstr "Tổ chức liên kết tại nước nhà" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Sebuah error telah terjadi ketika membuat request SAML." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Đã xảy ra lỗi khi cố gắng xử lý Yêu cầu đăng xuất." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Một ngoại lệ chưa được xử lý đã được đưa ra." + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "Khi bạn đang ở chế độ gỡ lỗi, bạn sẽ thấy được nội dung của tin nhắn bạn đang gửi:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Xác thực đã bị hủy bỏ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Lỗi xác thực trong nguồn %AUTHSOURCE%. Lý do là: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Xác thực không thành công: chứng chỉ trình duyệt của bạn gửi không hợp lệ hoặc không thể đọc được" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Xác thực không thành công: chứng chỉ trình duyệt của bạn gửi không xác định" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Xác thực không thành công: trình duyệt của bạn không gửi bất kỳ chứng chỉ nào" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 +msgid "Authentication source error" +msgstr "Lỗi nguồn xác thực" + +msgid "Authentication status" +msgstr "Trạng thái xác thực" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 +msgid "Bad request received" +msgstr "Đã nhận được yêu cầu không hợp lệ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Yêu cầu không hợp lệ đối với dịch vụ khám phá" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 +msgid "CAS Error" +msgstr "Lỗi CAS" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "Không thể truy xuất dữ liệu phiên" + +msgid "Certificates" +msgstr "Giấy chứng nhận" + +msgid "Change your home organization" +msgstr "Thay đổi tổ chức nước nhà của bạn" + +msgid "Choose home organization" +msgstr "Chọn tổ chức nước nhà" + +msgid "Choose your home organization" +msgstr "Chọn tổ chức nước nhà của bạn" + +msgid "Common name" +msgstr "Tên thường gọi" + +msgid "Completed" +msgstr "Đã hoàn thành" + +msgid "Configuration check" +msgstr "Kiểm tra cấu hình" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 +msgid "Configuration error" +msgstr "Lỗi cấu hình" + +msgid "Contact information:" +msgstr "Thông tin liên lạc:" + +msgid "Converted metadata" +msgstr "Siêu dữ liệu đã chuyển đổi" + +msgid "Copy to clipboard" +msgstr "Sao chép vào bộ nhớ tạm thời" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 +msgid "Could not create authentication response" +msgstr "Không thể tạo phản hồi xác thực" + +msgid "Date of birth" +msgstr "Ngày sinh" + +msgid "Debug information" +msgstr "Thông tin gỡ lỗi" + +msgid "Debug information to be used by your support staff" +msgstr "Thông tin gỡ lỗi được nhân viên hỗ trợ của bạn sử dụng" + +msgid "Display name" +msgstr "Tên hiển thị" + +msgid "Distinguished name (DN) of person's home organization" +msgstr "Distinguished name (DN) of person's home organization" + +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Distinguished name (DN) of person's primary Organizational Unit" + +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Distinguished name (DN) of the person's home organizational unit" + +msgid "Do you want to logout from all the services above?" +msgstr "Bạn có muốn đăng xuất khỏi tất cả các dịch vụ trên không?" + +msgid "Domain component (DC)" +msgstr "Domain component(DC)" + +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "Tải xuống chứng chỉ X509 dưới dạng tệp được mã hóa PEM." + +msgid "E-mail address:" +msgstr "Địa chỉ email:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Không tìm thấy người dùng nào có tên người dùng đã cho hoặc mật khẩu bạn cung cấp không đúng. Vui lòng kiểm tra tên người dùng và thử lại." + +msgid "Enter your username and password" +msgstr "Nhập tên người dùng và mật khẩu của bạn" + +msgid "Entitlement regarding the service" +msgstr "Quyền liên quan đến dịch vụ" + +msgid "Error" +msgstr "Lỗi" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Lỗi khi tạo yêu cầu" + +msgid "Error in this metadata entry" +msgstr "Lỗi trong mục nhập siêu dữ liệu này" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Lỗi khi tải siêu dữ liệu" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Error processing request from Service Provider" +msgstr "Lỗi khi xử lý yêu cầu từ Nhà cung cấp dịch vụ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "Lỗi xử lý phản hồi từ Nhà cung cấp danh tính" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Lỗi khi xử lý Yêu cầu Đăng xuất" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 +msgid "Error received from Identity Provider" +msgstr "Lỗi nhận được từ Nhà cung cấp danh tính" + +msgid "Error report sent" +msgstr "Đã gửi báo cáo lỗi" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Lỗi khi kết nối với máy chủ CAS." + +msgid "Explain what you did when this error occurred..." +msgstr "Giải thích bạn đã làm gì khi lỗi này xảy ra..." + +msgid "Fax number" +msgstr "Số fax" + +msgid "Format" +msgstr "Định dạng" + +msgid "Given name" +msgstr "Tên gọi" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Quay lại trang cài đặt SimpleSAMLphp" + +msgid "Go back to the file list" +msgstr "Quay lại danh sách tập tin" + +msgid "Hello, Untranslated World!" +msgstr "Xin chào Thế giới chưa dịch!" + +msgid "Help desk homepage" +msgstr "Trang chủ bộ phận trợ giúp" + +msgid "Help! I don't remember my password." +msgstr "Trợ giúp! Tôi không nhớ mật khẩu của mình." + +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "Đây là siêu dữ liệu mà SimpleSAMLphp đã tạo cho bạn. Bạn có thể gửi tài liệu siêu dữ liệu này cho các đối tác đáng tin cậy để thiết lập liên kết đáng tin cậy." + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Xin chào, đây là trang trạng thái của SimpleSAMLphp. Tại đây, bạn có thể xem phiên của mình đã hết thời gian chưa, thời gian hết thời gian kéo dài bao lâu và tất cả các thuộc tính được đính kèm vào phiên của bạn." + +msgid "Home organization domain name" +msgstr "Tên miền tổ chức nước nhà" + +msgid "Home postal address" +msgstr "Địa chỉ bưu chính nước nhà" + +msgid "Home telephone" +msgstr "Điện thoại nhà riêng" + +msgid "How to get help" +msgstr "Làm thế nào để nhận được sự giúp đỡ" + +msgid "Identity assurance profile" +msgstr "Hồ sơ đảm bảo danh tính" + +msgid "Identity number assigned by public authorities" +msgstr "Số định danh do cơ quan nhà nước cấp" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Nếu bạn báo cáo lỗi này, vui lòng cũng báo cáo số theo dõi này để có thể xác định vị trí phiên của bạn trong nhật ký mà quản trị viên hệ thống có thể xem:" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Ở định dạng XML siêu dữ liệu SAML 2.0:" + +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "Ở định dạng tệp phẳng SimpleSAMLphp - sử dụng định dạng này nếu bạn đang sử dụng thực thể SimpleSAMLphp ở phía bên kia:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Tên đăng nhập và mật khẩu không chính xác" + +msgid "Incorrect username or password." +msgstr "Tên người dùng hoặc mật khẩu không đúng." + +msgid "Information about your current session" +msgstr "Thông tin về phiên truy cập hiện tại của bạn" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Giấy chứng nhận không hợp lệ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" + +msgid "JPEG Photo" +msgstr "Ảnh JPEG" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Lỗi LDAP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP là cơ sở dữ liệu người dùng và khi bạn thử đăng nhập, chúng tôi cần liên hệ với cơ sở dữ liệu LDAP. Đã xảy ra lỗi khi chúng tôi thử lần này." + +msgid "Labeled URI" +msgstr "URI được gắn nhãn" + +msgid "Language" +msgstr "Ngôn ngữ" + +msgid "Legal name" +msgstr "Tên hợp pháp" + +msgid "Local identity number" +msgstr "Số định danh địa phương" + +msgid "Locality" +msgstr "Địa phương" + +msgid "Logged out" +msgstr "Đã đăng xuất" + +msgid "Logging out of the following services:" +msgstr "Đăng xuất khỏi các dịch vụ sau:" + +msgid "Logging out..." +msgstr "Đang đăng xuất..." + +msgid "Login" +msgstr "Đăng nhập" + +msgid "Login at" +msgstr "Đăng nhập tại" + +msgid "Logout" +msgstr "Đăng xuất" + +msgid "Logout failed" +msgstr "Đăng xuất không thành công" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Thông tin đăng xuất bị mất" + +msgid "Mail" +msgstr "Thư" + +msgid "Manager" +msgstr "Người quản lý" + +msgid "Message" +msgstr "Tin nhắn" + +msgid "Metadata" +msgstr "Siêu dữ liệu" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Không tìm thấy siêu dữ liệu" + +msgid "Metadata overview" +msgstr "Tổng quan về siêu dữ liệu" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "Phương pháp không được phép" + +msgid "Mobile" +msgstr "Di động" + +msgid "Next" +msgstr "Tiếp" + +msgid "Nickname" +msgstr "Biệt danh" + +msgid "No" +msgstr "Không" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Không có RelayState" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Không có tin nhắn SAML nào được cung cấp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "Không có yêu cầu SAML nào được cung cấp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Không có phản hồi SAML nào được cung cấp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Không truy cập" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Không có chứng chỉ" + +msgid "No errors found." +msgstr "Không tìm thấy lỗi." + +msgid "No identity providers found. Cannot continue." +msgstr "Không tìm thấy nhà cung cấp danh tính. Không thể tiếp tục." + +msgid "No, cancel" +msgstr "Không, hủy bỏ" + +msgid "No, only %SP%" +msgstr "Không, chỉ có %SP%" + +msgid "Notices" +msgstr "Thông báo" + +msgid "On hold" +msgstr "Tạm giữ" + +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Một hoặc nhiều dịch vụ bạn đã đăng nhập không hỗ trợ đăng xuất . Để đảm bảo rằng tất cả các phiên của bạn đã được đóng, bạn nên đóng trình duyệt web của mình ." + +msgid "Optional fields" +msgstr "Các trường tùy chọn" + +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Bạn có thể nhập địa chỉ email của mình để người quản trị có thể liên hệ với bạn nếu có thêm câu hỏi về vấn đề của bạn:" + +msgid "Options missing from config file" +msgstr "Tùy chọn bị thiếu trong tệp cấu hình" + +msgid "Organization" +msgstr "Tổ chức" + +msgid "Organization name" +msgstr "Tên tổ chức" + +msgid "Organization's legal name" +msgstr "Tên hợp pháp của tổ chức" + +msgid "Organizational homepage" +msgstr "Trang chủ của tổ chức" + +msgid "Organizational number" +msgstr "Số tổ chức" + +msgid "Organizational unit" +msgstr "Đơn vị tổ chức" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Halaman tidak ditemukan" + +msgid "Parse" +msgstr "Phân tích" + +msgid "Password" +msgstr "Mật khẩu" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Mật khẩu chưa được thiết lập" + +msgid "Persistent pseudonymous ID" +msgstr "Persistent pseudonymous ID" + +msgid "Person's principal name at home organization" +msgstr "Tên chính của người đó tại tổ chức nhà" + +msgid "Please select the identity provider where you want to authenticate:" +msgstr "Vui lòng chọn nhà cung cấp danh tính mà bạn muốn xác thực:" + +msgid "Post office box" +msgstr "Hộp thư bưu điện" + +msgid "Postal address" +msgstr "Địa chỉ bưu chính" + +msgid "Postal code" +msgstr "Mã bưu điện" + +msgid "Preferred language" +msgstr "Ngôn ngữ ưa thích" + +msgid "Primary affiliation" +msgstr "Liên kết chính" + +msgid "Private information elements" +msgstr "Các yếu tố thông tin riêng tư" + +msgid "Remember" +msgstr "Ghi Nhớ" + +msgid "Remember my choice" +msgstr "Nhớ sự lựa chọn của tôi" + +msgid "Report errors" +msgstr "Báo cáo lỗi" + +msgid "Required fields" +msgstr "Các trường bắt buộc" + +msgid "Return to service" +msgstr "Trở lại phục vụ" + +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "Identity Provider SAML 2.0 (Hosted)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "Identity Provider SAML 2.0 (Remote)" + +msgid "SAML 2.0 SP Demo Example" +msgstr "Ví dụ về bản demo SAML 2.0 SP" + +msgid "SAML 2.0 SP Metadata" +msgstr "Siêu dữ liệu SAML 2.0 SP" + +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "Nhà cung cấp dịch vụ SAML 2.0 (Đã lưu trữ)" + +msgid "SAML Subject" +msgstr "Chủ đề SAML" + +msgid "Select" +msgstr "Chọn" + +msgid "Select configuration file to check:" +msgstr "Chọn tệp cấu hình để kiểm tra:" + +msgid "Select your identity provider" +msgstr "Chọn nhà cung cấp danh tính của bạn" + +msgid "Send e-mail to help desk" +msgstr "Gửi email đến bộ phận trợ giúp" + +msgid "Send error report" +msgstr "Gửi báo cáo lỗi" + +msgid "Sending message" +msgstr "Gửi tin nhắn" + +msgid "Service Provider" +msgstr "Nhà cung cấp dịch vụ" + +msgid "Session size: %SIZE%" +msgstr "Kích thước phiên: %SIZE%" + +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metadata" + +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Identity Provider Shib 1.3 (Hosted)" + +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Identity Provider Shib 1.3 (Remote)" + +msgid "Shib 1.3 SP Metadata" +msgstr "Siêu dữ liệu Shib 1.3 SP" + +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Service Provider Shib 1.3 (Hosted)" + +msgid "Shib 1.3 Service Provider (Remote)" +msgstr "Service Provider Shib 1.3 (Remote)" + +msgid "Shibboleth demo" +msgstr "Bản demo Shibboleth" + +msgid "SimpleSAMLphp Diagnostics" +msgstr "Chẩn đoán SimpleSAMLphp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "Có vẻ như SimpleSAMLphp bị cấu hình sai." + +msgid "SimpleSAMLphp error" +msgstr "Lỗi SimpleSAMLphp" + +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "Vì trình duyệt của bạn không hỗ trợ Javascript, bạn phải nhấn nút bên dưới để tiếp tục." + +msgid "Some error occurred" +msgstr "Đã xảy ra lỗi" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Thông tin trạng thái bị mất" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Thông tin trạng thái bị mất và không có cách nào để khởi động lại yêu cầu" + +msgid "Street" +msgstr "Đường" + +msgid "Submit message" +msgstr "Gửi tin nhắn" + +msgid "Superfluous options in config file" +msgstr "Các tùy chọn thừa trong tệp cấu hình" + +msgid "Surname" +msgstr "Tên đệm" + +msgid "Telephone number" +msgstr "Số điện thoại" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Nhà cung cấp danh tính đã trả lời với lỗi. (Mã trạng thái trong Phản hồi SAML không thành công)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Xác thực đã bị hủy bỏ bởi người dùng" + +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Thông tin gỡ lỗi bên dưới có thể hữu ích cho người quản trị/bộ phận trợ giúp:" + +msgid "The error report has been sent to the administrators." +msgstr "Báo cáo lỗi đã được gửi tới người quản trị." + +msgid "The following fields was not recognized" +msgstr "Các trường sau đây không được công nhận" + +msgid "The following optional fields was not found" +msgstr "Các trường tùy chọn sau đây không được tìm thấy" + +msgid "The following required fields was not found" +msgstr "Các trường bắt buộc sau đây không được tìm thấy" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Không tìm thấy trang. URL là: %URL%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Không tìm thấy trang. Lý do là: %REASON% URL là: %URL%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Thông tin về thao tác đăng xuất hiện tại đã bị mất. Bạn nên quay lại dịch vụ mà bạn đang cố gắng đăng xuất và thử đăng xuất lại. Lỗi này có thể do thông tin đăng xuất hết hạn. Thông tin đăng xuất được lưu trữ trong một khoảng thời gian giới hạn - thường là một số giờ. Khoảng thời gian này dài hơn bất kỳ thao tác đăng xuất thông thường nào, vì vậy lỗi này có thể chỉ ra một số lỗi khác với cấu hình. Nếu sự cố vẫn tiếp diễn, hãy liên hệ với nhà cung cấp dịch vụ của bạn." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Người khởi tạo yêu cầu này không cung cấp tham số RelayState cho biết bước tiếp theo cần thực hiện là gì." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Các thông số được gửi đến dịch vụ không theo đúng thông số kỹ thuật." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "Mật khẩu trong cấu hình (auth.adminpassword) không phải là giá trị băm. Chi tiết đầy đủ về cách khắc phục lỗi này được cung cấp tại https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Mật khẩu trong cấu hình (auth.adminpassword) không thay đổi so với giá trị mặc định. Vui lòng chỉnh sửa tệp cấu hình." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Có lỗi trong yêu cầu đến trang này. Lý do là: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Có một số cấu hình sai trong cài đặt SimpleSAMLphp của bạn. Nếu bạn là quản trị viên của dịch vụ này, bạn nên đảm bảo cấu hình siêu dữ liệu của mình được thiết lập đúng." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Nhà cung cấp danh tính này đã nhận được Yêu cầu xác thực từ Nhà cung cấp dịch vụ nhưng đã xảy ra lỗi khi cố gắng xử lý yêu cầu." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Điểm cuối này không được bật. Kiểm tra tùy chọn bật trong cấu hình SimpleSAMLphp của bạn." + +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Lỗi này có thể là do một số hành vi không mong muốn hoặc do cấu hình sai SimpleSAMLphp. Liên hệ với quản trị viên của dịch vụ đăng nhập này và gửi cho họ thông báo lỗi ở trên." + +msgid "Title" +msgstr "Tiêu đề" + +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "Để xem thông tin chi tiết về một thực thể SAML, hãy nhấp vào tiêu đề thực thể SAML." + +msgid "Tracking number" +msgstr "Mã vận đơn" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Không thể định vị siêu dữ liệu cho %ENTITYID%" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Không thể đăng xuất khỏi một hoặc nhiều dịch vụ. Để đảm bảo rằng tất cả các phiên của bạn đã được đóng, bạn nên đóng trình duyệt web của mình ." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Ngoại lệ chưa được xử lý" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Giấy chứng nhận không rõ" + +msgid "User ID" +msgstr "ID người dùng" + +msgid "User's password hash" +msgstr "Băm mật khẩu của người dùng" + +msgid "Username" +msgstr "Tên đăng nhập" + +msgid "WS-Fed SP Demo Example" +msgstr "Ví dụ về bản demo WS-Fed SP" + +msgid "WS-Federation Identity Provider (Remote)" +msgstr "Identity Provider WS-Federation (Remote)" + +msgid "WS-Federation Service Provider (Hosted)" +msgstr "Servide Provider WS-Federation (Hosted)" + +msgid "Warning" +msgstr "Cảnh báo" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Chúng tôi không chấp nhận phản hồi được gửi từ Nhà cung cấp danh tính." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Khi nhà cung cấp danh tính này cố gắng tạo phản hồi xác thực, đã xảy ra lỗi." + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Nếu không có tên người dùng và mật khẩu, bạn không thể xác thực để truy cập vào dịch vụ. Có thể có người có thể giúp bạn. Hãy tham khảo bộ phận trợ giúp tại tổ chức của bạn!" + +msgid "World" +msgstr "Thế Giới" + +msgid "XML metadata" +msgstr "Siêu dữ liệu XML" + +msgid "Yes, all services" +msgstr "Có, tất cả các dịch vụ" + +msgid "Yes, continue" +msgstr "Vâng, tiếp tục" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "Bạn đã truy cập vào giao diện Dịch vụ giải quyết hiện vật nhưng không cung cấp thông báo SAML ArtifactResolve. Xin lưu ý rằng điểm cuối này không có ý định được truy cập trực tiếp." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Bạn đã truy cập vào giao diện Assertion Consumer Service nhưng không cung cấp Phản hồi xác thực SAML. Xin lưu ý rằng điểm cuối này không có ý định được truy cập trực tiếp." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "Bạn đã truy cập vào giao diện Dịch vụ đăng nhập một lần nhưng không cung cấp Yêu cầu xác thực SAML. Xin lưu ý rằng điểm cuối này không được phép truy cập trực tiếp." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Bạn đã truy cập giao diện SingleLogoutService nhưng không cung cấp SAML LogoutRequest hoặc LogoutResponse. Xin lưu ý rằng điểm cuối này không có ý định được truy cập trực tiếp." + +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "Bạn sắp gửi tin nhắn. Nhấn nút gửi tin nhắn để tiếp tục." + +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "Bạn sắp gửi tin nhắn. Nhấp vào liên kết gửi tin nhắn để tiếp tục." + +msgid "You are also logged in on these services:" +msgstr "Bạn cũng đã đăng nhập vào các dịch vụ sau:" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Bây giờ bạn đang truy cập vào hệ thống tiền sản xuất. Thiết lập xác thực này chỉ dành cho mục đích thử nghiệm và xác minh tiền sản xuất. Nếu ai đó gửi cho bạn một liên kết chỉ dẫn bạn đến đây và bạn không phải là người thử nghiệm thì có thể bạn đã nhận được liên kết sai và không nên ở đây ." + +msgid "You are now successfully logged out from %SP%." +msgstr "Bây giờ bạn đã đăng xuất thành công khỏi %SP%." + +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "Bạn có thể lấy siêu dữ liệu xml trên một URL chuyên dụng :" + +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "Bạn có thể tắt chế độ gỡ lỗi trong tệp cấu hình SimpleSAMLphp toàn cục config/config.php ." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Bạn không xuất trình được giấy chứng nhận hợp lệ." + +msgid "You have been logged out." +msgstr "Bạn đã đăng xuất." + +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Bạn đã chọn %HOMEORG% làm tổ chức nhà của bạn. Nếu sai, bạn có thể chọn tổ chức khác." + +msgid "You have previously chosen to authenticate at" +msgstr "Trước đó bạn đã chọn xác thực tại" + +msgid "You have successfully logged out from all services listed above." +msgstr "Bạn đã đăng xuất thành công khỏi tất cả các dịch vụ được liệt kê ở trên." + +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Bạn đã gửi gì đó đến trang đăng nhập, nhưng vì lý do nào đó, mật khẩu không được gửi. Vui lòng thử lại." + +msgid "Your attributes" +msgstr "Thuộc tính của bạn" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "Không thể truy xuất dữ liệu phiên của bạn ngay bây giờ do sự cố kỹ thuật. Vui lòng thử lại sau vài phút." + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Phiên của bạn có hiệu lực trong %remaining% giây kể từ bây giờ." + +msgid "[Preferred choice]" +msgstr "[Lựa chọn ưu tiên]" + +msgid "not set" +msgstr "không được thiết lập" diff --git a/locales/xh/LC_MESSAGES/messages.po b/locales/xh/LC_MESSAGES/messages.po index e7ce52ad96..fb5b13c0aa 100644 --- a/locales/xh/LC_MESSAGES/messages.po +++ b/locales/xh/LC_MESSAGES/messages.po @@ -1,470 +1,546 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: xh\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Akukho mpendulo ye-SAML inikelweyo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Akukho myalezo we-SAML unikelweyo" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Inkonzo icele ukuba uzingqinisise. Nceda ungenise igama lomsebenzisi nephaswedi yakho kwifomu ngezantsi." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Kwenzeke impazamo xa kuzanywa ukuyilwa isicelo se-SAML." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Kwenzeke impazamo ngoxa kuproseswa isiCelo Sokuphuma." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Isinxaxhi esingasingathwanga silahliwe." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Ungqinisiso luyekiwe" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Impazamo yongqinisiso kumthombo %AUTHSOURCE%. Isizathu sesi: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Ungqinisiso lusilele: isatifikethi esithunyelwe yibhrawuza yakho asisebenzi okanye asikwazi ukufundwa" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Ungqinisiso lusilele: isatifikerthi esithunyelwe yibhrawuza yakho asaziwa" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Ungqinisiso lusilele: ibhrawuza yakho ayithumelanga nasiphi na isatifikethi" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Impazamo yomthombo wongqinisiso" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Kufunyenwe isicelo esibi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Isicelo esibi kwinkonzo yofumaniso" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "Impazamo ye-CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "Ayikwazi ukubuyisela ingcombolo yeseshoni" + +msgid "Choose home organization" +msgstr "Khetha umbutho wekhaya" + +msgid "Choose your home organization" +msgstr "Khetha umbutho wakho wekhaya" + +msgid "Completed" +msgstr "Igqityiwe" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Impazamo yolungiselelo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Impazamo nokuyila isicelo" +msgid "Contact information:" +msgstr "Inkcazelo yoqhagamshelwano:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Isicelo esibi kwinkonzo yofumaniso" +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Ayikwazanga ukuyila impendulo yongqinisiso" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Isatifikethi esingasebenziyo" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Impazamo ye-LDAP" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Inkcazelo yokuphuma ilahlekile" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Impazamo iprosesa iSicelo Sokuphuma" +msgid "Debug information" +msgstr "Inkcazelo yokulungisa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 -msgid "Cannot retrieve session data" -msgstr "Ayikwazi ukubuyisela ingcombolo yeseshoni" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Impazamo ilayisha imetadata" +msgid "Do you want to logout from all the services above?" +msgstr "Ngaba ufuna ukuphuma kuzo zonke iinkonzo ezingasentla?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Imetadata ayifunyenwanga" +msgid "E-mail address:" +msgstr "Idilesi ye-imeyile:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Akukho fikelelo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Kusenokwenzeka akukho msebenzisi unegama lomsebenzisi elinikelweyo ofunyenweyo, okanye iphaswedi oyinikeleyo ayichanekanga. Nceda ujonge igama lomsebenzisi uzame kwakhona." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Akukho satifikethi" +msgid "Enter your username and password" +msgstr "Ngenisa igama lomsebenzisi nephaswedi yakho" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Akukho RelayState" +msgid "Error" +msgstr "Impazamo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Inkcazelo yobume ilahlekile" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Impazamo nokuyila isicelo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Ikhasi alifunyenwanga" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Impazamo ilayisha imetadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Iphaswedi ayisetwanga" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Error processing request from Service Provider" +msgstr "Impazamo iprosesa isicelo esisuka kuMboneleli Wenkonzo" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 msgid "Error processing response from Identity Provider" msgstr "Impazamo iprosesa impendulo esuka kuMboneleli Wesazisi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 -msgid "Error processing request from Service Provider" -msgstr "Impazamo iprosesa isicelo esisuka kuMboneleli Wenkonzo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Impazamo iprosesa iSicelo Sokuphuma" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Impazamo efunyenwe kuMboneleli Wesazisi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 -msgid "No SAML request provided" -msgstr "Akukho sicelo se-SAML sinikelweyo" +msgid "Error report sent" +msgstr "Ingxelo yempazamo ithunyelwe" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Isinxaxhi esingasingathwanga" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Impazamo xa kunxibelelwana neseva ye-CAS." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Isatifikethi esingaziwayo" +msgid "Explain what you did when this error occurred..." +msgstr "Cacisa ukuba wenze ntoni xa bekusenzeka le mpazamo..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Ungqinisiso luyekiwe" +msgid "Format" +msgstr "Ufomatho" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Igama lomsebenzisi okanye iphaswedi engachanekanga" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Buyela emva kwikhasi lofakelo le-SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Ufikelele i-intafeyisi ye-Assertion Consumer Service, kodwa awukhange unikele iMpendulo Yongqinisiso ye-SAML. Nceda uqaphele ukuba le ndawo yokuphela ayilungiselelwanga ukuba ifikelelwe ngokuthe ngqo." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 -msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." -msgstr "Ufikelele i-intafeyisi ye-Artifact Resolution Service, kodwa awukhange unikrele umyalezo we-SAML ArtifactResolve. Nceda uqaphele ukuba le ndawo yokuphela ayilungiselelwanga ukuba ifikelelwe ngokuthe ngqo." +msgid "Help desk homepage" +msgstr "Ikhasi lekhaya ledesika yoncedo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Impazamo yongqinisiso kumthombo %AUTHSOURCE%. Isizathu sesi: %REASON%" +msgid "Help! I don't remember my password." +msgstr "Ncedani! Andiyikhumbuli iphaswedi yam." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Kukho impazamo kwisicelo kweli khasi. Isizathu sesi: %REASON%" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Molo, eli likhasi lobume be-SimpleSAMLphp. Apha ungabona ukuba ngaba iseshoni yakho iphelelwe lixesha, iza kuhlala ixesha elide kangakanani ngaphambi kokuba iphelelwe nazo zonke iimpawu ezincanyathiselweyo kwiseshoni yakho." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Impazamo xa kunxibelelwana neseva ye-CAS." +msgid "How to get help" +msgstr "Indlela yokufumana uncedo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "I-SimpleSAMLphp ibonakala ingalungiselelwanga kakuhle." +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Kwenzeke impazamo xa kuzanywa ukuyilwa isicelo se-SAML." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Igama lomsebenzisi okanye iphaswedi engachanekanga" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Iipharamitha ezithunyelwe kwinkonzo yofumaniso azihambelani neenkcukacha." +msgid "Incorrect username or password." +msgstr "Igama lomsebenzisi okanye iphaswedi engachanekanga." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Xa lo mboneleli wesazisi ezama ukuyila impendulo yongqinisiso, kwenzeke impazamo." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Ungqinisiso lusilele: isatifikethi esithunyelwe yibhrawuza yakho asisebenzi okanye asikwazi ukufundwa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Isatifikethi esingasebenziyo" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Impazamo ye-LDAP" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." msgstr "I-LDAP ngumvimba wengcombolo yomsebenzisi, yaye xa uzame ukungena, kufuneka siqhagamshele uvimba wengcombolo we-LDAP. Kwenzeke impazamo xa besiyizama." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Inkcazelo malunga nomsebenzi wokuphuma wangoku ilahlekile. Ufanele ubuyele kwinkonzo ubuzama ukuphuma kuyo uzame ukuphuma kwakhona. Le mpazamo inokubangelwa kukuphelelwa kwenkcazelo yokuphuma. Inkcazelo yokuphuma igcinwa ixesha elithile - ngokuqhelekileyo iiyure eziliqela. Oku kuthatha ixesha elide kunawo nawuphi na umsebenzi wokuphuma ofanele ulithathe, ngoko le mpazamo isenokubonisa enye impazamo ngolungiselelo. Ukuba ingxaki iyaqhubeka, qhagamshela umboneleli wenkonzo wakho." +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Kwenzeke impazamo ngoxa kuproseswa isiCelo Sokuphuma." +msgid "Logged out" +msgstr "Uphumile" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 -msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." -msgstr "Ingcombolo yeseshoni yakho ayikwazi ukubuyiselwa okwangoku ngenxa yeengxaki zobugcisa. Nceda uzame kwakhona kwimizuzu embalwa." +msgid "Logging out of the following services:" +msgstr "Iphuma kwezi nkonzo zilandelayo:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Kukho ulungiselelo olungachanekanga oluthile lofakelo lwakho lwe-SimpleSAMLphp. Ukuba ngaba ungumlawuli wale nkonzo, ufanele uqinisekise ulungiselelo lwakho lweempawu-ngcaciso zefayile lusetwe ngokuchanekileyo." +msgid "Logging out..." +msgstr "Iyaphuma..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Ayikwazi ukufumana iimpawu-ngcaciso zefayile ze-%ENTITYID%" +msgid "Login" +msgstr "Ngena" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Le ndawo yokuphela ayenziwanga yasebenza. Jonga ukhetho lokwenza isebenze kulungiselelo lwakho lwe-SimpleSAMLphp." +msgid "Login at" +msgstr "Ungeno ngo-" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Ungqinisiso lusilele: ibhrawuza yakho ayithumelanga nasiphi na isatifikethi" +msgid "Logout" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Umqalisi wesi sicelo akanikelanga ngepharamitha ye-RelayState apho kufanele kuyiwe khona." +msgid "Logout failed" +msgstr "Ukuphuma kusilele" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Inkcazelo yobume ilahlekile, yaye akukho ndlela yokuqalisa isicelo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Inkcazelo yokuphuma ilahlekile" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Ikhasi elinikelweyo alifunyenwanga. I-URL ngu: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Imetadata ayifunyenwanga" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Ikhasi elinikelweyo alifunyenwanga. Isizathu sesi: %REASON% I-URL ngu: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Iphaswedi ekulungiselelo (auth.adminpassword) ayitshintshwanga ukusuka kwixabiso lesiseko. Nceda uhlele ifayile yolungiselelo." +msgid "Next" +msgstr "Okulandelayo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Awukhange uzise isatifikethi esisebenzayo." +msgid "No" +msgstr "Hayi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Asiyamkelanga impendulo ethunyelwe ukusuka kuMboneleli Wesazisi." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Akukho RelayState" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Lo Mboneleli Wesazisi ufumene Isicelo Songqinisiso esisuka kuMboneleli Wenkonzo, kodwa kwenzeke impazamo xa kuzanywa ukuprosesa isicelo." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Akukho myalezo we-SAML unikelweyo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Umboneleli Wesazisi uphendule ngempazamo. (Ikhowudi yobume kwiMpendulo ye-SAML ayiphumelelanga)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "Akukho sicelo se-SAML sinikelweyo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Ufikelele i-intafeyisi ye-SingleLogoutService, kodwa awukhange unikele i-SAML LogoutRequest okanye i-LogoutResponse. Nceda uqaphele ukuba le ndawo yokuphela ayilungiselelwanga ukuba ifikelelwe ngokuthe ngqo." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Akukho mpendulo ye-SAML inikelweyo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 -msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." -msgstr "Ufikelele i-intafeyisi ye-Single Sign On Service, kodwa awukhange unikele iMpendulo Yongqinisiso ye-SAML. Nceda uqaphele ukuba le ndawo yokuphela ayilungiselelwanga ukuba ifikelelwe ngokuthe ngqo." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Akukho fikelelo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Isinxaxhi esingasingathwanga silahliwe." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Akukho satifikethi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Ungqinisiso lusilele: isatifikerthi esithunyelwe yibhrawuza yakho asaziwa" +msgid "No identity providers found. Cannot continue." +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Ungqinisiso luyekiswe ngumsebenzisi" +msgid "No, cancel" +msgstr "Hayi, rhoxisa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Kusenokwenzeka akukho msebenzisi unegama lomsebenzisi elinikelweyo ofunyenweyo, okanye iphaswedi oyinikeleyo ayichanekanga. Nceda ujonge igama lomsebenzisi uzame kwakhona." +msgid "No, only %SP%" +msgstr "Hayi, kuphela %SP%" -msgid "Format" -msgstr "Ufomatho" +msgid "On hold" +msgstr "Ibanjiwe" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Molo, eli likhasi lobume be-SimpleSAMLphp. Apha ungabona ukuba ngaba iseshoni yakho iphelelwe lixesha, iza kuhlala ixesha elide kangakanani ngaphambi kokuba iphelelwe nazo zonke iimpawu ezincanyathiselweyo kwiseshoni yakho." +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Inkonzo enye okanye ezingakumbi ongeneyo kuzo azikuxhasi ukuphuma. Ukuqinisekisa zonke iiseshoni zakho zivaliwe, ukhuthazwa uvale ibhrawuza yewebhu." -msgid "SAML Subject" -msgstr "Umbandela we-SAML" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Unokhetho lokuthumela idilesi yeimeyile yakho, ukuze abalawuli bakwazi ukukuqhagamshela ukuba banemibuzo engakumbi malunga nomba wakho:" -msgid "not set" -msgstr "ayikasetwa" +msgid "Organization" +msgstr "Umbutho" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Ikhasi alifunyenwanga" + +msgid "Password" +msgstr "Iphaswedi" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Iphaswedi ayisetwanga" msgid "Please select the identity provider where you want to authenticate:" msgstr "Nceda ukhethe umboneleli wesazisi apho ufuna ukungqinisisa:" +msgid "Remember" +msgstr "Khumbula" + +msgid "Remember me" +msgstr "Ndikhumbule" + msgid "Remember my choice" msgstr "Khumbula ukhetho lwam" +msgid "Remember my username" +msgstr "Khumbula igama lomsebenzisi lam" + +msgid "Report errors" +msgstr "Chaza iimpazamo" + +msgid "Return to service" +msgstr "Buyela kwinkonzo" + +msgid "SAML 2.0 SP Demo Example" +msgstr "Umzekelo weDemo we-SAML 2.0 SP" + +msgid "SAML Subject" +msgstr "Umbandela we-SAML" + msgid "Select" msgstr "Khetha" msgid "Select your identity provider" msgstr "Khetha umboneleli wesazisi wakho" -msgid "Yes, continue" -msgstr "Ewe, qhubeka" - -msgid "Debug information" -msgstr "Inkcazelo yokulungisa" +msgid "Send e-mail to help desk" +msgstr "Thumela i-imeyile kwidesika yoncedo" -msgid "E-mail address:" -msgstr "Idilesi ye-imeyile:" +msgid "Send error report" +msgstr "Thumela ingxelo yempazamo" -msgid "Explain what you did when this error occurred..." -msgstr "Cacisa ukuba wenze ntoni xa bekusenzeka le mpazamo..." +msgid "Sending message" +msgstr "" -msgid "How to get help" -msgstr "Indlela yokufumana uncedo" +msgid "Service Provider" +msgstr "Umboneleli Wenkonzo" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Unokhetho lokuthumela idilesi yeimeyile yakho, ukuze abalawuli bakwazi ukukuqhagamshela ukuba banemibuzo engakumbi malunga nomba wakho:" +msgid "Session size: %SIZE%" +msgstr "Ubukhulu beseshoni: %SIZE%" -msgid "Report errors" -msgstr "Chaza iimpazamo" +msgid "Shibboleth demo" +msgstr "Idemo ye-Shibboleth" -msgid "Send error report" -msgstr "Thumela ingxelo yempazamo" +msgid "SimpleSAMLphp Diagnostics" +msgstr "Uhlalutyo lwe-SimpleSAMLphp" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Inkcazelo yokulungisa engezantsi isenokuba ibangela umdla kumlawuli / idesika yoncedo:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "I-SimpleSAMLphp ibonakala ingalungiselelwanga kakuhle." -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Le mpazamo kusenokwenzeka ingenxa yendlela yokwenza engalindelekanga okanye ulungiselelo olungachanekanga lwe-SimpleSAMLphp. Qhagamshelana nomlawuli wale nkonzo yokungena, uze umthumele umyalezo wempazamo ongentla." +msgid "SimpleSAMLphp error" +msgstr "Impazamo ye-SimpleSAMLphp" -msgid "Next" -msgstr "Okulandelayo" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Uthumele into kwikhasi lokungena, kodwa ngesizathu esithile iphaswedi ayithunyelwanga. Nceda uzame kwakhona." +msgid "Some error occurred" +msgstr "Kwenzeke impazamo ethile" -msgid "Login" -msgstr "Ngena" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Inkcazelo yobume ilahlekile" -msgid "Shibboleth demo" -msgstr "Idemo ye-Shibboleth" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Inkcazelo yobume ilahlekile, yaye akukho ndlela yokuqalisa isicelo" -msgid "[Preferred choice]" -msgstr "[Ukhetho olukhethwayo]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Umboneleli Wesazisi uphendule ngempazamo. (Ikhowudi yobume kwiMpendulo ye-SAML ayiphumelelanga)" -msgid "Help! I don't remember my password." -msgstr "Ncedani! Andiyikhumbuli iphaswedi yam." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Ungqinisiso luyekiswe ngumsebenzisi" -msgid "Return to service" -msgstr "Buyela kwinkonzo" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Inkcazelo yokulungisa engezantsi isenokuba ibangela umdla kumlawuli / idesika yoncedo:" -msgid "On hold" -msgstr "Ibanjiwe" +msgid "The error report has been sent to the administrators." +msgstr "Ingxelo yempazamo ithunyelwe kubalawuli." -msgid "Yes, all services" -msgstr "Ewe, zonke iinkonzo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Ikhasi elinikelweyo alifunyenwanga. I-URL ngu: %URL%" -msgid "Help desk homepage" -msgstr "Ikhasi lekhaya ledesika yoncedo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Ikhasi elinikelweyo alifunyenwanga. Isizathu sesi: %REASON% I-URL ngu: %URL%" -msgid "Login at" -msgstr "Ungeno ngo-" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Inkcazelo malunga nomsebenzi wokuphuma wangoku ilahlekile. Ufanele ubuyele kwinkonzo ubuzama ukuphuma kuyo uzame ukuphuma kwakhona. Le mpazamo inokubangelwa kukuphelelwa kwenkcazelo yokuphuma. Inkcazelo yokuphuma igcinwa ixesha elithile - ngokuqhelekileyo iiyure eziliqela. Oku kuthatha ixesha elide kunawo nawuphi na umsebenzi wokuphuma ofanele ulithathe, ngoko le mpazamo isenokubonisa enye impazamo ngolungiselelo. Ukuba ingxaki iyaqhubeka, qhagamshela umboneleli wenkonzo wakho." -msgid "Remember" -msgstr "Khumbula" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Umqalisi wesi sicelo akanikelanga ngepharamitha ye-RelayState apho kufanele kuyiwe khona." -msgid "Completed" -msgstr "Igqityiwe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Iipharamitha ezithunyelwe kwinkonzo yofumaniso azihambelani neenkcukacha." -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Inkonzo icele ukuba uzingqinisise. Nceda ungenise igama lomsebenzisi nephaswedi yakho kwifomu ngezantsi." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "No, only %SP%" -msgstr "Hayi, kuphela %SP%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Iphaswedi ekulungiselelo (auth.adminpassword) ayitshintshwanga ukusuka kwixabiso lesiseko. Nceda uhlele ifayile yolungiselelo." -msgid "Username" -msgstr "Igama lomsebenzisi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Kukho impazamo kwisicelo kweli khasi. Isizathu sesi: %REASON%" -msgid "SimpleSAMLphp error" -msgstr "Impazamo ye-SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Kukho ulungiselelo olungachanekanga oluthile lofakelo lwakho lwe-SimpleSAMLphp. Ukuba ngaba ungumlawuli wale nkonzo, ufanele uqinisekise ulungiselelo lwakho lweempawu-ngcaciso zefayile lusetwe ngokuchanekileyo." -msgid "No, cancel" -msgstr "Hayi, rhoxisa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Lo Mboneleli Wesazisi ufumene Isicelo Songqinisiso esisuka kuMboneleli Wenkonzo, kodwa kwenzeke impazamo xa kuzanywa ukuprosesa isicelo." -msgid "SimpleSAMLphp Diagnostics" -msgstr "Uhlalutyo lwe-SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Le ndawo yokuphela ayenziwanga yasebenza. Jonga ukhetho lokwenza isebenze kulungiselelo lwakho lwe-SimpleSAMLphp." -msgid "Contact information:" -msgstr "Inkcazelo yoqhagamshelwano:" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Le mpazamo kusenokwenzeka ingenxa yendlela yokwenza engalindelekanga okanye ulungiselelo olungachanekanga lwe-SimpleSAMLphp. Qhagamshelana nomlawuli wale nkonzo yokungena, uze umthumele umyalezo wempazamo ongentla." -msgid "Error report sent" -msgstr "Ingxelo yempazamo ithunyelwe" +msgid "Tracking number" +msgstr "" -msgid "Remember me" -msgstr "Ndikhumbule" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Ayikwazi ukufumana iimpawu-ngcaciso zefayile ze-%ENTITYID%" -msgid "You have previously chosen to authenticate at" -msgstr "Kwixesha elidlulileyo ukhethe ukungqinisisa ngo-" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Awukwazi ukuphuma kwinkonzo enye okanye ezingakumbi. Ukuqinisekisa zonke iiseshoni zakho zivaliwe, ukhuthazwa uvale ibhrawuza yewebhu." -msgid "Remember my username" -msgstr "Khumbula igama lomsebenzisi lam" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Enter your username and password" -msgstr "Ngenisa igama lomsebenzisi nephaswedi yakho" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Isinxaxhi esingasingathwanga" -msgid "Logging out of the following services:" -msgstr "Iphuma kwezi nkonzo zilandelayo:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Isatifikethi esingaziwayo" -msgid "You have successfully logged out from all services listed above." -msgstr "Uphume ngokuyimpumelelo kuzo zonke iinkonzo ezidweliswe ngasentla." +msgid "Username" +msgstr "Igama lomsebenzisi" -msgid "Incorrect username or password." -msgstr "Igama lomsebenzisi okanye iphaswedi engachanekanga." +msgid "Warning" +msgstr "" -msgid "Error" -msgstr "Impazamo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Asiyamkelanga impendulo ethunyelwe ukusuka kuMboneleli Wesazisi." -msgid "You have been logged out." -msgstr "Uphumile." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Xa lo mboneleli wesazisi ezama ukuyila impendulo yongqinisiso, kwenzeke impazamo." -msgid "Service Provider" -msgstr "Umboneleli Wenkonzo" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Ngaphandle kwegama lomsebenzisi nephaswedi yakho awukwazi ukuzingqinisisa ukuze ufumane ufikelelo kwinkonzo. Kusenokuba ukho umntu onokukunceda. Qhagamshelana nedesika yoncedo kumbutho wakho!" -msgid "SAML 2.0 SP Demo Example" -msgstr "Umzekelo weDemo we-SAML 2.0 SP" +msgid "World" +msgstr "" -msgid "Choose home organization" -msgstr "Khetha umbutho wekhaya" +msgid "Yes, all services" +msgstr "Ewe, zonke iinkonzo" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Inkonzo enye okanye ezingakumbi ongeneyo kuzo azikuxhasi ukuphuma. Ukuqinisekisa zonke iiseshoni zakho zivaliwe, ukhuthazwa uvale ibhrawuza yewebhu." +msgid "Yes, continue" +msgstr "Ewe, qhubeka" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Awukwazi ukuphuma kwinkonzo enye okanye ezingakumbi. Ukuqinisekisa zonke iiseshoni zakho zivaliwe, ukhuthazwa uvale ibhrawuza yewebhu." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ufikelele i-intafeyisi ye-Artifact Resolution Service, kodwa awukhange unikrele umyalezo we-SAML ArtifactResolve. Nceda uqaphele ukuba le ndawo yokuphela ayilungiselelwanga ukuba ifikelelwe ngokuthe ngqo." -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Uye wakhetha u-%HOMEORG% njengombutho wakho wekhaya. Ukuba oku akuchanekanga usenokukhetha omnye." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ufikelele i-intafeyisi ye-Assertion Consumer Service, kodwa awukhange unikele iMpendulo Yongqinisiso ye-SAML. Nceda uqaphele ukuba le ndawo yokuphela ayilungiselelwanga ukuba ifikelelwe ngokuthe ngqo." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Buyela emva kwikhasi lofakelo le-SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ufikelele i-intafeyisi ye-Single Sign On Service, kodwa awukhange unikele iMpendulo Yongqinisiso ye-SAML. Nceda uqaphele ukuba le ndawo yokuphela ayilungiselelwanga ukuba ifikelelwe ngokuthe ngqo." -msgid "Session size: %SIZE%" -msgstr "Ubukhulu beseshoni: %SIZE%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ufikelele i-intafeyisi ye-SingleLogoutService, kodwa awukhange unikele i-SAML LogoutRequest okanye i-LogoutResponse. Nceda uqaphele ukuba le ndawo yokuphela ayilungiselelwanga ukuba ifikelelwe ngokuthe ngqo." msgid "You are also logged in on these services:" msgstr "Kananjalo ungene kwezi nkonzo:" -msgid "Do you want to logout from all the services above?" -msgstr "Ngaba ufuna ukuphuma kuzo zonke iinkonzo ezingasentla?" - msgid "You are now successfully logged out from %SP%." msgstr "Ngoku uphume ngokuyimpumelelo kwi-%SP%." -msgid "Organization" -msgstr "Umbutho" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Awukhange uzise isatifikethi esisebenzayo." -msgid "Some error occurred" -msgstr "Kwenzeke impazamo ethile" +msgid "You have been logged out." +msgstr "Uphumile." -msgid "The error report has been sent to the administrators." -msgstr "Ingxelo yempazamo ithunyelwe kubalawuli." +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Uye wakhetha u-%HOMEORG% njengombutho wakho wekhaya. Ukuba oku akuchanekanga usenokukhetha omnye." -msgid "Send e-mail to help desk" -msgstr "Thumela i-imeyile kwidesika yoncedo" +msgid "You have previously chosen to authenticate at" +msgstr "Kwixesha elidlulileyo ukhethe ukungqinisisa ngo-" -msgid "Logged out" -msgstr "Uphumile" +msgid "You have successfully logged out from all services listed above." +msgstr "Uphume ngokuyimpumelelo kuzo zonke iinkonzo ezidweliswe ngasentla." -msgid "Logout failed" -msgstr "Ukuphuma kusilele" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Uthumele into kwikhasi lokungena, kodwa ngesizathu esithile iphaswedi ayithunyelwanga. Nceda uzame kwakhona." -msgid "Password" -msgstr "Iphaswedi" +msgid "Your attributes" +msgstr "" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Ngaphandle kwegama lomsebenzisi nephaswedi yakho awukwazi ukuzingqinisisa ukuze ufumane ufikelelo kwinkonzo. Kusenokuba ukho umntu onokukunceda. Qhagamshelana nedesika yoncedo kumbutho wakho!" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "Ingcombolo yeseshoni yakho ayikwazi ukubuyiselwa okwangoku ngenxa yeengxaki zobugcisa. Nceda uzame kwakhona kwimizuzu embalwa." -msgid "No" -msgstr "Hayi" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" -msgid "Logging out..." -msgstr "Iyaphuma..." +msgid "[Preferred choice]" +msgstr "[Ukhetho olukhethwayo]" -msgid "Choose your home organization" -msgstr "Khetha umbutho wakho wekhaya" +msgid "not set" +msgstr "ayikasetwa" diff --git a/locales/zh/LC_MESSAGES/messages.po b/locales/zh/LC_MESSAGES/messages.po index 6b2a2435f1..56207b7e1c 100644 --- a/locales/zh/LC_MESSAGES/messages.po +++ b/locales/zh/LC_MESSAGES/messages.po @@ -1,723 +1,813 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: zh\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "没有提供SAML应答" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "没有提供SAML消息" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "一个服务需要你的认证,请在下面输入你的用户名和密码" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "联络方式" + +msgid "Affiliation at home organization" +msgstr "家庭联络地址" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "在创建SAML请求中发生了一个错误" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "试图处理退出请求时发生了一个错误" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "抛出一个未处理的异常" + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "当你处在调试模式中时,你将看到你正在发送的消息的内容" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "认证中止" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "认证源%AUTHSOURCE%存在错误, 原因: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "认证失败:你的浏览器发送的证书无效或者不能读取" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "认证失败:你的浏览器发送的是未知的证书" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "认证失败,你的浏览器没有发送任何证书" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "认证源错误" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "收到了错误的请求" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "错误的搜寻服务请求" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS错误" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "证书" + +msgid "Change your home organization" +msgstr "改变你的家庭组织" + +msgid "Choose home organization" +msgstr "选择你的家庭组织" + +msgid "Choose your home organization" +msgstr "选择你的组织" + +msgid "Common name" +msgstr "常用名字" + +msgid "Completed" +msgstr "完成" + +msgid "Configuration check" +msgstr "配置检查" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "配置错误" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "创建请求出错" +msgid "Contact information:" +msgstr "联系方式" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "错误的搜寻服务请求" +msgid "Converted metadata" +msgstr "转换过的元信息" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "无法创建认证应答" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "无效的证书" +msgid "Date of birth" +msgstr "生日" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP错误" +msgid "Debug information" +msgstr "调试信息" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "丢失了退出消息" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "处理退出请求时发生错误" +msgid "Display name" +msgstr "显示名称" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "载入元信息时发生错误" +msgid "Distinguished name (DN) of person's home organization" +msgstr "人的家庭组织的分辨名称(DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "没有找到元信息" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "人的主要组织单位的辨别名称(DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "禁止访问" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "人的家组织单位的辨别名称(DN)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "无证书" +msgid "Do you want to logout from all the services above?" +msgstr "你想同时从上面的这些服务中退出吗?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "无依赖状态" +msgid "Domain component (DC)" +msgstr "Opened the web browser with tabs saved from the previous session.域组件(DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "状态信息丢失" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "下载X509证书作为PEM编码的文件" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "页面没有找到" +msgid "E-mail address:" +msgstr "E-mail地址" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "没有设置密码" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "如果不是给定的用户名没有找到就是给定的密码错误,请再次检查用户名和密码" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "处理来自身份提供者的应答时出错" +msgid "Enter your username and password" +msgstr "输入你的用户名和密码" + +msgid "Entitlement regarding the service" +msgstr "关于服务的权利" + +msgid "Error" +msgstr "错误" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "创建请求出错" + +msgid "Error in this metadata entry" +msgstr "该元信息实体存在错误" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "载入元信息时发生错误" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "处理来自服务提供者的请求时出错" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "处理来自身份提供者的应答时出错" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "处理退出请求时发生错误" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "从身份提供者收到一个错误" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "未处理的异常" +msgid "Error report sent" +msgstr "发送错误报告" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "未知的证书" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "在和CAS服务器的通讯中发生了错误" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "认证中止" +msgid "Explain what you did when this error occurred..." +msgstr "说明一下,你正在做什么的时候发生了这个错误" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "不正确的用户名或密码" +msgid "Fax number" +msgstr "传真号码" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "你访问了Assertion Consumer Service接口,但是并没有提供一个SAML认证应答" +msgid "Format" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "认证源%AUTHSOURCE%存在错误, 原因: %REASON%" +msgid "Given name" +msgstr "名" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "请求该页的请求存在错误,原因:%REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "返回SimpleSAMLphp安装页面" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "在和CAS服务器的通讯中发生了错误" +msgid "Go back to the file list" +msgstr "返回至文件列表" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp出现配置错误" +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "在创建SAML请求中发生了一个错误" +msgid "Help desk homepage" +msgstr "服务台的主页" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "发送给搜寻服务的参数不符合规范" +msgid "Help! I don't remember my password." +msgstr "帮助!我忘记我的密码了!" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "在这个身份提供者创建认证应答的时候发生了一个错误" +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "这里是SimpleSAMLphp为你生成的元信息,你应该发送这个元信息文档给你的信任的合作伙伴以建立信任的联盟" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "认证失败:你的浏览器发送的证书无效或者不能读取" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "嗨,这是SimpleSAMLphp状态页。这里你可以看到,如果您的会话超时,它持续多久,直到超时和连接到您的会话的所有属性。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP是一个用户数据库,当你试图登录时,我们需要连接到LDAP数据库,然而这次我们试图链接时发生了一个错误" +msgid "Home organization domain name" +msgstr "首页组织的域名" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "关于当前退出操作的相关信息丢失了,你应该返回服务中,重新尝试退出,这个错误可能是退出信息超时引起的。退出消息在有限的时间内存储,通常是几个小时,这比任何常规的退出时间所需的时间要长多了,所以这种错误可能是配置错误,如果问题依旧存在,联系你的服务提供商" +msgid "Home postal address" +msgstr "家庭邮政地址" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "试图处理退出请求时发生了一个错误" +msgid "Home telephone" +msgstr "家庭电话" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "你的SimpleSAMLphp配置错误,如果你是该服务的管理员,那么请确认你的配置是正确的" +msgid "How to get help" +msgstr "如何获取帮助" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "无法为%ENTITYID%定位元信息" +msgid "Identity assurance profile" +msgstr "可靠验证配置文件" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "这个端点没有启用,请在SimpleSAMLphp的配置选项中选中启用" +msgid "Identity number assigned by public authorities" +msgstr "身份证号码" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "认证失败,你的浏览器没有发送任何证书" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "如果你报告了这个错误,那么请你也报告这个追踪号码,系统管理员有可能根据这个号码在日志中定位你的SESSION" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "这个请求的发起人没有提供RelayState参数,以说明下一步处理" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "在SAML 2.0 XML 元信息格式中:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "状态信息丢失,并且无法重新请求" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "如果你想在其他网站使用的SimpleSAMLphp,那么你应该使用SimpleSAMLphp扁平的文件格式" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "没有找到给定的URL:%URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "不正确的用户名或密码" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "给定的页面没有找到,原因: %REASON%; URL: %URL%" +msgid "Incorrect username or password." +msgstr "错误的用户名或者密码" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "你没有修改配置文件中的默认密码,请修改该密码" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "你没有提交一个有效的证书" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "无效的证书" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "我们不接受来自身份提供者的应答" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "该身份提供者接受到了一个来自服务提供者的认证请求,但是在试图处理该请求的过程中发生了错误" +msgid "JPEG Photo" +msgstr "JPEG图片" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "身份提供者的应答存在错误(SAML应答状态码并没有成功)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP错误" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "你访问了SingleLogoutService接口,但是并没有提供一个SAML的LogoutRequest或者LogoutResponse" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP是一个用户数据库,当你试图登录时,我们需要连接到LDAP数据库,然而这次我们试图链接时发生了一个错误" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "抛出一个未处理的异常" +msgid "Labeled URI" +msgstr "标签URI" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "认证失败:你的浏览器发送的是未知的证书" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "认证被用户中止" +msgid "Legal name" +msgstr "正式名称" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "如果不是给定的用户名没有找到就是给定的密码错误,请再次检查用户名和密码" +msgid "Local identity number" +msgstr "本地身份号码" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "嗨,这是SimpleSAMLphp状态页。这里你可以看到,如果您的会话超时,它持续多久,直到超时和连接到您的会话的所有属性。" +msgid "Locality" +msgstr "位置" -msgid "Logout" +msgid "Logged out" msgstr "退出" -msgid "Your attributes" -msgstr "你的属性" +msgid "Logging out of the following services:" +msgstr "从下列服务中退出" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "你的会话在%remaining%秒内有效" +msgid "Logging out..." +msgstr "正在退出" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "选择你要认证的身份提供者" +msgid "Login" +msgstr "登录" -msgid "Remember my choice" -msgstr "记住我的选择" +msgid "Login at" +msgstr "登录于" -msgid "Select" -msgstr "选择" +msgid "Logout" +msgstr "退出" -msgid "Select your identity provider" -msgstr "选择你的身份提供者" +msgid "Logout failed" +msgstr "退出失败" -msgid "Sending message" -msgstr "正在发送消息" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "丢失了退出消息" -msgid "Yes, continue" -msgstr "是的,继续" +msgid "Mail" +msgstr "邮箱" -msgid "Debug information" -msgstr "调试信息" +msgid "Manager" +msgstr "管理员" -msgid "E-mail address:" -msgstr "E-mail地址" +msgid "Message" +msgstr "信息" -msgid "Explain what you did when this error occurred..." -msgstr "说明一下,你正在做什么的时候发生了这个错误" +msgid "Metadata" +msgstr "元信息" -msgid "How to get help" -msgstr "如何获取帮助" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "没有找到元信息" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "如果你报告了这个错误,那么请你也报告这个追踪号码,系统管理员有可能根据这个号码在日志中定位你的SESSION" +msgid "Metadata overview" +msgstr "元信息浏览" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "你可以填入你的Email地址(当然你也可以选择不填),这样管理员就能够通过联系您来进一步的了解你的问题了" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Report errors" -msgstr "报告错误" +msgid "Mobile" +msgstr "手机" -msgid "Send error report" -msgstr "发送错误报告" +msgid "Next" +msgstr "下一步" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "管理员或者服务台可能对下面的调试信息很感兴趣" +msgid "Nickname" +msgstr "昵称" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "这个错误可能是由于一些意想不到的行为或者是SimpleSAMLphp的配置错误导致的,请联系这个登录服务器的管理员并把上面的错误消息发送给他们" +msgid "No" +msgstr "不" -msgid "[Preferred choice]" -msgstr "首选选项" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "无依赖状态" -msgid "Person's principal name at home organization" -msgstr "人的主要在家中组织的名称" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "没有提供SAML消息" -msgid "Superfluous options in config file" -msgstr "配置文件中拥有过多的选项" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Mobile" -msgstr "手机" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "没有提供SAML应答" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 服务提供者(本地)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "禁止访问" -msgid "Display name" -msgstr "显示名称" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "无证书" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP 元信息" +msgid "No errors found." +msgstr "没有发现错误" + +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "没有" + +msgid "No, only %SP%" +msgstr "不,仅%SP%" msgid "Notices" msgstr "通告" -msgid "Home telephone" -msgstr "家庭电话" +msgid "On hold" +msgstr "保持" -msgid "Service Provider" -msgstr "服务提供者" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "一个或多个你已登录的服务不支持退出,请确认你所有sessions已关闭,我们鼓励你 关闭浏览器" + +msgid "Optional fields" +msgstr "选项区域" -msgid "Incorrect username or password." -msgstr "错误的用户名或者密码" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "你可以填入你的Email地址(当然你也可以选择不填),这样管理员就能够通过联系您来进一步的了解你的问题了" -msgid "Submit message" -msgstr "提交信息" +msgid "Options missing from config file" +msgstr "配置文件中选项缺失" -msgid "Locality" -msgstr "位置" +msgid "Organization" +msgstr "组织" -msgid "The following required fields was not found" -msgstr "下列必需的区域没有找到" +msgid "Organization name" +msgstr "组织名称" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "下载X509证书作为PEM编码的文件" +msgid "Organization's legal name" +msgstr "组织的法定名称" + +msgid "Organizational homepage" +msgstr "组织的首页" msgid "Organizational number" msgstr "组织号码" -msgid "Post office box" -msgstr "邮政信箱" +msgid "Organizational unit" +msgstr "组织单位" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "一个服务需要你的认证,请在下面输入你的用户名和密码" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "页面没有找到" -msgid "Error" -msgstr "错误" +msgid "Parse" +msgstr "分析器" -msgid "Next" -msgstr "下一步" +msgid "Password" +msgstr "密码" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "人的家组织单位的辨别名称(DN)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "没有设置密码" -msgid "Converted metadata" -msgstr "转换过的元信息" +msgid "Persistent pseudonymous ID" +msgstr "持续的匿名ID" -msgid "Mail" -msgstr "邮箱" +msgid "Person's principal name at home organization" +msgstr "人的主要在家中组织的名称" -msgid "No, cancel" -msgstr "没有" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "选择你要认证的身份提供者" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "你选择了%HOMEORG%作为你的家庭组织。如果错了请选择其他的" +msgid "Post office box" +msgstr "邮政信箱" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "人的主要组织单位的辨别名称(DN)" +msgid "Postal address" +msgstr "邮政地址" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "想要查看SAML实体的详细情况,请点击SAML实体载入器" +msgid "Postal code" +msgstr "邮政编码" -msgid "Enter your username and password" -msgstr "输入你的用户名和密码" +msgid "Preferred language" +msgstr "首选语言" -msgid "Login at" -msgstr "登录于" +msgid "Primary affiliation" +msgstr "主要的联系方式" -msgid "No" -msgstr "不" +msgid "Private information elements" +msgstr "个人资料" -msgid "Home postal address" -msgstr "家庭邮政地址" +msgid "Remember" +msgstr "记住" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP 演示案例" +msgid "Remember my choice" +msgstr "记住我的选择" -msgid "SAML 2.0 Identity Provider (Remote)" -msgstr "SAML 2.0 身份提供者(远程)" +msgid "Report errors" +msgstr "报告错误" -msgid "Do you want to logout from all the services above?" -msgstr "你想同时从上面的这些服务中退出吗?" +msgid "Required fields" +msgstr "必需的区域" -msgid "Given name" -msgstr "名" +msgid "Return to service" +msgstr "返回至服务" -msgid "Identity assurance profile" -msgstr "可靠验证配置文件" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 身份提供者(本地)" + +msgid "SAML 2.0 Identity Provider (Remote)" +msgstr "SAML 2.0 身份提供者(远程)" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP演示案例" -msgid "Organization name" -msgstr "组织名称" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "你准备发送一个消息,请点击提交按钮以继续" +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP 元信息" -msgid "Home organization domain name" -msgstr "首页组织的域名" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 服务提供者(本地)" -msgid "Go back to the file list" -msgstr "返回至文件列表" +msgid "SAML Subject" +msgstr "" -msgid "Error report sent" -msgstr "发送错误报告" +msgid "Select" +msgstr "选择" -msgid "Common name" -msgstr "常用名字" +msgid "Select configuration file to check:" +msgstr "选择一个配置文件用于检测" -msgid "Logout failed" -msgstr "退出失败" +msgid "Select your identity provider" +msgstr "选择你的身份提供者" -msgid "Identity number assigned by public authorities" -msgstr "身份证号码" +msgid "Send e-mail to help desk" +msgstr "发送Email给服务台" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation 身份提供者(远程)" +msgid "Send error report" +msgstr "发送错误报告" -msgid "Some error occurred" -msgstr "某些错误发生了" +msgid "Sending message" +msgstr "正在发送消息" -msgid "Organization" -msgstr "组织" +msgid "Service Provider" +msgstr "服务提供者" -msgid "Choose home organization" -msgstr "选择你的家庭组织" +msgid "Session size: %SIZE%" +msgstr "Session 大小: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "持续的匿名ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP 元信息" -msgid "No errors found." -msgstr "没有发现错误" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 认证提供者(本地)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 服务提供者(本地)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 认证提供者(远程)" -msgid "Required fields" -msgstr "必需的区域" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP 元信息" -msgid "Domain component (DC)" -msgstr "Opened the web browser with tabs saved from the previous session.域组件(DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 服务提供者(本地)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 服务提供者(远程)" -msgid "Password" -msgstr "密码" - -msgid "Nickname" -msgstr "昵称" - -msgid "The error report has been sent to the administrators." -msgstr "错误报告已经发送给管理员" - -msgid "Date of birth" -msgstr "生日" - -msgid "Private information elements" -msgstr "个人资料" - -msgid "You are also logged in on these services:" -msgstr "你同时登录这以下这些服务" +msgid "Shibboleth demo" +msgstr "Shibboleth演示" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp 诊断" -msgid "No, only %SP%" -msgstr "不,仅%SP%" - -msgid "Username" -msgstr "用户名" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp出现配置错误" -msgid "Go back to SimpleSAMLphp installation page" -msgstr "返回SimpleSAMLphp安装页面" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp错误" -msgid "You have successfully logged out from all services listed above." -msgstr "你成功的退出了上面列表中的服务" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You are now successfully logged out from %SP%." -msgstr "你已成功从%SP%退出" +msgid "Some error occurred" +msgstr "某些错误发生了" -msgid "Affiliation" -msgstr "联络方式" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "状态信息丢失" -msgid "You have been logged out." -msgstr "你已经退出了" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "状态信息丢失,并且无法重新请求" -msgid "Return to service" -msgstr "返回至服务" +msgid "Street" +msgstr "街道" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation 服务提供者(本地)" +msgid "Submit message" +msgstr "提交信息" -msgid "Preferred language" -msgstr "首选语言" +msgid "Superfluous options in config file" +msgstr "配置文件中拥有过多的选项" msgid "Surname" msgstr "姓" -msgid "The following fields was not recognized" -msgstr "下列区域无法识别" - -msgid "User ID" -msgstr "用户ID" +msgid "Telephone number" +msgstr "电话号码" -msgid "JPEG Photo" -msgstr "JPEG图片" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "身份提供者的应答存在错误(SAML应答状态码并没有成功)" -msgid "Postal address" -msgstr "邮政地址" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "认证被用户中止" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "在SAML 2.0 XML 元信息格式中:" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "管理员或者服务台可能对下面的调试信息很感兴趣" -msgid "Logging out of the following services:" -msgstr "从下列服务中退出" +msgid "The error report has been sent to the administrators." +msgstr "错误报告已经发送给管理员" -msgid "Labeled URI" -msgstr "标签URI" +msgid "The following fields was not recognized" +msgstr "下列区域无法识别" -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 认证提供者(本地)" +msgid "The following optional fields was not found" +msgstr "下列必需的选项区域没有找到" -msgid "Metadata" -msgstr "元信息" +msgid "The following required fields was not found" +msgstr "下列必需的区域没有找到" -msgid "Login" -msgstr "登录" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "没有找到给定的URL:%URL%" -msgid "Yes, all services" -msgstr "是的,所有的服务" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "给定的页面没有找到,原因: %REASON%; URL: %URL%" -msgid "Logged out" -msgstr "退出" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "关于当前退出操作的相关信息丢失了,你应该返回服务中,重新尝试退出,这个错误可能是退出信息超时引起的。退出消息在有限的时间内存储,通常是几个小时,这比任何常规的退出时间所需的时间要长多了,所以这种错误可能是配置错误,如果问题依旧存在,联系你的服务提供商" -msgid "Postal code" -msgstr "邮政编码" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "这个请求的发起人没有提供RelayState参数,以说明下一步处理" -msgid "Logging out..." -msgstr "正在退出" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "发送给搜寻服务的参数不符合规范" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 身份提供者(本地)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "Primary affiliation" -msgstr "主要的联系方式" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "你没有修改配置文件中的默认密码,请修改该密码" -msgid "XML metadata" -msgstr "XML元信息" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "请求该页的请求存在错误,原因:%REASON%" -msgid "Telephone number" -msgstr "电话号码" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "你的SimpleSAMLphp配置错误,如果你是该服务的管理员,那么请确认你的配置是正确的" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "无法从一个或者多个服务中退出,请确认你所有sessions已关闭,我们鼓励你 关闭浏览器" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "该身份提供者接受到了一个来自服务提供者的认证请求,但是在试图处理该请求的过程中发生了错误" -msgid "Entitlement regarding the service" -msgstr "关于服务的权利" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "这个端点没有启用,请在SimpleSAMLphp的配置选项中选中启用" -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP 元信息" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "这个错误可能是由于一些意想不到的行为或者是SimpleSAMLphp的配置错误导致的,请联系这个登录服务器的管理员并把上面的错误消息发送给他们" -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "当你处在调试模式中时,你将看到你正在发送的消息的内容" +msgid "Title" +msgstr "标题" -msgid "Certificates" -msgstr "证书" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "想要查看SAML实体的详细情况,请点击SAML实体载入器" -msgid "Remember" -msgstr "记住" +msgid "Tracking number" +msgstr "" -msgid "Distinguished name (DN) of person's home organization" -msgstr "人的家庭组织的分辨名称(DN)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "无法为%ENTITYID%定位元信息" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "你准备发送一个消息,请点击提交链接以继续" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "无法从一个或者多个服务中退出,请确认你所有sessions已关闭,我们鼓励你 关闭浏览器" -msgid "Organizational unit" -msgstr "组织单位" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Local identity number" -msgstr "本地身份号码" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "未处理的异常" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP 元信息" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "未知的证书" -msgid "Change your home organization" -msgstr "改变你的家庭组织" +msgid "User ID" +msgstr "用户ID" msgid "User's password hash" msgstr "用户密码的HASH值" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "如果你想在其他网站使用的SimpleSAMLphp,那么你应该使用SimpleSAMLphp扁平的文件格式" - -msgid "Completed" -msgstr "完成" - -msgid "Select configuration file to check:" -msgstr "选择一个配置文件用于检测" - -msgid "On hold" -msgstr "保持" +msgid "Username" +msgstr "用户名" -msgid "Help! I don't remember my password." -msgstr "帮助!我忘记我的密码了!" +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP 演示案例" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "你可以关闭调试模式,在SimpleSAMLphp全局配置文件config/config.php中" +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation 身份提供者(远程)" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp错误" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation 服务提供者(本地)" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "一个或多个你已登录的服务不支持退出,请确认你所有sessions已关闭,我们鼓励你 关闭浏览器" +msgid "Warning" +msgstr "" -msgid "Organization's legal name" -msgstr "组织的法定名称" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "我们不接受来自身份提供者的应答" -msgid "Options missing from config file" -msgstr "配置文件中选项缺失" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "在这个身份提供者创建认证应答的时候发生了一个错误" -msgid "The following optional fields was not found" -msgstr "下列必需的选项区域没有找到" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "太糟糕了!-没有你的用户名和密码你将不能访问该服务,也许有人能够帮助你,请咨询你所在大学的服务台" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr "你可以在 获取元信息XML" +msgid "World" +msgstr "" -msgid "Street" -msgstr "街道" +msgid "XML metadata" +msgstr "XML元信息" -msgid "Message" -msgstr "信息" +msgid "Yes, all services" +msgstr "是的,所有的服务" -msgid "Contact information:" -msgstr "联系方式" +msgid "Yes, continue" +msgstr "是的,继续" -msgid "Legal name" -msgstr "正式名称" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Optional fields" -msgstr "选项区域" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "你访问了Assertion Consumer Service接口,但是并没有提供一个SAML认证应答" -msgid "You have previously chosen to authenticate at" -msgstr "你先前选择的认证" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "你确实发送了一些信息给登录页面,但由于某些原因,你没有发送密码,请再试一次" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "你访问了SingleLogoutService接口,但是并没有提供一个SAML的LogoutRequest或者LogoutResponse" -msgid "Fax number" -msgstr "传真号码" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "你准备发送一个消息,请点击提交按钮以继续" -msgid "Shibboleth demo" -msgstr "Shibboleth演示" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "你准备发送一个消息,请点击提交链接以继续" -msgid "Error in this metadata entry" -msgstr "该元信息实体存在错误" +msgid "You are also logged in on these services:" +msgstr "你同时登录这以下这些服务" -msgid "Session size: %SIZE%" -msgstr "Session 大小: %SIZE%" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "你现在访问的是一个预安装系统,这个认证设置是用来测试和预发布校验之用。如果有人发送一个连接让你访问到这里,并且你又不是测试人员,那么你获得了一个错误连接,并且你不应该在这里" -msgid "Parse" -msgstr "分析器" +msgid "You are now successfully logged out from %SP%." +msgstr "你已成功从%SP%退出" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "太糟糕了!-没有你的用户名和密码你将不能访问该服务,也许有人能够帮助你,请咨询你所在大学的服务台" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr "你可以在 获取元信息XML" -msgid "Choose your home organization" -msgstr "选择你的组织" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "你可以关闭调试模式,在SimpleSAMLphp全局配置文件config/config.php中" -msgid "Send e-mail to help desk" -msgstr "发送Email给服务台" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "你没有提交一个有效的证书" -msgid "Metadata overview" -msgstr "元信息浏览" +msgid "You have been logged out." +msgstr "你已经退出了" -msgid "Title" -msgstr "标题" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "你选择了%HOMEORG%作为你的家庭组织。如果错了请选择其他的" -msgid "Manager" -msgstr "管理员" +msgid "You have previously chosen to authenticate at" +msgstr "你先前选择的认证" -msgid "Affiliation at home organization" -msgstr "家庭联络地址" +msgid "You have successfully logged out from all services listed above." +msgstr "你成功的退出了上面列表中的服务" -msgid "Help desk homepage" -msgstr "服务台的主页" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "你确实发送了一些信息给登录页面,但由于某些原因,你没有发送密码,请再试一次" -msgid "Configuration check" -msgstr "配置检查" +msgid "Your attributes" +msgstr "你的属性" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 认证提供者(远程)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "这里是SimpleSAMLphp为你生成的元信息,你应该发送这个元信息文档给你的信任的合作伙伴以建立信任的联盟" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "你的会话在%remaining%秒内有效" -msgid "Organizational homepage" -msgstr "组织的首页" +msgid "[Preferred choice]" +msgstr "首选选项" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "你现在访问的是一个预安装系统,这个认证设置是用来测试和预发布校验之用。如果有人发送一个连接让你访问到这里,并且你又不是测试人员,那么你获得了一个错误连接,并且你不应该在这里" +msgid "not set" +msgstr "" diff --git a/locales/zh-tw/LC_MESSAGES/attributes.po b/locales/zh_TW/LC_MESSAGES/attributes.po similarity index 100% rename from locales/zh-tw/LC_MESSAGES/attributes.po rename to locales/zh_TW/LC_MESSAGES/attributes.po diff --git a/locales/zh-tw/LC_MESSAGES/messages.po b/locales/zh_TW/LC_MESSAGES/messages.po similarity index 90% rename from locales/zh-tw/LC_MESSAGES/messages.po rename to locales/zh_TW/LC_MESSAGES/messages.po index 808b3356b8..b56e6651b8 100644 --- a/locales/zh-tw/LC_MESSAGES/messages.po +++ b/locales/zh_TW/LC_MESSAGES/messages.po @@ -1,759 +1,840 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "SAML 無回應" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "無法提供 SAML 訊息" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "請使用帳號密碼登入,以便進入系統。" + +msgid "ADFS IdP Metadata" +msgstr "ADFS 驗證提供者 Metadata" + +msgid "ADFS Identity Provider (Hosted)" +msgstr "ADFS 驗證提供者(主機)" + +msgid "ADFS SP Metadata" +msgstr "ADFS 服務提供者 Metadata" + +msgid "ADFS Service Provider (Remote)" +msgstr "ADFS 服務提供者(遠端)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +msgid "Affiliation" +msgstr "連絡方式" + +msgid "Affiliation at home organization" +msgstr "家庭連絡地址" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "有個錯誤發生於您嘗試建立 SAML 請求。" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "有個錯誤發生於準備進行登出請求時。" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "發生了一個無法預期的例外" + +msgid "As you are in debug mode, you get to see the content of the message you are sending:" +msgstr "當您在除錯模式,您可以看到您所傳遞的訊息內容:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "認證取消" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "認證錯誤來自 %AUTHSOURCE% 。原因為: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "驗證失敗:您的瀏覽器傳送的憑證為無效或無法讀取" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "認證錯誤:您的瀏覽器傳送了一個未知的憑證" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "認證錯誤:您的瀏覽器並未送出任何憑證" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "認證來源錯誤" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "錯誤請求" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "無效的請求於搜尋服務" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "CAS 錯誤" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "" + +msgid "Certificates" +msgstr "憑證" + +msgid "Change your home organization" +msgstr "變更您的預設組織" + +msgid "Choose home organization" +msgstr "選擇預設組織" + +msgid "Choose your home organization" +msgstr "選擇您的預設組織" + +msgid "Common name" +msgstr "常用名字" + +msgid "Completed" +msgstr "已完成" + +msgid "Configuration check" +msgstr "設定檢查" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "設定錯誤" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "錯誤產生請求" +msgid "Contact information:" +msgstr "聯絡資訊:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "無效的請求於搜尋服務" +msgid "Converted metadata" +msgstr "已轉換之 Metadata" + +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "無法建立認證回應" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "無效憑證" +msgid "Date of birth" +msgstr "生日" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "LDAP 錯誤" +msgid "Debug information" +msgstr "除錯資訊" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "登出訊息遺失" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "登出請求為錯誤程序" +msgid "Display name" +msgstr "顯示名稱" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "錯誤載入詮釋資料" +msgid "Distinguished name (DN) of person's home organization" +msgstr "Distinguished name (DN) 個人預設組織" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "找不到詮釋資料" +msgid "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Distinguished name (DN) of 個人主要組織單位" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "無法存取" +msgid "Distinguished name (DN) of the person's home organizational unit" +msgstr "Distinguished name (DN) 個人預設組織單位" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "無憑證" +msgid "Do you want to logout from all the services above?" +msgstr "是否登出所有服務?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "沒有 RelayState" +msgid "Domain component (DC)" +msgstr "Domain component (DC)" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "遺失狀態資訊" +msgid "Download the X509 certificates as PEM-encoded files." +msgstr "下載 PEM 格式之 X.509 憑證檔案" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "找不到頁面" +msgid "E-mail address:" +msgstr "電子郵件:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "密碼未設定" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "找不到您所提供的使用者名稱之使用者,或您給了錯誤密碼。請檢查使用者並再試一次。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 -msgid "Error processing response from Identity Provider" -msgstr "從驗證提供者取得錯誤執行回應" +msgid "Enter your username and password" +msgstr "請輸入您的帳號及密碼" + +msgid "Entitlement regarding the service" +msgstr "關於服務的權利" + +msgid "Error" +msgstr "錯誤" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "錯誤產生請求" + +msgid "Error in this metadata entry" +msgstr "有錯誤存在這個 Metadata 條目" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "錯誤載入詮釋資料" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 msgid "Error processing request from Service Provider" msgstr "從驗證提供者得到錯誤執行請求" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Error processing response from Identity Provider" +msgstr "從驗證提供者取得錯誤執行回應" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "登出請求為錯誤程序" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "從驗證提供者收到錯誤" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "不可預期的例外" +msgid "Error report sent" +msgstr "錯誤報告送出" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "未知的憑證" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "當連線至 CAS 主機時錯誤。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "認證取消" +msgid "Explain what you did when this error occurred..." +msgstr "解釋當你發生錯誤時所做的事情..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "帳號或密碼錯誤" +msgid "Fax number" +msgstr "傳真" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "您連結消費者聲明服務界面,但是沒有提供一個 SAML 認證回應。" +msgid "Format" +msgstr "格式" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "認證錯誤來自 %AUTHSOURCE% 。原因為: %REASON%" +msgid "Given name" +msgstr "名" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "這裡有個錯誤於此頁面的請求。原因為:%REASON%" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "回到 SimpleSAMLphp 安裝頁面" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "當連線至 CAS 主機時錯誤。" +msgid "Go back to the file list" +msgstr "回到檔案清單" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp 出現無效設定。" +msgid "Group membership" +msgstr "群組成員" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "有個錯誤發生於您嘗試建立 SAML 請求。" +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "傳遞至搜尋服務的參數並非按照規格所訂。" +msgid "Help desk homepage" +msgstr "協助頁面" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "當這個驗證提供者嘗試建立一個驗證回應時,有個錯誤發生。" +msgid "Help! I don't remember my password." +msgstr "糟糕!忘記密碼了。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "驗證失敗:您的瀏覽器傳送的憑證為無效或無法讀取" +msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." +msgstr "這是 SimpleSAMLphp 產生給您的 Metadata,您可以傳送此 Metadata 文件給您信任的合作夥伴來建立可信任的聯盟。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 -msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." -msgstr "LDAP 是使用這資料庫,當您嘗試登入時,我們必須連結至一個 LDAP 資料庫。而在嘗試時有個錯誤發生。" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "嘿,這是 SimpleSAMLphp 狀態頁,在這邊您可以看到您的連線是否逾時,以及還有多久才逾時,所有屬性值(attributes)都會附加在你的連線裡(session)。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "遺失正在登出的相關操作資訊,您可能要回到您準備登出的服務再登出一次。這個錯誤可能是因為登出資訊逾時。登出資訊僅能在有限的時間裡有效 - 通常是幾小時。這已經大於正常的登出操作所需的時間,所以這個錯誤也許說明有些其他的錯誤被設定。如果這個錯誤持續存在,請連絡您的服務提供者。" +msgid "Home organization domain name" +msgstr "預設組織 domain name" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "有個錯誤發生於準備進行登出請求時。" +msgid "Home postal address" +msgstr "住家地址" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "有一些錯誤設定在您所安裝的 SimpleSAMLphp。如果您是這個服務的管理員,您可能需要確認您的詮釋資料設定是否正確地設置。" +msgid "Home telephone" +msgstr "住家電話" + +msgid "How to get help" +msgstr "如何取得協助" + +msgid "Identity assurance profile" +msgstr "可靠驗證設定檔" + +msgid "Identity number assigned by public authorities" +msgstr "身分證字號" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "如果您回報這個錯誤,請同時回報這個追蹤數字,讓系統管理員可以藉由它在記錄裡找到您的連線:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "無法找到詮釋資料於 %ENTITYID%" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "在 SAML 2.0 Metadata XML 格式:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "這個端點並未啟用。核取啟用選項於您的 SimpleSAMLphp 設定中。" +msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "如果您需要於其他地方使用 SimpleSAMLphp 實體 - 請參閱 SimpleSAMLphp 平面文件格式:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "認證錯誤:您的瀏覽器並未送出任何憑證" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "帳號或密碼錯誤" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "初始化請求並未提供一個中繼狀態 RelayState 參數說明下一個步驟。" +msgid "Incorrect username or password." +msgstr "錯誤的帳號或密碼。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "遺失狀態資訊,且無法重新請求" +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "找不到您所要存取的頁面,該網址是:%URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "無效憑證" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "找不到您所要存取的頁面,原因:%REASON%;網址:%URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "設定檔裡的密碼(auth.adminpassword)還是預設值,請編輯設定檔。" +msgid "JPEG Photo" +msgstr "JPEG 圖片" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "您提供的憑證無效。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "LDAP 錯誤" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "我們無法於驗證提供者完成回應傳送。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 +msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." +msgstr "LDAP 是使用這資料庫,當您嘗試登入時,我們必須連結至一個 LDAP 資料庫。而在嘗試時有個錯誤發生。" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "這個驗證提供者收到一個服務提供者的認證請求,但在準備執行這個請求時發生錯誤。" +msgid "Labeled URI" +msgstr "標籤網址" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "驗證提供者回應一個錯誤。(在 SAML 回應裡的狀態碼為不成功)" +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "您連結單一簽出服務界面,但是沒有提供一個 SAML 登出請求或登出回應。" +msgid "Legal name" +msgstr "正式名字" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "發生了一個無法預期的例外" +msgid "Local identity number" +msgstr "本地驗證碼" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "認證錯誤:您的瀏覽器傳送了一個未知的憑證" +msgid "Locality" +msgstr "位置" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "使用者中斷認證" +msgid "Logged out" +msgstr "標題" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "找不到您所提供的使用者名稱之使用者,或您給了錯誤密碼。請檢查使用者並再試一次。" +msgid "Logging out of the following services:" +msgstr "從下列服務登出:" -msgid "Format" -msgstr "格式" +msgid "Logging out..." +msgstr "登出中..." -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "嘿,這是 SimpleSAMLphp 狀態頁,在這邊您可以看到您的連線是否逾時,以及還有多久才逾時,所有屬性值(attributes)都會附加在你的連線裡(session)。" +msgid "Login" +msgstr "登入" + +msgid "Login at" +msgstr "登入至" msgid "Logout" msgstr "登出" -msgid "SAML Subject" -msgstr "SAML 主題" +msgid "Logout failed" +msgstr "登出失敗" -msgid "Your attributes" -msgstr "您的屬性值" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "登出訊息遺失" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "您的 session 從現在起還有 %remaining% 有效。" +msgid "Mail" +msgstr "郵件" -msgid "not set" -msgstr "未設定" +msgid "Manager" +msgstr "管理員" -msgid "Please select the identity provider where you want to authenticate:" -msgstr "請選擇您所要前往認證的驗證提供者:" +msgid "Message" +msgstr "訊息" -msgid "Remember my choice" -msgstr "記住我的選擇" +msgid "Metadata" +msgstr "Metadata" -msgid "Select" -msgstr "選擇" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "找不到詮釋資料" -msgid "Select your identity provider" -msgstr "選擇你的識別提供者(idp)" +msgid "Metadata overview" +msgstr "Metadata 總覽" -msgid "Sending message" -msgstr "傳送訊息" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -msgid "Yes, continue" -msgstr "是,繼續" +msgid "Mobile" +msgstr "手機" -msgid "Debug information" -msgstr "除錯資訊" +msgid "Next" +msgstr "下一步" -msgid "E-mail address:" -msgstr "電子郵件:" +msgid "Nickname" +msgstr "暱稱" -msgid "Explain what you did when this error occurred..." -msgstr "解釋當你發生錯誤時所做的事情..." +msgid "No" +msgstr "取消" -msgid "How to get help" -msgstr "如何取得協助" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "沒有 RelayState" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" -msgstr "如果您回報這個錯誤,請同時回報這個追蹤數字,讓系統管理員可以藉由它在記錄裡找到您的連線:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "無法提供 SAML 訊息" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "選擇性的輸入您的 email,讓管理者針對您的問題在有進一步需要時連絡您:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "" -msgid "Report errors" -msgstr "錯誤報告" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "SAML 無回應" -msgid "Send error report" -msgstr "傳送錯誤報告" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "無法存取" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "管理員/服務台可能對下列除錯資訊有興趣:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "無憑證" -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "這個問題可能是因為 SimpleSAMLphp 的某些例外的行為或無效設定。連絡這個登入服務的管理員,以及傳送這些錯誤訊息。" +msgid "No errors found." +msgstr "沒有錯誤。" -msgid "[Preferred choice]" -msgstr "喜好選擇" +msgid "No identity providers found. Cannot continue." +msgstr "" + +msgid "No, cancel" +msgstr "不,取消" + +msgid "No, only %SP%" +msgstr "不,只有 %SP%" + +msgid "Notices" +msgstr "備註" msgid "ORCID researcher identifiers" msgstr "ADFS 驗證提供者 Metadata" -msgid "Person's principal name at home organization" -msgstr "家庭的個人主要名字" +msgid "On hold" +msgstr "暫停" -msgid "Superfluous options in config file" -msgstr "多餘設定存在於設定檔" +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "您登入的服務中有一個或以上 不支援登出<\\/i>。請確認您已關閉所有連線,並關閉瀏覽器<\\/i>。" -msgid "Mobile" -msgstr "手機" +msgid "Optional fields" +msgstr "選擇性欄位" -msgid "Shib 1.3 Service Provider (Hosted)" -msgstr "Shib 1.3 服務提供者(主機)" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "選擇性的輸入您的 email,讓管理者針對您的問題在有進一步需要時連絡您:" -msgid "Display name" -msgstr "顯示名稱" +msgid "Options missing from config file" +msgstr "設定檔缺少選項" -msgid "SAML 2.0 SP Metadata" -msgstr "SAML 2.0 SP Metadata" +msgid "Organization" +msgstr "組織" -msgid "ADFS IdP Metadata" -msgstr "ADFS 驗證提供者 Metadata" +msgid "Organization name" +msgstr "組織名稱" -msgid "Notices" -msgstr "備註" +msgid "Organization's legal name" +msgstr "組織正式名稱" -msgid "Home telephone" -msgstr "住家電話" +msgid "Organizational homepage" +msgstr "組織首頁" -msgid "Service Provider" -msgstr "服務提供者" +msgid "Organizational number" +msgstr "組織號碼" -msgid "Incorrect username or password." -msgstr "錯誤的帳號或密碼。" +msgid "Organizational unit" +msgstr "組織單位" -msgid "Submit message" -msgstr "提交訊息" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "找不到頁面" -msgid "Locality" -msgstr "位置" +msgid "Parse" +msgstr "解析" + +msgid "Password" +msgstr "密碼" -msgid "The following required fields was not found" -msgstr "下列資料找不到必要欄位" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "密碼未設定" -msgid "Download the X509 certificates as PEM-encoded files." -msgstr "下載 PEM 格式之 X.509 憑證檔案" +msgid "Persistent pseudonymous ID" +msgstr "持續的匿名 ID" -msgid "Organizational number" -msgstr "組織號碼" +msgid "Person's principal name at home organization" +msgstr "家庭的個人主要名字" -msgid "SAML 2.0 IdP Metadata" -msgstr "SAML 2.0 IdP Metadata" +msgid "Please select the identity provider where you want to authenticate:" +msgstr "請選擇您所要前往認證的驗證提供者:" msgid "Post office box" msgstr "郵政信箱" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "請使用帳號密碼登入,以便進入系統。" - -msgid "Error" -msgstr "錯誤" +msgid "Postal address" +msgstr "郵寄地址" -msgid "Next" -msgstr "下一步" +msgid "Postal code" +msgstr "郵遞區號" -msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Distinguished name (DN) 個人預設組織單位" +msgid "Preferred language" +msgstr "喜好語言" -msgid "Converted metadata" -msgstr "已轉換之 Metadata" +msgid "Primary affiliation" +msgstr "主要連絡方式" -msgid "Mail" -msgstr "郵件" +msgid "Private information elements" +msgstr "個人資料" -msgid "No, cancel" -msgstr "不,取消" +msgid "Remember" +msgstr "記住" -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "您已選擇 %HOMEORG%<\\/b> 作為預設組織。如果錯誤,您隨時都可以重新選擇。" +msgid "Remember me" +msgstr "記住我" -msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Distinguished name (DN) of 個人主要組織單位" +msgid "Remember my choice" +msgstr "記住我的選擇" -msgid "To look at the details for an SAML entity, click on the SAML entity header." -msgstr "點選 SAML 物件標題,可檢視 SAML 物件詳細資訊。" +msgid "Remember my username" +msgstr "記住我的使用者名稱" -msgid "Enter your username and password" -msgstr "請輸入您的帳號及密碼" +msgid "Report errors" +msgstr "錯誤報告" -msgid "Login at" -msgstr "登入至" +msgid "Required fields" +msgstr "必要欄位" -msgid "No" -msgstr "取消" +msgid "Return to service" +msgstr "回到服務" -msgid "Home postal address" -msgstr "住家地址" +msgid "SAML 2.0 IdP Metadata" +msgstr "SAML 2.0 IdP Metadata" -msgid "WS-Fed SP Demo Example" -msgstr "WS-Fed SP 展示範例" +msgid "SAML 2.0 Identity Provider (Hosted)" +msgstr "SAML 2.0 驗證提供者(主機)" msgid "SAML 2.0 Identity Provider (Remote)" msgstr "SAML 2.0 驗證提供者(遠端)" -msgid "Do you want to logout from all the services above?" -msgstr "是否登出所有服務?" - -msgid "Given name" -msgstr "名" - -msgid "Identity assurance profile" -msgstr "可靠驗證設定檔" - msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP 展示範例" -msgid "Organization name" -msgstr "組織名稱" - -msgid "You are about to send a message. Hit the submit message button to continue." -msgstr "您正在傳送一則訊息,請點選提交訊息按鈕來繼續。" +msgid "SAML 2.0 SP Metadata" +msgstr "SAML 2.0 SP Metadata" -msgid "Home organization domain name" -msgstr "預設組織 domain name" +msgid "SAML 2.0 Service Provider (Hosted)" +msgstr "SAML 2.0 服務提供者(主機)" -msgid "Go back to the file list" -msgstr "回到檔案清單" +msgid "SAML Subject" +msgstr "SAML 主題" -msgid "Error report sent" -msgstr "錯誤報告送出" +msgid "Select" +msgstr "選擇" -msgid "Common name" -msgstr "常用名字" +msgid "Select configuration file to check:" +msgstr "選擇要檢查的設定檔:" -msgid "Logout failed" -msgstr "登出失敗" +msgid "Select your identity provider" +msgstr "選擇你的識別提供者(idp)" -msgid "Identity number assigned by public authorities" -msgstr "身分證字號" +msgid "Send e-mail to help desk" +msgstr "傳送 e-mail 尋求協助" -msgid "WS-Federation Identity Provider (Remote)" -msgstr "WS-Federation 驗證提供者(遠端)" +msgid "Send error report" +msgstr "傳送錯誤報告" -msgid "Some error occurred" -msgstr "有錯誤發生" +msgid "Sending message" +msgstr "傳送訊息" -msgid "Organization" -msgstr "組織" +msgid "Service Provider" +msgstr "服務提供者" -msgid "Choose home organization" -msgstr "選擇預設組織" +msgid "Session size: %SIZE%" +msgstr "Session 大小: %SIZE%" -msgid "Persistent pseudonymous ID" -msgstr "持續的匿名 ID" +msgid "Shib 1.3 IdP Metadata" +msgstr "Shib 1.3 IdP Metadata" -msgid "No errors found." -msgstr "沒有錯誤。" +msgid "Shib 1.3 Identity Provider (Hosted)" +msgstr "Shib 1.3 驗證提供者(主機)" -msgid "SAML 2.0 Service Provider (Hosted)" -msgstr "SAML 2.0 服務提供者(主機)" +msgid "Shib 1.3 Identity Provider (Remote)" +msgstr "Shib 1.3 驗證提供者(遠端)" -msgid "Required fields" -msgstr "必要欄位" +msgid "Shib 1.3 SP Metadata" +msgstr "Shib 1.3 SP Metadata" -msgid "Domain component (DC)" -msgstr "Domain component (DC)" +msgid "Shib 1.3 Service Provider (Hosted)" +msgstr "Shib 1.3 服務提供者(主機)" msgid "Shib 1.3 Service Provider (Remote)" msgstr "Shib 1.3 服務提供者(遠端)" -msgid "Password" -msgstr "密碼" - -msgid "Nickname" -msgstr "暱稱" - -msgid "The error report has been sent to the administrators." -msgstr "錯誤報告已送給管理員。" - -msgid "Date of birth" -msgstr "生日" - -msgid "Private information elements" -msgstr "個人資料" - -msgid "You are also logged in on these services:" -msgstr "您還持續登入下列服務:" +msgid "Shibboleth demo" +msgstr "老調的展示" msgid "SimpleSAMLphp Diagnostics" msgstr "SimpleSAMLphp 診斷工具" -msgid "No, only %SP%" -msgstr "不,只有 %SP%" - -msgid "Username" -msgstr "帳號" - -msgid "Go back to SimpleSAMLphp installation page" -msgstr "回到 SimpleSAMLphp 安裝頁面" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "SimpleSAMLphp 出現無效設定。" -msgid "You have successfully logged out from all services listed above." -msgstr "您已經成功登出了列表中所有服務。" +msgid "SimpleSAMLphp error" +msgstr "SimpleSAMLphp 異常" -msgid "You are now successfully logged out from %SP%." -msgstr "您已成功從 %SP% 登出。" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "Affiliation" -msgstr "連絡方式" +msgid "Some error occurred" +msgstr "有錯誤發生" -msgid "You have been logged out." -msgstr "您已登出" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "遺失狀態資訊" -msgid "Return to service" -msgstr "回到服務" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "遺失狀態資訊,且無法重新請求" -msgid "WS-Federation Service Provider (Hosted)" -msgstr "WS-Federation 服務提供者(主機)" +msgid "Street" +msgstr "街" -msgid "Remember my username" -msgstr "記住我的使用者名稱" +msgid "Submit message" +msgstr "提交訊息" -msgid "Preferred language" -msgstr "喜好語言" +msgid "Superfluous options in config file" +msgstr "多餘設定存在於設定檔" msgid "Surname" msgstr "姓" -msgid "The following fields was not recognized" -msgstr "下列資料未經確認" - -msgid "User ID" -msgstr "使用者 ID" - -msgid "JPEG Photo" -msgstr "JPEG 圖片" - -msgid "Postal address" -msgstr "郵寄地址" - -msgid "ADFS SP Metadata" -msgstr "ADFS 服務提供者 Metadata" - -msgid "In SAML 2.0 Metadata XML format:" -msgstr "在 SAML 2.0 Metadata XML 格式:" - -msgid "Logging out of the following services:" -msgstr "從下列服務登出:" - -msgid "Labeled URI" -msgstr "標籤網址" - -msgid "Shib 1.3 Identity Provider (Hosted)" -msgstr "Shib 1.3 驗證提供者(主機)" - -msgid "Metadata" -msgstr "Metadata" +msgid "Telephone number" +msgstr "電話號碼" -msgid "Login" -msgstr "登入" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "驗證提供者回應一個錯誤。(在 SAML 回應裡的狀態碼為不成功)" -msgid "Yes, all services" -msgstr "Yea,登出所有服務" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "使用者中斷認證" -msgid "Logged out" -msgstr "標題" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "管理員/服務台可能對下列除錯資訊有興趣:" -msgid "Postal code" -msgstr "郵遞區號" +msgid "The error report has been sent to the administrators." +msgstr "錯誤報告已送給管理員。" -msgid "Logging out..." -msgstr "登出中..." +msgid "The following fields was not recognized" +msgstr "下列資料未經確認" -msgid "SAML 2.0 Identity Provider (Hosted)" -msgstr "SAML 2.0 驗證提供者(主機)" +msgid "The following optional fields was not found" +msgstr "下列資料找不到選擇性欄位" -msgid "Primary affiliation" -msgstr "主要連絡方式" +msgid "The following required fields was not found" +msgstr "下列資料找不到必要欄位" -msgid "XML metadata" -msgstr "XML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "找不到您所要存取的頁面,該網址是:%URL%" -msgid "Telephone number" -msgstr "電話號碼" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "找不到您所要存取的頁面,原因:%REASON%;網址:%URL%" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "無法正常登出,請確認您已關閉所有連線,同時關閉所有瀏覽器<\\/i>。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "遺失正在登出的相關操作資訊,您可能要回到您準備登出的服務再登出一次。這個錯誤可能是因為登出資訊逾時。登出資訊僅能在有限的時間裡有效 - 通常是幾小時。這已經大於正常的登出操作所需的時間,所以這個錯誤也許說明有些其他的錯誤被設定。如果這個錯誤持續存在,請連絡您的服務提供者。" -msgid "Group membership" -msgstr "群組成員" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "初始化請求並未提供一個中繼狀態 RelayState 參數說明下一個步驟。" -msgid "Entitlement regarding the service" -msgstr "關於服務的權利" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "傳遞至搜尋服務的參數並非按照規格所訂。" -msgid "Shib 1.3 SP Metadata" -msgstr "Shib 1.3 SP Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "As you are in debug mode, you get to see the content of the message you are sending:" -msgstr "當您在除錯模式,您可以看到您所傳遞的訊息內容:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "設定檔裡的密碼(auth.adminpassword)還是預設值,請編輯設定檔。" -msgid "Certificates" -msgstr "憑證" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "這裡有個錯誤於此頁面的請求。原因為:%REASON%" -msgid "Remember" -msgstr "記住" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "有一些錯誤設定在您所安裝的 SimpleSAMLphp。如果您是這個服務的管理員,您可能需要確認您的詮釋資料設定是否正確地設置。" -msgid "Distinguished name (DN) of person's home organization" -msgstr "Distinguished name (DN) 個人預設組織" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "這個驗證提供者收到一個服務提供者的認證請求,但在準備執行這個請求時發生錯誤。" -msgid "You are about to send a message. Hit the submit message link to continue." -msgstr "您正在傳送一則訊息,請點選提交訊息連結來繼續。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "這個端點並未啟用。核取啟用選項於您的 SimpleSAMLphp 設定中。" -msgid "Organizational unit" -msgstr "組織單位" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "這個問題可能是因為 SimpleSAMLphp 的某些例外的行為或無效設定。連絡這個登入服務的管理員,以及傳送這些錯誤訊息。" -msgid "Local identity number" -msgstr "本地驗證碼" +msgid "Title" +msgstr "標題" -msgid "Shib 1.3 IdP Metadata" -msgstr "Shib 1.3 IdP Metadata" +msgid "To look at the details for an SAML entity, click on the SAML entity header." +msgstr "點選 SAML 物件標題,可檢視 SAML 物件詳細資訊。" -msgid "Change your home organization" -msgstr "變更您的預設組織" +msgid "Tracking number" +msgstr "" -msgid "User's password hash" -msgstr "使用者密碼編碼" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "無法找到詮釋資料於 %ENTITYID%" -msgid "In SimpleSAMLphp flat file format - use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "如果您需要於其他地方使用 SimpleSAMLphp 實體 - 請參閱 SimpleSAMLphp 平面文件格式:" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "無法正常登出,請確認您已關閉所有連線,同時關閉所有瀏覽器<\\/i>。" -msgid "Completed" -msgstr "已完成" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Select configuration file to check:" -msgstr "選擇要檢查的設定檔:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "不可預期的例外" -msgid "On hold" -msgstr "暫停" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "未知的憑證" -msgid "ADFS Identity Provider (Hosted)" -msgstr "ADFS 驗證提供者(主機)" +msgid "User ID" +msgstr "使用者 ID" -msgid "Help! I don't remember my password." -msgstr "糟糕!忘記密碼了。" +msgid "User's password hash" +msgstr "使用者密碼編碼" -msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." -msgstr "您可以 SimpleSAMLphp 的全域設定檔 config/config.php 裡關閉除錯模式。" +msgid "Username" +msgstr "帳號" -msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp 異常" +msgid "WS-Fed SP Demo Example" +msgstr "WS-Fed SP 展示範例" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "您登入的服務中有一個或以上 不支援登出<\\/i>。請確認您已關閉所有連線,並關閉瀏覽器<\\/i>。" +msgid "WS-Federation Identity Provider (Remote)" +msgstr "WS-Federation 驗證提供者(遠端)" -msgid "Remember me" -msgstr "記住我" +msgid "WS-Federation Service Provider (Hosted)" +msgstr "WS-Federation 服務提供者(主機)" -msgid "Organization's legal name" -msgstr "組織正式名稱" +msgid "Warning" +msgstr "" -msgid "Options missing from config file" -msgstr "設定檔缺少選項" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "我們無法於驗證提供者完成回應傳送。" -msgid "The following optional fields was not found" -msgstr "下列資料找不到選擇性欄位" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "當這個驗證提供者嘗試建立一個驗證回應時,有個錯誤發生。" -msgid "You can get the metadata xml on a dedicated URL:" -msgstr " 直接取得 Metadata XML 格式檔 " +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "喔喔!如果您的帳號和密碼錯誤,系統將無法提供相關服務!" -msgid "Street" -msgstr "街" +msgid "World" +msgstr "" -msgid "Message" -msgstr "訊息" +msgid "XML metadata" +msgstr "XML Metadata" -msgid "Contact information:" -msgstr "聯絡資訊:" +msgid "Yes, all services" +msgstr "Yea,登出所有服務" -msgid "Legal name" -msgstr "正式名字" +msgid "Yes, continue" +msgstr "是,繼續" -msgid "Optional fields" -msgstr "選擇性欄位" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "You have previously chosen to authenticate at" -msgstr "您先前已選擇認證於" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "您連結消費者聲明服務界面,但是沒有提供一個 SAML 認證回應。" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "您可能有傳送至網頁,但是密碼因為某些原因未傳送,請重新登入。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "" -msgid "Fax number" -msgstr "傳真" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "您連結單一簽出服務界面,但是沒有提供一個 SAML 登出請求或登出回應。" -msgid "Shibboleth demo" -msgstr "老調的展示" +msgid "You are about to send a message. Hit the submit message button to continue." +msgstr "您正在傳送一則訊息,請點選提交訊息按鈕來繼續。" -msgid "Error in this metadata entry" -msgstr "有錯誤存在這個 Metadata 條目" +msgid "You are about to send a message. Hit the submit message link to continue." +msgstr "您正在傳送一則訊息,請點選提交訊息連結來繼續。" -msgid "Session size: %SIZE%" -msgstr "Session 大小: %SIZE%" +msgid "You are also logged in on these services:" +msgstr "您還持續登入下列服務:" -msgid "Parse" -msgstr "解析" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "您現在正在存取一個非正式上線系統。這個身分驗證環境僅是在測試及檢查非正式上線系統。如果有人傳遞這個連結給你,而你並非是 測試人員 的話,你可能是取得一個錯誤連結,且您可能 不適合在此。" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "喔喔!如果您的帳號和密碼錯誤,系統將無法提供相關服務!" +msgid "You are now successfully logged out from %SP%." +msgstr "您已成功從 %SP% 登出。" -msgid "ADFS Service Provider (Remote)" -msgstr "ADFS 服務提供者(遠端)" +msgid "You can get the metadata xml on a dedicated URL:" +msgstr " 直接取得 Metadata XML 格式檔 " -msgid "Choose your home organization" -msgstr "選擇您的預設組織" +msgid "You can turn off debug mode in the global SimpleSAMLphp configuration file config/config.php." +msgstr "您可以 SimpleSAMLphp 的全域設定檔 config/config.php 裡關閉除錯模式。" -msgid "Send e-mail to help desk" -msgstr "傳送 e-mail 尋求協助" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "您提供的憑證無效。" -msgid "Metadata overview" -msgstr "Metadata 總覽" +msgid "You have been logged out." +msgstr "您已登出" -msgid "Title" -msgstr "標題" +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "您已選擇 %HOMEORG%<\\/b> 作為預設組織。如果錯誤,您隨時都可以重新選擇。" -msgid "Manager" -msgstr "管理員" +msgid "You have previously chosen to authenticate at" +msgstr "您先前已選擇認證於" -msgid "Affiliation at home organization" -msgstr "家庭連絡地址" +msgid "You have successfully logged out from all services listed above." +msgstr "您已經成功登出了列表中所有服務。" -msgid "Help desk homepage" -msgstr "協助頁面" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "您可能有傳送至網頁,但是密碼因為某些原因未傳送,請重新登入。" -msgid "Configuration check" -msgstr "設定檢查" +msgid "Your attributes" +msgstr "您的屬性值" -msgid "Shib 1.3 Identity Provider (Remote)" -msgstr "Shib 1.3 驗證提供者(遠端)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "" -msgid "Here is the metadata that SimpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation." -msgstr "這是 SimpleSAMLphp 產生給您的 Metadata,您可以傳送此 Metadata 文件給您信任的合作夥伴來建立可信任的聯盟。" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "您的 session 從現在起還有 %remaining% 有效。" -msgid "Organizational homepage" -msgstr "組織首頁" +msgid "[Preferred choice]" +msgstr "喜好選擇" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "您現在正在存取一個非正式上線系統。這個身分驗證環境僅是在測試及檢查非正式上線系統。如果有人傳遞這個連結給你,而你並非是 測試人員 的話,你可能是取得一個錯誤連結,且您可能 不適合在此。" +msgid "not set" +msgstr "未設定" diff --git a/locales/zu/LC_MESSAGES/messages.po b/locales/zu/LC_MESSAGES/messages.po index ae0819113c..e82fc0628e 100644 --- a/locales/zu/LC_MESSAGES/messages.po +++ b/locales/zu/LC_MESSAGES/messages.po @@ -1,470 +1,546 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: zu\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: messages\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 -msgid "No SAML response provided" -msgstr "Ayikho impendulo ye-SAML enikeziwe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:189 +msgid "%MESSAGE%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 -msgid "No SAML message provided" -msgstr "Awukho umlayezo we-SAML onikeziwe" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Isevisi icele ukuthi uziqinisekise. Sicela ufake igama lakho lomsebenzisi nephasiwedi ngohlobo olungezansi." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "Admin password not set to a hashed value" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 +msgid "An error occurred when trying to create the SAML request." +msgstr "Kuvele iphutha ngenkathi izama ukwakha isicelo se-SAML." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 +msgid "An error occurred when trying to process the Logout Request." +msgstr "Kuvele iphutha ngenkathi izama ukucubungula Isicelo Sokuphuma." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 +msgid "An unhandled exception was thrown." +msgstr "Okuhlukile okungasingathiwe kulahliwe." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Authentication aborted" +msgstr "Ukuqinisekisa kuyekisiwe" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "Iphutha lokuqinisekisa kumthombo othi %AUTHSOURCE%. Isizathu besithi: %REASON%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 +msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" +msgstr "Ukuqinisekisa kuhlulekile: isitifiketi esithunyelwe isiphequluli sakho asivumelekile noma asikwazi ukufundwa" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "Ukuqinisekisa kuhlulekile: isitifiketi esithunyelwe isiphequluli sakho asaziwa" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "Ukuqinisekisa kuhlulekile: isiphequluli sakho asizange sithumele noma yisiphi isitifiketi" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:72 msgid "Authentication source error" msgstr "Iphutha lomthombo wokuqinisekisa" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Kutholwe umlayezo ongalungile" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 +msgid "Bad request to discovery service" +msgstr "Isicelo esingalungile sesevisi yokuthola" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:74 msgid "CAS Error" msgstr "Iphutha Le-CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "Cannot retrieve session data" +msgstr "Ayikwazi ukubuyisela idatha yeseshini" + +msgid "Choose home organization" +msgstr "Khetha inhlangano yasekhaya" + +msgid "Choose your home organization" +msgstr "Khetha inhlangano yakho yasekhaya" + +msgid "Completed" +msgstr "Kuqedile" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" msgstr "Iphutha lomiso" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 -msgid "Error creating request" -msgstr "Iphutha lokwakha isicelo" +msgid "Contact information:" +msgstr "Ulwazi lokuxhumana:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:77 -msgid "Bad request to discovery service" -msgstr "Isicelo esingalungile sesevisi yokuthola" +msgid "Copy to clipboard" +msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Ayikwazanga ukwakha impendulo yokuqinisekisa" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 -msgid "Invalid certificate" -msgstr "Isifiketi esingalungile" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 -msgid "LDAP Error" -msgstr "Iphutha le-LDAP" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 -msgid "Logout information lost" -msgstr "Ulwazi lokuphuma lulahlekile" - -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 -msgid "Error processing the Logout Request" -msgstr "Iphutha lokucubungula Isicelo Sokuphuma" +msgid "Debug information" +msgstr "Ulwazi lokususwa kwephutha" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 -msgid "Cannot retrieve session data" -msgstr "Ayikwazi ukubuyisela idatha yeseshini" +msgid "Debug information to be used by your support staff" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 -msgid "Error loading metadata" -msgstr "Iphutha lokulayisha imethadatha" +msgid "Do you want to logout from all the services above?" +msgstr "Ingabe ufuna ukuphuma kuwo wonke amasevisi angenhla?" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 -msgid "Metadata not found" -msgstr "Imethadatha ayitholakalanga" +msgid "E-mail address:" +msgstr "Ikheli le-imeyili:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 -msgid "No access" -msgstr "Akukho ukufinyelela" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 +msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." +msgstr "Kungenzeka ukuthi akekho umsebenzisi onegama lomsebenzisi otholiwe, noma iphasiwedi oyinikezile ayilungile. Sicela uhlole igama lomsebenzisi bese uzame futhi." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 -msgid "No certificate" -msgstr "Asikho isitifiketi" +msgid "Enter your username and password" +msgstr "Faka igama lakho lomsebenzisi nephasiwedi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 -msgid "No RelayState" -msgstr "Ayikho I-RelayState" +msgid "Error" +msgstr "Iphutha" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 -msgid "State information lost" -msgstr "Ulwazi lwesifunda lulahlekile" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 +msgid "Error creating request" +msgstr "Iphutha lokwakha isicelo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 -msgid "Page not found" -msgstr "Ikhasi alitholakali" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Error loading metadata" +msgstr "Iphutha lokulayisha imethadatha" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 -msgid "Password not set" -msgstr "Iphasiwedi ayisethiwe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Error processing request from Service Provider" +msgstr "Iphutha lokucubungula isicelo esisuka Kumhlinzeki Wesevisi" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 msgid "Error processing response from Identity Provider" msgstr "Iphutha lokucubungula impendulo esuka Kumhlinzeki Kamazisi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 -msgid "Error processing request from Service Provider" -msgstr "Iphutha lokucubungula isicelo esisuka Kumhlinzeki Wesevisi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Error processing the Logout Request" +msgstr "Iphutha lokucubungula Isicelo Sokuphuma" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 msgid "Error received from Identity Provider" msgstr "Iphutha litholwe ukusuka Kumhlinzeki Kamazisi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 -msgid "No SAML request provided" -msgstr "Asikho isicelo se-SAML esinikeziwe" +msgid "Error report sent" +msgstr "Umbiko wephutha uthunyelwe" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 -msgid "Unhandled exception" -msgstr "Okuhlukile okungasingathiwe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "Error when communicating with the CAS server." +msgstr "Iphutha ngenkathi kuxhunyanwa neseva ye-CAS." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 -msgid "Unknown certificate" -msgstr "Isitifiketi esingaziwa" +msgid "Explain what you did when this error occurred..." +msgstr "Chaza ukuthi yini oyenzile ngenkathi kuvela leli phutha..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 -msgid "Authentication aborted" -msgstr "Ukuqinisekisa kuyekisiwe" +msgid "Format" +msgstr "Ifomethi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 -msgid "Incorrect username or password" -msgstr "Igama lomsebenzisi elingalungile noma iphasiwedi" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Buyela emuva ekhasini lokufaka le-SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 -msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." -msgstr "Ufinyelele ukusebenzisana Kwesevisi Yomthengi Yesimemezelo, kodwa awuzange uhlinzeke Ngempendulo Yokuqinisekisa ye-SAML. Sicela uphawule ukuthi isiphetho asihloselwe ukufinyelelwa ngokuqondile." +msgid "Hello, Untranslated World!" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 -msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." -msgstr "Ufinyelele ukusebenzisana Kwesevisi Yokucaciswa Kobuciko, kodwa awuzange uhlinzeke umlayezo we-SAML ArtifactResolve. Sicela uphawule ukuthi isiphetho asihloselwe ukufinyelelwa ngokuqondile." +msgid "Help desk homepage" +msgstr "Ikhasi lasekhaya ledeski losizo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:191 -msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" -msgstr "Iphutha lokuqinisekisa kumthombo othi %AUTHSOURCE%. Isizathu besithi: %REASON%" +msgid "Help! I don't remember my password." +msgstr "Siza! Angiyikhumbuli iphasiwedi yami." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 -msgid "There is an error in the request to this page. The reason was: %REASON%" -msgstr "Kukhona iphutha kusicelo saleli khasi. Isizathu besithi: %REASON%" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Sawubona, leli ikhasi lesimo se-SimpleSAMLphp. Lapha ungakwazi ukubona ukuthi iseshini yakho iphelelwe isikhathi yini, ukuthi ihlala isikhathi eside kangakanani ngaphambi kokuthi iphelelwe isikhathi kanye nazo zonke izici ezihambisana neseshini yakho." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 -msgid "Error when communicating with the CAS server." -msgstr "Iphutha ngenkathi kuxhunyanwa neseva ye-CAS." +msgid "How to get help" +msgstr "Indlela yokuthola usizo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 -msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "I-SimpleSAMLphp ibonakala ingamisiwe ngendlela efanele." +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:196 -msgid "An error occurred when trying to create the SAML request." -msgstr "Kuvele iphutha ngenkathi izama ukwakha isicelo se-SAML." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Igama lomsebenzisi elingalungile noma iphasiwedi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 -msgid "The parameters sent to the discovery service were not according to specifications." -msgstr "Amapharamitha athunyelwe kusevisi yokuthola abengavumelani nezici." +msgid "Incorrect username or password." +msgstr "Igama lomsebenzisi noma iphasiwedi engalungile." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 -msgid "When this identity provider tried to create an authentication response, an error occurred." -msgstr "Ngenkathi lo mhlinzeki kamazisi ezama ukwakha impendulo yokuqinisekisa, kuvele iphutha." +msgid "Information about your current session" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:203 -msgid "Authentication failed: the certificate your browser sent is invalid or cannot be read" -msgstr "Ukuqinisekisa kuhlulekile: isitifiketi esithunyelwe isiphequluli sakho asivumelekile noma asikwazi ukufundwa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Invalid certificate" +msgstr "Isifiketi esingalungile" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Invalid certificate signature" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +msgid "LDAP Error" +msgstr "Iphutha le-LDAP" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:206 msgid "LDAP is the user database, and when you try to login, we need to contact an LDAP database. An error occurred when we tried it this time." msgstr "I-LDAP iyidathabheyisi yomsebenzisi, futhi lapho uzama ukungena, sidinga ukuthinta idathabheyisi ye-LDAP. Kuvele iphutha ngesikhathi siyizama ngalesi sikhathi." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 -msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." -msgstr "Ulwazi olumayelana nomsebenzi wokuphuma wamanje lulahlekile. Kufanele ubuyele kusevisi obuzama ukuphuma kuyo futhi uzame ukuphuma futhi. Leli phutha lingabangelwa ukuphelelwa isikhathi kolwazi lokuphuma. Ulwazi lokuphuma lugcinwa isikhathi esilinganiselwe - ngokuvamile amahora ambalwa. Lokhu kude kunanoma yimuphi umsebenzi wokuphuma ovamile, ngakho leli phutha lingase libonise elinye iphutha ngomiso. Uma inkinga iphikelela, thinta umhlinzeki wakho wesevisi." +msgid "Language" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:218 -msgid "An error occurred when trying to process the Logout Request." -msgstr "Kuvele iphutha ngenkathi izama ukucubungula Isicelo Sokuphuma." +msgid "Logged out" +msgstr "Uphume ngemvume" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 -msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." -msgstr "Idatha yeseshini yakho ayikwazi ukubuyiswa njengamanje ngenxa yezinkinga zobuchwepheshe. Sicela uzame futhi emizuzwini embalwa." +msgid "Logging out of the following services:" +msgstr "Iyaphuma kumasevisi alandelayo:" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 -msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." -msgstr "Kukhona umiso olungafanele kukufaka kwakho kwe-SimpleSAMLphp. Uma ungumlawuli wale sevisi, kufanele wenze isiqiniseko sokuthi umiso lwakho lwemethadatha lumiswe ngendlela efanele." +msgid "Logging out..." +msgstr "Iyaphuma..." -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 -#, php-format -msgid "Unable to locate metadata for %ENTITYID%" -msgstr "Ayikwazi ukuthola imethadatha yokuthi %ENTITYID%" +msgid "Login" +msgstr "Ngena" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 -msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." -msgstr "Lesi siphetho asivunyelwe. Hlola izinketho zokuvumela kumiso lwakho lwe-SimpleSAMLphp." +msgid "Login at" +msgstr "Ngena kokuthi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 -msgid "Authentication failed: your browser did not send any certificate" -msgstr "Ukuqinisekisa kuhlulekile: isiphequluli sakho asizange sithumele noma yisiphi isitifiketi" +msgid "Logout" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 -msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." -msgstr "Umqalisi walesi sicelo akazange ahlinzeke ngepharamitha ye-RelayState ebonisa ukuthi kufanele uye kuphi ngokulandelayo." +msgid "Logout failed" +msgstr "Ukuphuma kuhlulekile" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 -msgid "State information lost, and no way to restart the request" -msgstr "Ulwazi lwesifunda lulahlekile, futhi ayikho indlela yokuqala kabusha isicelo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Ulwazi lokuphuma lulahlekile" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 -msgid "The given page was not found. The URL was: %URL%" -msgstr "Ikhasi elinikeziwe alitholakalanga. I-URL ibithi: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Imethadatha ayitholakalanga" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 -msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" -msgstr "Ikhasi elinikeziwe alitholakalanga. Isizathu besithi: %REASON% I-URL ibithi: %URL%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +msgid "Method not allowed" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 -msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." -msgstr "Iphasiwedi kumiso (auth.adminpassword) ayishintshiwe kunani elizenzakalelayo. Sicela uhlele ifayela lomiso." +msgid "Next" +msgstr "Okulandelayo" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 -msgid "You did not present a valid certificate." -msgstr "Awuzange wethule isitifiketi esilungile." +msgid "No" +msgstr "Cha" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 -msgid "We did not accept the response sent from the Identity Provider." -msgstr "Asizange samukele impendulo ethunyelwe ukusuka Kumhlinzeki Kamazisi." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +msgid "No RelayState" +msgstr "Ayikho I-RelayState" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 -msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." -msgstr "Lo Mhlinzeki Kamazisi uthole Isicelo Sokuqinisekisa ukusuka Kumhlinzeki Wesevisi, kodw,a kuvele iphutha ngenkathi ezama ukucubungula isicelo." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:71 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No SAML message provided" +msgstr "Awukho umlayezo we-SAML onikeziwe" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 -msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" -msgstr "Umhlinzeki Womazisi uphendule ngephutha. (Ikhodi yesimo Sempendulo ye-SAML ayizange iphumelele)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No SAML request provided" +msgstr "Asikho isicelo se-SAML esinikeziwe" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 -msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." -msgstr "Ufinyelele ukusebenzisana kwe-SingleLogoutService, kodwa awuzange uhlinzeke nge-SAML LogoutRequest noma i-LogoutResponse. Sicela uphawule ukuthi isiphetho asihloselwe ukufinyelelwa ngokuqondile." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 +msgid "No SAML response provided" +msgstr "Ayikho impendulo ye-SAML enikeziwe" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 -msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." -msgstr "Ufinyelele ukusebenzisana Kwesevisi Yokubhalisa Okukodwa, kodwa awuzange uhlinzeke Ngempendulo Yokuqinisekisa ye-SAML. Sicela uphawule ukuthi isiphetho asihloselwe ukufinyelelwa ngokuqondile." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "No access" +msgstr "Akukho ukufinyelela" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:257 -msgid "An unhandled exception was thrown." -msgstr "Okuhlukile okungasingathiwe kulahliwe." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +msgid "No certificate" +msgstr "Asikho isitifiketi" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:258 -msgid "Authentication failed: the certificate your browser sent is unknown" -msgstr "Ukuqinisekisa kuhlulekile: isitifiketi esithunyelwe isiphequluli sakho asaziwa" +msgid "No identity providers found. Cannot continue." +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 -msgid "The authentication was aborted by the user" -msgstr "Ukuqinisekisa kuyekiswe umsebenzisi" +msgid "No, cancel" +msgstr "Cha, khansela" -#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:260 -msgid "Either no user with the given username could be found, or the password you gave was wrong. Please check the username and try again." -msgstr "Kungenzeka ukuthi akekho umsebenzisi onegama lomsebenzisi otholiwe, noma iphasiwedi oyinikezile ayilungile. Sicela uhlole igama lomsebenzisi bese uzame futhi." +msgid "No, only %SP%" +msgstr "Cha, ku-%SP% kuphela" -msgid "Format" -msgstr "Ifomethi" +msgid "On hold" +msgstr "Imisiwe" -msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." -msgstr "Sawubona, leli ikhasi lesimo se-SimpleSAMLphp. Lapha ungakwazi ukubona ukuthi iseshini yakho iphelelwe isikhathi yini, ukuthi ihlala isikhathi eside kangakanani ngaphambi kokuthi iphelelwe isikhathi kanye nazo zonke izici ezihambisana neseshini yakho." +msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Isevisi eyodwa noma ngaphezulu ongene kuyo ayikusekeli ukuphuma. Ukuze wenze isiqiniseko sokuthi wonke amaseshini akho avaliwe, ukhuthazwa ukuthi uvale isiphequluli sakho sewebhu." -msgid "SAML Subject" -msgstr "Isihloko Se-SAML" +msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" +msgstr "Faka ngokuzithandela ikheli lakho le-imeyili, ukuze abalawuli bakwazi ukukuthinta ngemibuzo eyengeziwe mayelana nenkinga yakho:" -msgid "not set" -msgstr "akusethiwe" +msgid "Organization" +msgstr "Inhlangano" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Page not found" +msgstr "Ikhasi alitholakali" + +msgid "Password" +msgstr "Iphasiwedi" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Password not set" +msgstr "Iphasiwedi ayisethiwe" msgid "Please select the identity provider where you want to authenticate:" msgstr "Sicela ukhethe umhlinzeki kamazisi lapho ofuna ukuqinisekisa khona:" +msgid "Remember" +msgstr "Khumbula" + +msgid "Remember me" +msgstr "Ngikhumbule" + msgid "Remember my choice" msgstr "Khumbula ukukhetha kwami" +msgid "Remember my username" +msgstr "Khumbula igama lami lomsebenzisi" + +msgid "Report errors" +msgstr "Amaphutha ombiko" + +msgid "Return to service" +msgstr "Buyela kusevisi" + +msgid "SAML 2.0 SP Demo Example" +msgstr "Isampula Ledemo Ye-SAML 2.0 SP" + +msgid "SAML Subject" +msgstr "Isihloko Se-SAML" + msgid "Select" msgstr "Khetha" msgid "Select your identity provider" msgstr "Khetha umhlinzeki wakho kamazisi" -msgid "Yes, continue" -msgstr "Yebo, qhubeka" - -msgid "Debug information" -msgstr "Ulwazi lokususwa kwephutha" +msgid "Send e-mail to help desk" +msgstr "Thumela i-imeyili edeskini losizo" -msgid "E-mail address:" -msgstr "Ikheli le-imeyili:" +msgid "Send error report" +msgstr "Thumela umbiko wephutha" -msgid "Explain what you did when this error occurred..." -msgstr "Chaza ukuthi yini oyenzile ngenkathi kuvela leli phutha..." +msgid "Sending message" +msgstr "" -msgid "How to get help" -msgstr "Indlela yokuthola usizo" +msgid "Service Provider" +msgstr "Umhlinzeki Wesevisi" -msgid "Optionally enter your email address, for the administrators to be able contact you for further questions about your issue:" -msgstr "Faka ngokuzithandela ikheli lakho le-imeyili, ukuze abalawuli bakwazi ukukuthinta ngemibuzo eyengeziwe mayelana nenkinga yakho:" +msgid "Session size: %SIZE%" +msgstr "Usayizi weseshini: %SIZE%" -msgid "Report errors" -msgstr "Amaphutha ombiko" +msgid "Shibboleth demo" +msgstr "Idemo ye-Shibboleth" -msgid "Send error report" -msgstr "Thumela umbiko wephutha" +msgid "SimpleSAMLphp Diagnostics" +msgstr "Ukuhlonzwa Kwe-SimpleSAMLphp" -msgid "The debug information below may be of interest to the administrator / help desk:" -msgstr "Ulwazi lokususwa kwephutha olungezansi lungase lukhange kumlawuli / ideski losizo:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 +msgid "SimpleSAMLphp appears to be misconfigured." +msgstr "I-SimpleSAMLphp ibonakala ingamisiwe ngendlela efanele." -msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." -msgstr "Leli phutha kungenzeka ukuthi libangelwa indlela yokuziphatha engalindelwe noma umiso olungafanele lwe-SimpleSAMLphp. Thinta umlawuli wale sevisi yokungena, bese umthumela umlayezo wephutha ongenhla." +msgid "SimpleSAMLphp error" +msgstr "Iphutha le-SimpleSAMLphp" -msgid "Next" -msgstr "Okulandelayo" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" -msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." -msgstr "Uthumele okuthile ekhasini lokungena, kodwa ngasizathu simbe iphasiwedi ayizange ithunyelwe. Sicela uzame futhi." +msgid "Some error occurred" +msgstr "Kuvele iphutha elithile" -msgid "Login" -msgstr "Ngena" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "State information lost" +msgstr "Ulwazi lwesifunda lulahlekile" -msgid "Shibboleth demo" -msgstr "Idemo ye-Shibboleth" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:234 +msgid "State information lost, and no way to restart the request" +msgstr "Ulwazi lwesifunda lulahlekile, futhi ayikho indlela yokuqala kabusha isicelo" -msgid "[Preferred choice]" -msgstr "[Ukukhetha okuncanyelwayo]" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "The Identity Provider responded with an error. (The status code in the SAML Response was not success)" +msgstr "Umhlinzeki Womazisi uphendule ngephutha. (Ikhodi yesimo Sempendulo ye-SAML ayizange iphumelele)" -msgid "Help! I don't remember my password." -msgstr "Siza! Angiyikhumbuli iphasiwedi yami." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 +msgid "The authentication was aborted by the user" +msgstr "Ukuqinisekisa kuyekiswe umsebenzisi" -msgid "Return to service" -msgstr "Buyela kusevisi" +msgid "The debug information below may be of interest to the administrator / help desk:" +msgstr "Ulwazi lokususwa kwephutha olungezansi lungase lukhange kumlawuli / ideski losizo:" -msgid "On hold" -msgstr "Imisiwe" +msgid "The error report has been sent to the administrators." +msgstr "Umbiko wephutha uthunyelwe kubalawuli." -msgid "Yes, all services" -msgstr "Yebo, wonke amasevisi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:235 +msgid "The given page was not found. The URL was: %URL%" +msgstr "Ikhasi elinikeziwe alitholakalanga. I-URL ibithi: %URL%" -msgid "Help desk homepage" -msgstr "Ikhasi lasekhaya ledeski losizo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:236 +msgid "The given page was not found. The reason was: %REASON% The URL was: %URL%" +msgstr "Ikhasi elinikeziwe alitholakalanga. Isizathu besithi: %REASON% I-URL ibithi: %URL%" -msgid "Login at" -msgstr "Ngena kokuthi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:209 +msgid "The information about the current logout operation has been lost. You should return to the service you were trying to log out from and try to log out again. This error can be caused by the logout information expiring. The logout information is stored for a limited amount of time - usually a number of hours. This is longer than any normal logout operation should take, so this error may indicate some other error with the configuration. If the problem persists, contact your service provider." +msgstr "Ulwazi olumayelana nomsebenzi wokuphuma wamanje lulahlekile. Kufanele ubuyele kusevisi obuzama ukuphuma kuyo futhi uzame ukuphuma futhi. Leli phutha lingabangelwa ukuphelelwa isikhathi kolwazi lokuphuma. Ulwazi lokuphuma lugcinwa isikhathi esilinganiselwe - ngokuvamile amahora ambalwa. Lokhu kude kunanoma yimuphi umsebenzi wokuphuma ovamile, ngakho leli phutha lingase libonise elinye iphutha ngomiso. Uma inkinga iphikelela, thinta umhlinzeki wakho wesevisi." -msgid "Remember" -msgstr "Khumbula" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:231 +msgid "The initiator of this request did not provide a RelayState parameter indicating where to go next." +msgstr "Umqalisi walesi sicelo akazange ahlinzeke ngepharamitha ye-RelayState ebonisa ukuthi kufanele uye kuphi ngokulandelayo." -msgid "Completed" -msgstr "Kuqedile" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:197 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "Amapharamitha athunyelwe kusevisi yokuthola abengavumelani nezici." -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Isevisi icele ukuthi uziqinisekise. Sicela ufake igama lakho lomsebenzisi nephasiwedi ngohlobo olungezansi." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:194 +msgid "The password in the configuration (auth.adminpassword) is not a hashed value. Full details on how to fix this are supplied at https://github.com/simplesamlphp/simplesamlphp/wiki/Frequently-Asked-Questions-(FAQ)#failed-to-login-to-the-admin-page-with-and-error-message-admin-password-not-set-to-a-hashed-value" +msgstr "" -msgid "No, only %SP%" -msgstr "Cha, ku-%SP% kuphela" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." +msgstr "Iphasiwedi kumiso (auth.adminpassword) ayishintshiwe kunani elizenzakalelayo. Sicela uhlele ifayela lomiso." -msgid "Username" -msgstr "Igama lomsebenzisi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:193 +msgid "There is an error in the request to this page. The reason was: %REASON%" +msgstr "Kukhona iphutha kusicelo saleli khasi. Isizathu besithi: %REASON%" -msgid "SimpleSAMLphp error" -msgstr "Iphutha le-SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:222 +msgid "There is some misconfiguration of your SimpleSAMLphp installation. If you are the administrator of this service, you should make sure your metadata configuration is correctly setup." +msgstr "Kukhona umiso olungafanele kukufaka kwakho kwe-SimpleSAMLphp. Uma ungumlawuli wale sevisi, kufanele wenze isiqiniseko sokuthi umiso lwakho lwemethadatha lumiswe ngendlela efanele." -msgid "No, cancel" -msgstr "Cha, khansela" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:243 +msgid "This Identity Provider received an Authentication Request from a Service Provider, but an error occurred when trying to process the request." +msgstr "Lo Mhlinzeki Kamazisi uthole Isicelo Sokuqinisekisa ukusuka Kumhlinzeki Wesevisi, kodw,a kuvele iphutha ngenkathi ezama ukucubungula isicelo." -msgid "SimpleSAMLphp Diagnostics" -msgstr "Ukuhlonzwa Kwe-SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:227 +msgid "This endpoint is not enabled. Check the enable options in your configuration of SimpleSAMLphp." +msgstr "Lesi siphetho asivunyelwe. Hlola izinketho zokuvumela kumiso lwakho lwe-SimpleSAMLphp." -msgid "Contact information:" -msgstr "Ulwazi lokuxhumana:" +msgid "This error probably is due to some unexpected behaviour or to misconfiguration of SimpleSAMLphp. Contact the administrator of this login service, and send them the error message above." +msgstr "Leli phutha kungenzeka ukuthi libangelwa indlela yokuziphatha engalindelwe noma umiso olungafanele lwe-SimpleSAMLphp. Thinta umlawuli wale sevisi yokungena, bese umthumela umlayezo wephutha ongenhla." -msgid "Error report sent" -msgstr "Umbiko wephutha uthunyelwe" +msgid "Tracking number" +msgstr "" -msgid "Remember me" -msgstr "Ngikhumbule" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "Ayikwazi ukuthola imethadatha yokuthi %ENTITYID%" -msgid "You have previously chosen to authenticate at" -msgstr "Ngaphambilini ukhethe ukuqinisekisa kokuthi" +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Ayikwazi ukuphuma kusevisi eyodwa noma ngaphezulu. Ukuze wenze isiqiniseko sokuthi wonke amaseshini akho avaliwe, ukhuthazwa ukuthi uvale isiphequluli sakho sewebhu." -msgid "Remember my username" -msgstr "Khumbula igama lami lomsebenzisi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +msgid "Unable to validate certificate signature." +msgstr "" -msgid "Enter your username and password" -msgstr "Faka igama lakho lomsebenzisi nephasiwedi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "Unhandled exception" +msgstr "Okuhlukile okungasingathiwe" -msgid "Logging out of the following services:" -msgstr "Iyaphuma kumasevisi alandelayo:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +msgid "Unknown certificate" +msgstr "Isitifiketi esingaziwa" -msgid "You have successfully logged out from all services listed above." -msgstr "Uphume ngempumelelo kuwo wonke amasevisi abhalwe ngenhla." +msgid "Username" +msgstr "Igama lomsebenzisi" -msgid "Incorrect username or password." -msgstr "Igama lomsebenzisi noma iphasiwedi engalungile." +msgid "Warning" +msgstr "" -msgid "Error" -msgstr "Iphutha" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "Asizange samukele impendulo ethunyelwe ukusuka Kumhlinzeki Kamazisi." -msgid "You have been logged out." -msgstr "Usuphumile." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:200 +msgid "When this identity provider tried to create an authentication response, an error occurred." +msgstr "Ngenkathi lo mhlinzeki kamazisi ezama ukwakha impendulo yokuqinisekisa, kuvele iphutha." -msgid "Service Provider" -msgstr "Umhlinzeki Wesevisi" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Ngaphandle kwegama lakho lomsebenzisi nephasiwedi awukwazi ukuziqinisekisa ukuze ufinyelele isevisi. Kungase kube khona ozokusiza. Thinta ideski losizo enhlanganweni yakho!" -msgid "SAML 2.0 SP Demo Example" -msgstr "Isampula Ledemo Ye-SAML 2.0 SP" +msgid "World" +msgstr "" -msgid "Choose home organization" -msgstr "Khetha inhlangano yasekhaya" +msgid "Yes, all services" +msgstr "Yebo, wonke amasevisi" -msgid "One or more of the services you are logged into do not support logout. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Isevisi eyodwa noma ngaphezulu ongene kuyo ayikusekeli ukuphuma. Ukuze wenze isiqiniseko sokuthi wonke amaseshini akho avaliwe, ukhuthazwa ukuthi uvale isiphequluli sakho sewebhu." +msgid "Yes, continue" +msgstr "Yebo, qhubeka" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." -msgstr "Ayikwazi ukuphuma kusevisi eyodwa noma ngaphezulu. Ukuze wenze isiqiniseko sokuthi wonke amaseshini akho avaliwe, ukhuthazwa ukuthi uvale isiphequluli sakho sewebhu." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:187 +msgid "You accessed the Artifact Resolution Service interface, but did not provide a SAML ArtifactResolve message. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ufinyelele ukusebenzisana Kwesevisi Yokucaciswa Kobuciko, kodwa awuzange uhlinzeke umlayezo we-SAML ArtifactResolve. Sicela uphawule ukuthi isiphetho asihloselwe ukufinyelelwa ngokuqondile." -msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." -msgstr "Ukhethe okuthi %HOMEORG% njengenhlangano yakho yasekhaya. Uma lokhu kungalungile ungase ukhethe enye." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:183 +msgid "You accessed the Assertion Consumer Service interface, but did not provide a SAML Authentication Response. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ufinyelele ukusebenzisana Kwesevisi Yomthengi Yesimemezelo, kodwa awuzange uhlinzeke Ngempendulo Yokuqinisekisa ye-SAML. Sicela uphawule ukuthi isiphetho asihloselwe ukufinyelelwa ngokuqondile." -msgid "Go back to SimpleSAMLphp installation page" -msgstr "Buyela emuva ekhasini lokufaka le-SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +msgid "You accessed the Single Sign On Service interface, but did not provide a SAML Authentication Request. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ufinyelele ukusebenzisana Kwesevisi Yokubhalisa Okukodwa, kodwa awuzange uhlinzeke Ngempendulo Yokuqinisekisa ye-SAML. Sicela uphawule ukuthi isiphetho asihloselwe ukufinyelelwa ngokuqondile." -msgid "Session size: %SIZE%" -msgstr "Usayizi weseshini: %SIZE%" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:249 +msgid "You accessed the SingleLogoutService interface, but did not provide a SAML LogoutRequest or LogoutResponse. Please note that this endpoint is not intended to be accessed directly." +msgstr "Ufinyelele ukusebenzisana kwe-SingleLogoutService, kodwa awuzange uhlinzeke nge-SAML LogoutRequest noma i-LogoutResponse. Sicela uphawule ukuthi isiphetho asihloselwe ukufinyelelwa ngokuqondile." msgid "You are also logged in on these services:" msgstr "Ungenile futhi kulawa masevisi:" -msgid "Do you want to logout from all the services above?" -msgstr "Ingabe ufuna ukuphuma kuwo wonke amasevisi angenhla?" - msgid "You are now successfully logged out from %SP%." msgstr "Usuphume ngempumelelo kokuthi %SP%." -msgid "Organization" -msgstr "Inhlangano" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:241 +msgid "You did not present a valid certificate." +msgstr "Awuzange wethule isitifiketi esilungile." -msgid "Some error occurred" -msgstr "Kuvele iphutha elithile" +msgid "You have been logged out." +msgstr "Usuphumile." -msgid "The error report has been sent to the administrators." -msgstr "Umbiko wephutha uthunyelwe kubalawuli." +msgid "You have chosen %HOMEORG% as your home organization. If this is wrong you may choose another one." +msgstr "Ukhethe okuthi %HOMEORG% njengenhlangano yakho yasekhaya. Uma lokhu kungalungile ungase ukhethe enye." -msgid "Send e-mail to help desk" -msgstr "Thumela i-imeyili edeskini losizo" +msgid "You have previously chosen to authenticate at" +msgstr "Ngaphambilini ukhethe ukuqinisekisa kokuthi" -msgid "Logged out" -msgstr "Uphume ngemvume" +msgid "You have successfully logged out from all services listed above." +msgstr "Uphume ngempumelelo kuwo wonke amasevisi abhalwe ngenhla." -msgid "Logout failed" -msgstr "Ukuphuma kuhlulekile" +msgid "You sent something to the login page, but for some reason the password was not sent. Try again please." +msgstr "Uthumele okuthile ekhasini lokungena, kodwa ngasizathu simbe iphasiwedi ayizange ithunyelwe. Sicela uzame futhi." -msgid "Password" -msgstr "Iphasiwedi" +msgid "Your attributes" +msgstr "" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Ngaphandle kwegama lakho lomsebenzisi nephasiwedi awukwazi ukuziqinisekisa ukuze ufinyelele isevisi. Kungase kube khona ozokusiza. Thinta ideski losizo enhlanganweni yakho!" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:219 +msgid "Your session data cannot be retrieved right now due to technical difficulties. Please try again in a few minutes." +msgstr "Idatha yeseshini yakho ayikwazi ukubuyiswa njengamanje ngenxa yezinkinga zobuchwepheshe. Sicela uzame futhi emizuzwini embalwa." -msgid "No" -msgstr "Cha" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" -msgid "Logging out..." -msgstr "Iyaphuma..." +msgid "[Preferred choice]" +msgstr "[Ukukhetha okuncanyelwayo]" -msgid "Choose your home organization" -msgstr "Khetha inhlangano yakho yasekhaya" +msgid "not set" +msgstr "akusethiwe" diff --git a/metadata/saml20-sp-remote.php.dist b/metadata/saml20-sp-remote.php.dist index 7b11e4e3d5..55d7353504 100644 --- a/metadata/saml20-sp-remote.php.dist +++ b/metadata/saml20-sp-remote.php.dist @@ -10,8 +10,20 @@ * Example SimpleSAMLphp SAML 2.0 SP */ $metadata['https://saml2sp.example.org'] = [ - 'AssertionConsumerService' => 'https://saml2.example.org/module.php/saml/sp/saml2-acs.php/default-sp', - 'SingleLogoutService' => 'https://saml2sp.example.org/module.php/saml/sp/saml2-logout.php/default-sp', + 'AssertionConsumerService' => [ + [ + 'index' => 1, + 'isDefault' => true, + 'Location' => 'https://saml2.example.org/module.php/saml/sp/saml2-acs.php/default-sp', + 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + ], + ], + 'SingleLogoutService' => [ + [ + 'Location' => 'https://saml2sp.example.org/module.php/saml/sp/saml2-logout.php/default-sp', + 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + ], + ], ]; /* @@ -22,7 +34,14 @@ $metadata['https://saml2sp.example.org'] = [ * this user has the value of 'john'. */ $metadata['google.com'] = [ - 'AssertionConsumerService' => 'https://www.google.com/a/g.feide.no/acs', + 'AssertionConsumerService' => [ + [ + 'index' => 1, + 'isDefault' => true, + 'Location' => 'https://www.google.com/a/g.feide.no/acs', + 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + ], + ], 'NameIDFormat' => 'urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress', 'authproc' => [ 1 => [ @@ -34,8 +53,17 @@ $metadata['google.com'] = [ 'simplesaml.attributes' => false, ]; + $metadata['https://legacy.example.edu'] = [ - 'AssertionConsumerService' => 'https://legacy.example.edu/saml/acs', + 'AssertionConsumerService' => [ + [ + 'index' => 1, + 'isDefault' => true, + 'Location' => 'https://legacy.example.edu/saml/acs', + 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', + ], + ], + /* * Currently, SimpleSAMLphp defaults to the SHA-256 hashing algorithm. * Uncomment the following option to use SHA-1 for signatures directed diff --git a/modules/.gitignore b/modules/.gitignore index 1ef007aef4..f296fea6a5 100644 --- a/modules/.gitignore +++ b/modules/.gitignore @@ -6,6 +6,7 @@ !/admin/ !/core/ !/cron/ +!/debugsp/ !/exampleauth/ !/multiauth/ !/saml/ diff --git a/modules/admin/locales/af/LC_MESSAGES/admin.po b/modules/admin/locales/af/LC_MESSAGES/admin.po index e1ecf6e60d..69abbee515 100644 --- a/modules/admin/locales/af/LC_MESSAGES/admin.po +++ b/modules/admin/locales/af/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" +msgstr "" + +msgid "Authentication data" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Certificates" +msgstr "" + +msgid "Checking your PHP installation" +msgstr "" + +msgid "Checks" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "" + +msgid "Content of jpegPhoto attribute" +msgstr "" + +msgid "Converted metadata" +msgstr "" + +msgid "Copy to clipboard" msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "In SAML 2.0 Metadata XML format:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 -msgid "LDAP extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +msgid "Logout" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgid "Metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata parser" +msgstr "Metadata parser" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" +msgid "Parse" msgstr "" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" +msgid "SAML Metadata" msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" +msgid "Search" msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" msgstr "" -msgid "Your session is valid for %remaining% seconds from now." +msgid "SimpleSAMLphp Metadata" msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" +msgid "SimpleSAMLphp installation page" msgstr "" -msgid "Deprecated" -msgstr "Deprecated" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" +msgid "XML metadata" msgstr "" -msgid "expires" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" msgstr "" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" +msgid "You can get the metadata XML on a dedicated URL:" msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" +msgid "Your attributes" msgstr "" -msgid "Metadata parser" -msgstr "Metadata parser" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" msgstr "" -msgid "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" +msgid "new" msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/ar/LC_MESSAGES/admin.po b/modules/admin/locales/ar/LC_MESSAGES/admin.po index a9455d1be5..9091ff2238 100644 --- a/modules/admin/locales/ar/LC_MESSAGES/admin.po +++ b/modules/admin/locales/ar/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "تشخيص اسم المضيف، المنفذ، الطريقة" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "انت لا تستخدم HTTPS - محادثة مشفرة مع المستخدم. HTTP جيد للاختبارات لكن في بيئة النظام المبدئي ينبغي استخدام HTTPS. [ read more about SimpleSAMLphp maintenance]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "الشهادات" + +msgid "Checking your PHP installation" +msgstr "تاكد من إنزال PHP" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "الترتيب" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "بيانات وصفية محولة" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "استنكار" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "تشخيص اسم المضيف، المنفذ، الطريقة" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "الدخول الموحد" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "بيانات SAML 2.0 الوصفية بصيغة XML" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "تسجيل الخروج" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "انت لا تستخدم HTTPS - محادثة مشفرة مع المستخدم. HTTP جيد للاختبارات لكن في بيئة النظام المبدئي ينبغي استخدام HTTPS. [ read more about SimpleSAMLphp maintenance]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "بيانات وصفية/ ميتاداتا" + +msgid "Metadata parser" +msgstr "محلل البيانات الوصفية/الميتاداتا" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "حول البيانات الوصفية من صيغة XML الي SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "الترتيب" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "الدخول الموحد" +msgid "Parse" +msgstr "حلل" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "تسجيل الخروج" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "صفحة تركيب SimpleSAMLphp" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "السمات" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "ستستمر جلستك ل٪عدد ثواني٪ ثانية تبدأ الان" +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "الشهادات" +msgid "SimpleSAMLphp installation page" +msgstr "صفحة تركيب SimpleSAMLphp" -msgid "Deprecated" -msgstr "استنكار" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "بيانات SAML 2.0 الوصفية بصيغة XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "بيانات وصفية بصيغة XML" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "حول البيانات الوصفية من صيغة XML الي SimpleSAMLphp" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "بيانات وصفية/ ميتاداتا" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "بيانات وصفية محولة" +msgid "Your attributes" +msgstr "السمات" -msgid "Metadata parser" -msgstr "محلل البيانات الوصفية/الميتاداتا" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "ستستمر جلستك ل٪عدد ثواني٪ ثانية تبدأ الان" -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "حلل" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "بيانات وصفية بصيغة XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "تاكد من إنزال PHP" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/ca/LC_MESSAGES/admin.po b/modules/admin/locales/ca/LC_MESSAGES/admin.po index 8cc8a172e9..4c851ea4c9 100644 --- a/modules/admin/locales/ca/LC_MESSAGES/admin.po +++ b/modules/admin/locales/ca/LC_MESSAGES/admin.po @@ -1,4 +1,346 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" +msgstr "" + +msgid "An error occurred" +msgstr "" + +msgid "Authentication data" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Certificates" +msgstr "" + +msgid "Checks" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "" + +msgid "Content of jpegPhoto attribute" +msgstr "" + +msgid "Converted metadata" +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" +msgstr "" + +msgid "Deprecated" +msgstr "" + +msgid "Details" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "" + +msgid "EntityID" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "" + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "" + +msgid "Hosted entities" +msgstr "" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "" + +msgid "Logged out" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Look up metadata for entity:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgstr "" + +msgid "Metadata" +msgstr "" + +msgid "Metadata parser" +msgstr "" + +msgid "Modules" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" + +msgid "No file selected." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" +msgstr "" + +msgid "Parse" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "" + +msgid "SAML Metadata" +msgstr "" + +msgid "SAML Subject" +msgstr "" + +msgid "Search" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" + +msgid "SimpleSAMLphp Metadata" +msgstr "" + +msgid "SimpleSAMLphp Show Metadata" +msgstr "" + +msgid "SimpleSAMLphp installation page" +msgstr "" + +msgid "SimpleSAMLphp is installed in:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "" + +msgid "Technical information" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" + +msgid "Test Authentication Sources" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgstr "" + +msgid "Tools" +msgstr "" + +msgid "Trusted entities" +msgstr "" + +msgid "Type:" +msgstr "" + +msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" +msgstr "" + +msgid "XML metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "" + +msgid "You are running version %version%." +msgstr "" + +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" + +msgid "You have been logged out." +msgstr "" + +msgid "You have the following modules installed" +msgstr "" + +msgid "Your attributes" +msgstr "" + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" + +msgid "default" +msgstr "" + +msgid "disabled" +msgstr "" + +msgid "enabled" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "expires" +msgstr "" + +msgid "means the module is not enabled" +msgstr "" + +msgid "new" +msgstr "" + +msgid "not set" +msgstr "" + +msgid "optional" +msgstr "" + +msgid "or select a file:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" +msgstr "" + +msgid "required" +msgstr "" diff --git a/modules/admin/locales/cs/LC_MESSAGES/admin.po b/modules/admin/locales/cs/LC_MESSAGES/admin.po index 234faeb8d8..df77fbb714 100644 --- a/modules/admin/locales/cs/LC_MESSAGES/admin.po +++ b/modules/admin/locales/cs/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnoza jména počítače, portu a protokolu" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Nepoužíváte HTTPS - šivrovanou komunikaci s uživatelem. HTTP je vhodné jen k testovacím účelům, pro produkční účely použijte HTTPS. [ Čtete více o údržbě SimpleSAMLphp ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Certifikáty" + +msgid "Checking your PHP installation" +msgstr "Test vaší PHP instalace" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfigurace" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Konvertovaná metadata" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Zastaralé" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnoza jména počítače, portu a protokolu" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federace" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Ve formátu SAML 2.0 XML metadata:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Odhlášení" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Nepoužíváte HTTPS - šivrovanou komunikaci s uživatelem. HTTP je vhodné jen k testovacím účelům, pro produkční účely použijte HTTPS. [ Čtete více o údržbě SimpleSAMLphp ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadata" + +msgid "Metadata parser" +msgstr "Metadata parser" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Konverze XML metadat do simpleSAMLPHP" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfigurace" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federace" +msgid "Parse" +msgstr "Analýza" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Odhlášení" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "Instalační stránka SimpleSAMLphp" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Vaše atributy" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Vaše sezení je platné ještě %remaining% sekund." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Certifikáty" +msgid "SimpleSAMLphp installation page" +msgstr "Instalační stránka SimpleSAMLphp" -msgid "Deprecated" -msgstr "Zastaralé" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Ve formátu SAML 2.0 XML metadata:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML metadata" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Konverze XML metadat do simpleSAMLPHP" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadata" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Konvertovaná metadata" +msgid "Your attributes" +msgstr "Vaše atributy" -msgid "Metadata parser" -msgstr "Metadata parser" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Vaše sezení je platné ještě %remaining% sekund." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Analýza" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Test vaší PHP instalace" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/da/LC_MESSAGES/admin.po b/modules/admin/locales/da/LC_MESSAGES/admin.po index 6af710ad64..240560a0bb 100644 --- a/modules/admin/locales/da/LC_MESSAGES/admin.po +++ b/modules/admin/locales/da/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "Opsætningen benytter standard 'secret salt' - sørg for at ændre standard indstillingen for 'secretsalt' i simpleSAML opsætningen i produktionssystemer. [Læs mere om SimpleSAMLphp opsætning. ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnosticér hostnavn, port og protokol" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Du benytter ikke HTTPS-krypteret kommunikation med brugeren. SimpleSAMLphp vil fungere uden problemer med HTTP alene, men hvis du anvender systemet i produktionssystemer, anbefales det stærkt at benytte sikker kommunikation i form af HTTPS. [ læs mere i dokumentet: SimpleSAMLphp maintenance ] " -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Certifikater" + +msgid "Checking your PHP installation" +msgstr "Checker din PHP-installation" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfiguration" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Konverteret metadata" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Under udfasning" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnosticér hostnavn, port og protokol" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Føderation" + +msgid "Format" +msgstr "Format" + +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "I SAML 2.0 metadata xml-format:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Log ud" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Du benytter ikke HTTPS-krypteret kommunikation med brugeren. SimpleSAMLphp vil fungere uden problemer med HTTP alene, men hvis du anvender systemet i produktionssystemer, anbefales det stærkt at benytte sikker kommunikation i form af HTTPS. [ læs mere i dokumentet: SimpleSAMLphp maintenance ] " +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." -msgstr "Opsætningen benytter standard 'secret salt' - sørg for at ændre standard indstillingen for 'secretsalt' i simpleSAML opsætningen i produktionssystemer. [Læs mere om SimpleSAMLphp opsætning. ]" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadata" + +msgid "Metadata parser" +msgstr "Metadata parser" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML til SimpleSAMLphp metadata oversætter" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfiguration" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Føderation" +msgid "Parse" +msgstr "Parse" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" -msgstr "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Log ud" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "SAML emne" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp installationsside" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Dine oplysninger" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Du har %remaining% tilbage af din session" +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" -msgstr "ikke angivet" +msgid "SimpleSAMLphp Show Metadata" +msgstr "" -msgid "Certificates" -msgstr "Certifikater" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp installationsside" -msgid "Deprecated" -msgstr "Under udfasning" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "I SAML 2.0 metadata xml-format:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML metadata" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML til SimpleSAMLphp metadata oversætter" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadata" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Konverteret metadata" +msgid "Your attributes" +msgstr "Dine oplysninger" -msgid "Metadata parser" -msgstr "Metadata parser" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Du har %remaining% tilbage af din session" -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Parse" - -msgid "XML metadata" -msgstr "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "or select a file:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "default" msgstr "" -msgid "You are running version %version%." +msgid "disabled" msgstr "" -msgid "optional" +msgid "enabled" msgstr "" -msgid "required" +msgid "expired" msgstr "" -msgid "Test Authentication Sources" +msgid "expires" msgstr "" -msgid "Checking your PHP installation" -msgstr "Checker din PHP-installation" +msgid "means the module is not enabled" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "new" msgstr "" -msgid "Radius extension" +msgid "not set" +msgstr "ikke angivet" + +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/de/LC_MESSAGES/admin.po b/modules/admin/locales/de/LC_MESSAGES/admin.po index 28949f5efb..de43397a48 100644 --- a/modules/admin/locales/de/LC_MESSAGES/admin.po +++ b/modules/admin/locales/de/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnose des Hostnamen, Ports und Protokolls" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Sie benutzen keine HTTPS - verschlüsselte Kommunikation mit dem Nutzer. SimpleSAMLphp funktioniert zum Testen auch mit HTTP problemlos, aber in einer Produktionsumgebung sollten Sie HTTPS benutzen. [ Lesen sie mehr über die Verwaltung von SimpleSAMLphp ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Zertifikate" + +msgid "Checking your PHP installation" +msgstr "Überprüfen der PHP Installation" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfiguration" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Konvertierte Metadaten" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Veraltet" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnose des Hostnamen, Ports und Protokolls" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Föderation" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Im SAML 2.0 Metadaten-XML Format:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Abmelden" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Sie benutzen keine HTTPS - verschlüsselte Kommunikation mit dem Nutzer. SimpleSAMLphp funktioniert zum Testen auch mit HTTP problemlos, aber in einer Produktionsumgebung sollten Sie HTTPS benutzen. [ Lesen sie mehr über die Verwaltung von SimpleSAMLphp ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadaten" + +msgid "Metadata parser" +msgstr "Metadatenparser" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML zu SimpleSAMLphp Metadaten Konvertierer" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfiguration" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Föderation" +msgid "Parse" +msgstr "Parse" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Abmelden" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp Installationsseite" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Ihre Attribute" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Ihre Sitzung ist noch für %remaining% Sekunden gültig." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Zertifikate" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp Installationsseite" -msgid "Deprecated" -msgstr "Veraltet" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Im SAML 2.0 Metadaten-XML Format:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML-Metadaten" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML zu SimpleSAMLphp Metadaten Konvertierer" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadaten" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Konvertierte Metadaten" +msgid "Your attributes" +msgstr "Ihre Attribute" -msgid "Metadata parser" -msgstr "Metadatenparser" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Ihre Sitzung ist noch für %remaining% Sekunden gültig." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Parse" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML-Metadaten" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Überprüfen der PHP Installation" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/el/LC_MESSAGES/admin.po b/modules/admin/locales/el/LC_MESSAGES/admin.po index a83adc1f13..aa3e733ee0 100644 --- a/modules/admin/locales/el/LC_MESSAGES/admin.po +++ b/modules/admin/locales/el/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "Χρησιμοποιείτε την προεπιλεγμένη τιμή του μυστικού κλειδιού (salt) - φροντίστε να τροποποιήσετε την παράμετρο 'secretsalt' στις ρυθμίσεις του SimpleSAMLphp σε περιβάλλον παραγωγής. [Διαβάστε περισσότερα... ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Διαγνωστικά σχετικά με ρυθμίσεις ονόματος διακομιστή, θύρας και πρωτοκόλλου" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Δεν χρησιμοποιείτε HTTPS για κρυπτογραφημένη επικοινωνία με τον χρήστη. Το HTTP επαρκεί για δοκιμαστικούς σκοπούς, ωστόσο σε περιβάλλον παραγωγής θα πρέπει να χρησιμοποιήσετε HTTPS. [ Διαβάστε περισσότερα... ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Πιστοποιητικά" + +msgid "Checking your PHP installation" +msgstr "Έλεγχος εγκατάστασης PHP" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Ρυθμίσεις" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Μετατραπέντα μεταδεδομένα" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Υπό απόσυρση" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Διαγνωστικά σχετικά με ρυθμίσεις ονόματος διακομιστή, θύρας και πρωτοκόλλου" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Ομοσπονδία" + +msgid "Format" +msgstr "Μορφή (format)" + +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Μεταδεδομένα σε μορφή xml SAML 2.0:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Αποσύνδεση" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Δεν χρησιμοποιείτε HTTPS για κρυπτογραφημένη επικοινωνία με τον χρήστη. Το HTTP επαρκεί για δοκιμαστικούς σκοπούς, ωστόσο σε περιβάλλον παραγωγής θα πρέπει να χρησιμοποιήσετε HTTPS. [ Διαβάστε περισσότερα... ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." -msgstr "Χρησιμοποιείτε την προεπιλεγμένη τιμή του μυστικού κλειδιού (salt) - φροντίστε να τροποποιήσετε την παράμετρο 'secretsalt' στις ρυθμίσεις του SimpleSAMLphp σε περιβάλλον παραγωγής. [Διαβάστε περισσότερα... ]" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Μεταδεδομένα" + +msgid "Metadata parser" +msgstr "Αναλυτής (parser) μεταδεδομένων" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Μετατροπή μεταδεδομένων από XML σε ρυθμίσεις SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Ρυθμίσεις" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Ομοσπονδία" +msgid "Parse" +msgstr "Ανάλυση" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" -msgstr "Μορφή (format)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Αποσύνδεση" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "Υποκείμενο (subject) SAML" -msgid "SimpleSAMLphp installation page" -msgstr "Σελίδα εγκατάστασης SimpleSAMLphp" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Πληροφορίες" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Απομένουν %remaining% δευτερόλεπτα μέχρι τη λήξη της συνεδρίας σας." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" -msgstr "δεν έχει οριστεί" +msgid "SimpleSAMLphp Show Metadata" +msgstr "" -msgid "Certificates" -msgstr "Πιστοποιητικά" +msgid "SimpleSAMLphp installation page" +msgstr "Σελίδα εγκατάστασης SimpleSAMLphp" -msgid "Deprecated" -msgstr "Υπό απόσυρση" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Μεταδεδομένα σε μορφή xml SAML 2.0:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "Αναλυτής μεταδεδομένων XML" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Μετατροπή μεταδεδομένων από XML σε ρυθμίσεις SimpleSAMLphp" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Μεταδεδομένα" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Μετατραπέντα μεταδεδομένα" +msgid "Your attributes" +msgstr "Πληροφορίες" -msgid "Metadata parser" -msgstr "Αναλυτής (parser) μεταδεδομένων" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Απομένουν %remaining% δευτερόλεπτα μέχρι τη λήξη της συνεδρίας σας." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Ανάλυση" - -msgid "XML metadata" -msgstr "Αναλυτής μεταδεδομένων XML" - -msgid "or select a file:" -msgstr "ή επιλέξτε αρχείο" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "SimpleSAMLphp is installed in:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" msgstr "" -msgid "You are running version %version%." +msgid "default" msgstr "" -msgid "optional" +msgid "disabled" msgstr "" -msgid "required" +msgid "enabled" msgstr "" -msgid "Test Authentication Sources" +msgid "expired" msgstr "" -msgid "Checking your PHP installation" -msgstr "Έλεγχος εγκατάστασης PHP" +msgid "expires" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "means the module is not enabled" msgstr "" -msgid "Radius extension" +msgid "new" msgstr "" -msgid "Hosted IdP metadata present" +msgid "not set" +msgstr "δεν έχει οριστεί" + +msgid "optional" msgstr "" -msgid "Matching key-pair for signing assertions" +msgid "or select a file:" +msgstr "ή επιλέξτε αρχείο" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/en/LC_MESSAGES/admin.po b/modules/admin/locales/en/LC_MESSAGES/admin.po index cbea942134..4a12e903f8 100644 --- a/modules/admin/locales/en/LC_MESSAGES/admin.po +++ b/modules/admin/locales/en/LC_MESSAGES/admin.po @@ -1,312 +1,331 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnostics on hostname, port and protocol" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" -msgstr "" +msgid "Checking your PHP installation" +msgstr "Checking your PHP installation" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 -msgid "PHP intl extension" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Configuration" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Converted metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnostics on hostname, port and protocol" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federation" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 -msgid "LDAP extension" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +msgid "In SAML 2.0 Metadata XML format:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." -msgstr "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgid "Logged out" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgid "Logout" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." -msgstr "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Look up metadata for entity:" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML to SimpleSAMLphp metadata converter" +msgid "Matching key-pair for signing assertions" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +msgid "Matching key-pair for signing metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Configuration" +msgid "Metadata" +msgstr "Metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" -msgstr "" +msgid "Metadata parser" +msgstr "Metadata parser" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federation" +msgid "Modules" +msgstr "" -msgid "Authentication data" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "No file selected." msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -msgid "Logout" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" -msgid "SAML Subject" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp installation page" +msgid "Parse" +msgstr "" -msgid "Technical information" +msgid "Radius extension" msgstr "" -msgid "Your attributes" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Your session is valid for %remaining% seconds from now." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "not set" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "Certificates" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Deprecated" -msgstr "Deprecated" +msgid "SAML Metadata" +msgstr "" -msgid "EntityID" +msgid "SAML Subject" msgstr "" -msgid "Hosted entities" +msgid "Search" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Look up metadata for entity:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" msgstr "" -msgid "SAML Metadata" +msgid "SimpleSAMLphp Metadata" msgstr "" -msgid "Search" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "SimpleSAMLphp Metadata" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp installation page" + +msgid "SimpleSAMLphp is installed in:" msgstr "" -msgid "Tools" -msgstr "Tools" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "" -msgid "Trusted entities" +msgid "Technical information" msgstr "" -msgid "Type:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" msgstr "" -msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" +msgid "Test Authentication Sources" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "expired" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "expires" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" msgstr "" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" -msgid "Back" +msgid "Tools" +msgstr "Tools" + +msgid "Trusted entities" msgstr "" -msgid "Metadata" -msgstr "Metadata" +msgid "Type:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "An error occurred" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "Converted metadata" +msgid "XML metadata" msgstr "" -msgid "Metadata parser" -msgstr "Metadata parser" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML to SimpleSAMLphp metadata converter" -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." + +msgid "You are running version %version%." msgstr "" -msgid "Parse" +msgid "You can get the metadata XML on a dedicated URL:" msgstr "" -msgid "XML metadata" +msgid "You have been logged out." msgstr "" -msgid "or select a file:" +msgid "You have the following modules installed" msgstr "" -msgid "Checks" +msgid "Your attributes" msgstr "" -msgid "Details" +msgid "Your session is valid for %remaining% seconds from now." msgstr "" -msgid "Modules" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "SimpleSAMLphp is installed in:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" msgstr "" -msgid "You are running version %version%." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" msgstr "" -msgid "You have the following modules installed" +msgid "default" msgstr "" msgid "disabled" @@ -315,35 +334,34 @@ msgstr "" msgid "enabled" msgstr "" -msgid "means the module is not enabled" +msgid "expired" msgstr "" -msgid "optional" +msgid "expires" msgstr "" -msgid "required" +msgid "means the module is not enabled" msgstr "" -msgid "Test Authentication Sources" +msgid "new" msgstr "" -msgid "Checking your PHP installation" -msgstr "Checking your PHP installation" - -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/st/LC_MESSAGES/admin.po b/modules/admin/locales/en_LS/LC_MESSAGES/admin.po similarity index 83% rename from modules/admin/locales/st/LC_MESSAGES/admin.po rename to modules/admin/locales/en_LS/LC_MESSAGES/admin.po index 528d853d6d..ed16ed8356 100644 --- a/modules/admin/locales/st/LC_MESSAGES/admin.po +++ b/modules/admin/locales/en_LS/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: en_LS\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +msgid "Checking your PHP installation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +msgid "Converted metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "Format" +msgstr "Fomata" + +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "" + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "" + +msgid "Hosted IdP metadata present" +msgstr "" + +msgid "Hosted entities" +msgstr "" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Ho tswa" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgid "Matching key-pair for signing metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" +msgid "Metadata parser" +msgstr "Metadata parser" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -msgid "Authentication data" +msgid "Parse" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension" msgstr "" -msgid "Copy to clipboard" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Format" -msgstr "Fomata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" +msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "Logout" -msgstr "Ho tswa" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "" + +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "Taba ya SAML" -msgid "SimpleSAMLphp installation page" +msgid "Search" msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Makgabane a hao" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." +msgid "SimpleSAMLphp Metadata" msgstr "" -msgid "not set" -msgstr "ha e a setwa" +msgid "SimpleSAMLphp Show Metadata" +msgstr "" -msgid "Certificates" +msgid "SimpleSAMLphp installation page" msgstr "" -msgid "Deprecated" -msgstr "Deprecated" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" -msgstr "" - -msgid "expired" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expires" +msgid "XML metadata" msgstr "" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" msgstr "" -msgid "Back" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Metadata" +msgid "You are running version %version%." msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You can get the metadata XML on a dedicated URL:" msgstr "" -msgid "An error occurred" +msgid "You have been logged out." msgstr "" -msgid "Converted metadata" +msgid "You have the following modules installed" msgstr "" -msgid "Metadata parser" -msgstr "Metadata parser" +msgid "Your attributes" +msgstr "Makgabane a hao" -msgid "No file selected." +msgid "Your session is valid for %remaining% seconds from now." msgstr "" -msgid "Parse" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" msgstr "" -msgid "or select a file:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "default" msgstr "" -msgid "You are running version %version%." +msgid "disabled" msgstr "" -msgid "optional" +msgid "enabled" msgstr "" -msgid "required" +msgid "expired" msgstr "" -msgid "Test Authentication Sources" +msgid "expires" msgstr "" -msgid "Checking your PHP installation" +msgid "means the module is not enabled" msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "new" msgstr "" -msgid "Radius extension" +msgid "not set" +msgstr "ha e a setwa" + +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/es/LC_MESSAGES/admin.po b/modules/admin/locales/es/LC_MESSAGES/admin.po index b7dc218e26..354f8917dd 100644 --- a/modules/admin/locales/es/LC_MESSAGES/admin.po +++ b/modules/admin/locales/es/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "Su configuración está usando el salt por defecto. Asegúrese de modificar la opción de configuración 'secretsalt' en entornos de producción. [Leer más sobre la configuración de SimpleSAMLphp]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnóstico sobre nombre de host, puerto y protocolo" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "No está usando HTTPS - comunicaciones cifradas con el usuario. HTTP funciona bien en entornos de evaluación, pero si va a emplearlo en producción, debería emplear HTTPS. [ Lea más acerca del mantenimiento de SimpleSAMLphp ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Certificados" + +msgid "Checking your PHP installation" +msgstr "Verificación de su instalación de PHP" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Configuración" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Metadatos convertidos" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Obsoleto" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnóstico sobre nombre de host, puerto y protocolo" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federación" + +msgid "Format" +msgstr "Formato" + +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "En formato xml de metadatos SAML 2.0:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Salir" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "No está usando HTTPS - comunicaciones cifradas con el usuario. HTTP funciona bien en entornos de evaluación, pero si va a emplearlo en producción, debería emplear HTTPS. [ Lea más acerca del mantenimiento de SimpleSAMLphp ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." -msgstr "Su configuración está usando el salt por defecto. Asegúrese de modificar la opción de configuración 'secretsalt' en entornos de producción. [Leer más sobre la configuración de SimpleSAMLphp]" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." -msgstr "Su instalación de SimpleSAMLphp está desactualizada. Por favor, actualice a la última versión lo antes posible." +msgid "Metadata" +msgstr "Metadatos" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Conversor de XML a metadatos de SimpleSAMLphp" +msgid "Metadata parser" +msgstr "Analizar metadatos" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Configuración" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federación" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -msgid "Authentication data" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Parse" +msgstr "Analizar" + +msgid "Radius extension" msgstr "" -msgid "Copy to clipboard" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Format" -msgstr "Formato" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" +msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "Logout" -msgstr "Salir" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "" + +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "Identificador SAML" -msgid "SimpleSAMLphp installation page" -msgstr "Página de instalación de SimpleSAMLphp" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Atributos" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Su sesión será valida durante %remaining% segundos." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" -msgstr "sin valor" +msgid "SimpleSAMLphp Show Metadata" +msgstr "" -msgid "Certificates" -msgstr "Certificados" +msgid "SimpleSAMLphp installation page" +msgstr "Página de instalación de SimpleSAMLphp" -msgid "Deprecated" -msgstr "Obsoleto" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "En formato xml de metadatos SAML 2.0:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "Metadatos XML" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Conversor de XML a metadatos de SimpleSAMLphp" -msgid "new" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "Su instalación de SimpleSAMLphp está desactualizada. Por favor, actualice a la última versión lo antes posible." -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadatos" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Metadatos convertidos" +msgid "Your attributes" +msgstr "Atributos" -msgid "Metadata parser" -msgstr "Analizar metadatos" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Su sesión será valida durante %remaining% segundos." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Analizar" - -msgid "XML metadata" -msgstr "Metadatos XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "or select a file:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "default" msgstr "" -msgid "You are running version %version%." +msgid "disabled" msgstr "" -msgid "optional" +msgid "enabled" msgstr "" -msgid "required" +msgid "expired" msgstr "" -msgid "Test Authentication Sources" +msgid "expires" msgstr "" -msgid "Checking your PHP installation" -msgstr "Verificación de su instalación de PHP" +msgid "means the module is not enabled" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "new" msgstr "" -msgid "Radius extension" +msgid "not set" +msgstr "sin valor" + +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/et/LC_MESSAGES/admin.po b/modules/admin/locales/et/LC_MESSAGES/admin.po index 46d77a4517..c47ed4cad1 100644 --- a/modules/admin/locales/et/LC_MESSAGES/admin.po +++ b/modules/admin/locales/et/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Serverinime, pordi ja protokolli diagnostika" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Sa ei kasuta andmete vahetamiseks HTTPS krüpteeritud sidet. HTTP sobib testimiseks hästi, kuid toodangus peaksid kindlasti HTTPS-i kasutama. [ Loe täpsemalt SimpleSAMLphp hooldamisest ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Sertifikaadid" + +msgid "Checking your PHP installation" +msgstr "PHP paigalduse kontrollimine" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Seadistamine" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Teisendatud metaandmed" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Vananenud" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Serverinime, pordi ja protokolli diagnostika" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federeerimine" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "SAML 2.0 metaandmete XML-vormingus:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Logi välja" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Sa ei kasuta andmete vahetamiseks HTTPS krüpteeritud sidet. HTTP sobib testimiseks hästi, kuid toodangus peaksid kindlasti HTTPS-i kasutama. [ Loe täpsemalt SimpleSAMLphp hooldamisest ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metaandmed" + +msgid "Metadata parser" +msgstr "Metaandmete parsija" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML-ist SimpleSAMLphp metaandmeteks teisendaja" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Seadistamine" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federeerimine" +msgid "Parse" +msgstr "Parsi" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Logi välja" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp paigalduslehekülg" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Sinu atribuudid" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Sinu sessioon kehtib veel %remaining% sekundit." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Sertifikaadid" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp paigalduslehekülg" -msgid "Deprecated" -msgstr "Vananenud" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "SAML 2.0 metaandmete XML-vormingus:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML-metaandmed" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML-ist SimpleSAMLphp metaandmeteks teisendaja" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metaandmed" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Teisendatud metaandmed" +msgid "Your attributes" +msgstr "Sinu atribuudid" -msgid "Metadata parser" -msgstr "Metaandmete parsija" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Sinu sessioon kehtib veel %remaining% sekundit." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Parsi" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML-metaandmed" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "PHP paigalduse kontrollimine" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/eu/LC_MESSAGES/admin.po b/modules/admin/locales/eu/LC_MESSAGES/admin.po index 642439e8a7..d9cc976399 100644 --- a/modules/admin/locales/eu/LC_MESSAGES/admin.po +++ b/modules/admin/locales/eu/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Host, ataka eta protokoloen gaineko diagnostikoa" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Ez zara erabiltzen ari HTTPSak - erabiltzailearekin zifratutako komunikazioak. HTTP zuzen ibiltzen da ebaluaketa ingurunetan, baina ustiapenean erabili behar baduzu, HTTPS erabili beharko zenuke. [ Irakur ezazu gehiago SimpleSAMLphp-ren mantentze-lanei buruz ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Ziurtagiriak" + +msgid "Checking your PHP installation" +msgstr "Zure PHP instalaziooa egiazatzen" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfigurazioa" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Bihurtutako metadatuak" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Zaharkitua" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Host, ataka eta protokoloen gaineko diagnostikoa" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federazioa" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "SAML 2.0 metadatuetako xml formatuan:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Irten" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Ez zara erabiltzen ari HTTPSak - erabiltzailearekin zifratutako komunikazioak. HTTP zuzen ibiltzen da ebaluaketa ingurunetan, baina ustiapenean erabili behar baduzu, HTTPS erabili beharko zenuke. [ Irakur ezazu gehiago SimpleSAMLphp-ren mantentze-lanei buruz ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadatuak" + +msgid "Metadata parser" +msgstr "Metadatuak aztertu" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML-tik SimpleSAMLphp metadatuetara bihurgailua" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfigurazioa" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federazioa" +msgid "Parse" +msgstr "Aztertu" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Irten" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp instalatzeko orria" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Atributuak" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Zure saioa %remaining% segundoz izango da baliagarri." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Ziurtagiriak" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp instalatzeko orria" -msgid "Deprecated" -msgstr "Zaharkitua" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "SAML 2.0 metadatuetako xml formatuan:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML metadatuak" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML-tik SimpleSAMLphp metadatuetara bihurgailua" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadatuak" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Bihurtutako metadatuak" +msgid "Your attributes" +msgstr "Atributuak" -msgid "Metadata parser" -msgstr "Metadatuak aztertu" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Zure saioa %remaining% segundoz izango da baliagarri." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Aztertu" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML metadatuak" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Zure PHP instalaziooa egiazatzen" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/fa/LC_MESSAGES/admin.po b/modules/admin/locales/fa/LC_MESSAGES/admin.po index 8cc8a172e9..002c260518 100644 --- a/modules/admin/locales/fa/LC_MESSAGES/admin.po +++ b/modules/admin/locales/fa/LC_MESSAGES/admin.po @@ -1,4 +1,346 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" +msgstr "" + +msgid "An error occurred" +msgstr "" + +msgid "Authentication data" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Certificates" +msgstr "" + +msgid "Checks" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "" + +msgid "Content of jpegPhoto attribute" +msgstr "" + +msgid "Converted metadata" +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" +msgstr "" + +msgid "Deprecated" +msgstr "" + +msgid "Details" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "" + +msgid "EntityID" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "" + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "" + +msgid "Hosted entities" +msgstr "" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "" + +msgid "Logged out" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Look up metadata for entity:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgstr "" + +msgid "Metadata" +msgstr "" + +msgid "Metadata parser" +msgstr "" + +msgid "Modules" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" + +msgid "No file selected." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" +msgstr "" + +msgid "Parse" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "" + +msgid "SAML Metadata" +msgstr "" + +msgid "SAML Subject" +msgstr "" + +msgid "Search" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" + +msgid "SimpleSAMLphp Metadata" +msgstr "" + +msgid "SimpleSAMLphp Show Metadata" +msgstr "" + +msgid "SimpleSAMLphp installation page" +msgstr "" + +msgid "SimpleSAMLphp is installed in:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "" + +msgid "Technical information" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" + +msgid "Test Authentication Sources" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgstr "" + +msgid "Tools" +msgstr "" + +msgid "Trusted entities" +msgstr "" + +msgid "Type:" +msgstr "" + +msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" +msgstr "" + +msgid "XML metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "" + +msgid "You are running version %version%." +msgstr "" + +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" + +msgid "You have been logged out." +msgstr "" + +msgid "You have the following modules installed" +msgstr "" + +msgid "Your attributes" +msgstr "" + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" + +msgid "default" +msgstr "" + +msgid "disabled" +msgstr "" + +msgid "enabled" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "expires" +msgstr "" + +msgid "means the module is not enabled" +msgstr "" + +msgid "new" +msgstr "" + +msgid "not set" +msgstr "" + +msgid "optional" +msgstr "" + +msgid "or select a file:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" +msgstr "" + +msgid "required" +msgstr "" diff --git a/modules/admin/locales/fi/LC_MESSAGES/admin.po b/modules/admin/locales/fi/LC_MESSAGES/admin.po index e4aba7eba3..ce24b1806c 100644 --- a/modules/admin/locales/fi/LC_MESSAGES/admin.po +++ b/modules/admin/locales/fi/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Isäntänimen, portin ja protokollan diagnostiikka" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Et käytä HTTPS - vahvaa yhteystä käyttäjään. HTTP-protokolla on sopiva testeihin, mutta tuotantojärjestelmässä sinun tulee käyttää HTTPS:ää. [ Lue SimpleSAMLphp ylläpidosta (eng) ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +msgid "Checking your PHP installation" +msgstr "Tarkastetaan PHP-asennuksesi" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Asetukset" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +msgid "Converted metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +msgid "Deprecated" +msgstr "Vanhentunut" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Isäntänimen, portin ja protokollan diagnostiikka" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federaatio" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "Hosted IdP metadata present" +msgstr "" + +msgid "Hosted entities" +msgstr "" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Uloskirjautuminen" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Et käytä HTTPS - vahvaa yhteystä käyttäjään. HTTP-protokolla on sopiva testeihin, mutta tuotantojärjestelmässä sinun tulee käyttää HTTPS:ää. [ Lue SimpleSAMLphp ylläpidosta (eng) ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadata" + +msgid "Metadata parser" +msgstr "Metadata parser" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML:stä SimpleSAMLphp metadata:aan kääntäjä" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Asetukset" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federaatio" +msgid "Parse" +msgstr "" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Uloskirjautuminen" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" +msgid "Search" msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Attribuuttisi" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Istuntosi on vielä voimassa %remaining% sekuntia" +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" +msgid "SimpleSAMLphp installation page" msgstr "" -msgid "Deprecated" -msgstr "Vanhentunut" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" +msgid "XML metadata" msgstr "" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML:stä SimpleSAMLphp metadata:aan kääntäjä" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadata" - -msgid "SimpleSAMLphp Show Metadata" +msgid "You can get the metadata XML on a dedicated URL:" msgstr "" -msgid "An error occurred" +msgid "You have been logged out." msgstr "" -msgid "Converted metadata" +msgid "You have the following modules installed" msgstr "" -msgid "Metadata parser" -msgstr "Metadata parser" +msgid "Your attributes" +msgstr "Attribuuttisi" -msgid "No file selected." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Istuntosi on vielä voimassa %remaining% sekuntia" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" msgstr "" -msgid "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Tarkastetaan PHP-asennuksesi" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/fr/LC_MESSAGES/admin.po b/modules/admin/locales/fr/LC_MESSAGES/admin.po index 5d38a4e350..0d81c50234 100644 --- a/modules/admin/locales/fr/LC_MESSAGES/admin.po +++ b/modules/admin/locales/fr/LC_MESSAGES/admin.po @@ -1,240 +1,275 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" -msgstr "Déconnexion" - -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnostics sur le nom d'hôte, le port et le protocole" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "La configuration utilise le code secret par défaut. Veillez à modifier l'option secretsalt dans la configuration de SimpleSAMLphp dans les environnements de production. En lire d'avantage sur la maintenance de SimpleSAMLphp." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" -msgstr "Informations sur votre installation PHP" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Vous n'utilisez pas HTTPS - communications chiffrées avec l'utilisateur. Utiliser SimpleSAMLphp marchera parfaitement avec HTTP pour des tests, mais si vous voulez l'utiliser dans un environnement de production, vous devriez utiliser HTTPS. [ En lire d'avantage sur la maintenance de SimpleSAMLphp ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" -msgstr "PHP %minimum% ou plus récent est nécessaire. Vous utilisez : %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" +msgstr "ADFS IdP métadonnées" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" -msgstr "Extension Date/Heure" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" +msgstr "ADFS SP métadonnées" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" -msgstr "Fonction de hachage" +msgid "An error occurred" +msgstr "Une erreur s'est produite" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" -msgstr "ZLib" +msgid "Authentication data" +msgstr "Données d'authentification" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" -msgstr "OpenSSL" +msgid "Back" +msgstr "Retour" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" -msgstr "XML DOM" +msgid "Certificates" +msgstr "Certificats" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" -msgstr "Prise en charge des expressions régulières" +msgid "Checking your PHP installation" +msgstr "Vérification de votre installation de PHP" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" -msgstr "Prise en charge de JSON" +msgid "Checks" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" -msgstr "Bibliothèque standard de PHP (SPL)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Configuration" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" -msgstr "Extension de chaîne multioctets" +msgid "Content of jpegPhoto attribute" +msgstr "Contenu de l'attribut jpegPhoto" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" -msgstr "cURL (peut être requis par certains modules)" +msgid "Converted metadata" +msgstr "Métadonnées converties" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" -msgstr "cURL (nécessaire si des vérifications automatiques de version sont utilisées, également par certains modules)" +msgid "Copy to clipboard" +msgstr "Copier dans le presse-papiers" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" -msgstr "Extension de session (nécessaire si des sessions PHP sont utilisées)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" +msgstr "Extension Date/Heure" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" -msgstr "Extension de session" +msgid "Deprecated" +msgstr "Obsolète" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" -msgstr "Extension PDO (nécessaire si une base de données est utilisée)" +msgid "Details" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" -msgstr "Extension PDO" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnostics sur le nom d'hôte, le port et le protocole" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" -msgstr "Extension LDAP (nécessaire si un backend LDAP est utilisé)" +msgid "EntityID" +msgstr "Entité ID" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 -msgid "LDAP extension" -msgstr "Extension LDAP" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Fédération" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" -msgstr "predis/predis (requis si le système de stockage de données redis est utilisé)" +msgid "Format" +msgstr "Format" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" -msgstr "Bibliothèque predis/predis" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" -msgstr "Memcache or Memcached extension (required if the memcache backend is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "Fonction de hachage" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" -msgstr "Extension Memcache ou Memcached" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "" +"Bonjour, voici la page d'état de SimpleSAMLphp. Ici, vous pouvez voir si votre session\n" +"est expirée, sa durée de validité et tous les attributs qui y sont attachés." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" -msgstr "L'option de configuration technicalcontact_email doit être définie" +msgid "Hosted IdP metadata present" +msgstr "Présence de métadonnées IdP hébergées" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" -msgstr "L'option de configuration auth.adminpassword doit être définie" +msgid "Hosted entities" +msgstr "Entités hébergées" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Vous n'utilisez pas HTTPS - communications chiffrées avec l'utilisateur. Utiliser SimpleSAMLphp marchera parfaitement avec HTTP pour des tests, mais si vous voulez l'utiliser dans un environnement de production, vous devriez utiliser HTTPS. [ En lire d'avantage sur la maintenance de SimpleSAMLphp ]" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Au format XML de métadonnées SAML 2.0:" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." -msgstr "La configuration utilise le code secret par défaut. Veillez à modifier l'option secretsalt dans la configuration de SimpleSAMLphp dans les environnements de production. En lire d'avantage sur la maintenance de SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "Informations sur votre installation PHP" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." -msgstr "L'extension PHP cURL est manquante. Impossible de vérifier les mises à jour de SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "Prise en charge de JSON" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." -msgstr "Vous utilisez une version obsolète de SimpleSAMLphp. Veuillez mettre à jour vers la dernière version dès que possible." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" +msgstr "Extension LDAP" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Convertisseur de métadonnées XML vers SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" +msgstr "Extension LDAP (nécessaire si un backend LDAP est utilisé)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" -msgstr "SAML 2.0 SP métadonnées" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "Déconnexion" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" -msgstr "SAML 2.0 IdP métadonnées" +msgid "Logged out" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" -msgstr "ADFS SP métadonnées" +msgid "Logout" +msgstr "Déconnexion" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" -msgstr "ADFS IdP métadonnées" +msgid "Look up metadata for entity:" +msgstr "Rechercher les métadonnées de l'entité:" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Configuration" +msgid "Matching key-pair for signing assertions" +msgstr "Paire de clés correspondante pour la signature des assertions" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" -msgstr "Test" +msgid "Matching key-pair for signing assertions (rollover key)" +msgstr "Paire de clés correspondante pour la signature des assertions (renouvellement de clé)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Fédération" +msgid "Matching key-pair for signing metadata" +msgstr "Paire de clés correspondante pour la signature des métadonnées" -msgid "Authentication data" -msgstr "Données d'authentification" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "Extension Memcache ou Memcached" -msgid "Content of jpegPhoto attribute" -msgstr "Contenu de l'attribut jpegPhoto" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgstr "Memcache or Memcached extension (required if the memcache backend is used)" -msgid "Copy to clipboard" -msgstr "Copier dans le presse-papiers" +msgid "Metadata" +msgstr "Métadonnées" -msgid "Format" -msgstr "Format" +msgid "Metadata parser" +msgstr "Analyseur de métadonnées" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +msgid "Modules" msgstr "" -"Bonjour, voici la page d'état de SimpleSAMLphp. Ici, vous pouvez voir si votre session\n" -"est expirée, sa durée de validité et tous les attributs qui y sont attachés." -msgid "Logout" -msgstr "Déconnexion" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "Extension de chaîne multioctets" -msgid "SAML Subject" -msgstr "SAML Sujet" +msgid "No file selected." +msgstr "Aucun fichier sélectionné." -msgid "SimpleSAMLphp installation page" -msgstr "Page d'installation de SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" +msgstr "OpenSSL" -msgid "Technical information" -msgstr "Informations techniques" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "Extension PDO (nécessaire si une base de données est utilisée)" -msgid "Your attributes" -msgstr "Vos attributs" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" +msgstr "Extension PDO" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Votre session est encore valide pour %remaining% secondes." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "PHP %minimum% ou plus récent est nécessaire. Vous utilisez : %current%" -msgid "not set" -msgstr "non défini" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" +msgstr "" -msgid "Certificates" -msgstr "Certificats" +msgid "Parse" +msgstr "Analyser" -msgid "Deprecated" -msgstr "Obsolète" +msgid "Radius extension" +msgstr "Extension Radius" -msgid "EntityID" -msgstr "Entité ID" +msgid "Radius extension (required if a radius backend is used)" +msgstr "Extension Radius (nécessaire si un backend Radius est utilisé)" -msgid "Hosted entities" -msgstr "Entités hébergées" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" +msgstr "Prise en charge des expressions régulières" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Au format XML de métadonnées SAML 2.0:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "SAML 2.0 IdP métadonnées" -msgid "Look up metadata for entity:" -msgstr "Rechercher les métadonnées de l'entité:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "SAML 2.0 SP métadonnées" msgid "SAML Metadata" msgstr "Métadonnées SAML" +msgid "SAML Subject" +msgstr "SAML Sujet" + msgid "Search" msgstr "Rechercher" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" +msgstr "Extension de session" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "Extension de session (nécessaire si des sessions PHP sont utilisées)" + msgid "SimpleSAMLphp Metadata" msgstr "Métadonnées SimpleSAMLphp" +msgid "SimpleSAMLphp Show Metadata" +msgstr "SimpleSAMLphp Afficher les métadonnées" + +msgid "SimpleSAMLphp installation page" +msgstr "Page d'installation de SimpleSAMLphp" + +msgid "SimpleSAMLphp is installed in:" +msgstr "SimpleSAMLphp est installé dans le répertoire:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "Bibliothèque standard de PHP (SPL)" + +msgid "Technical information" +msgstr "Informations techniques" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "Test" + +msgid "Test Authentication Sources" +msgstr "Tester les sources d'authentification" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" +msgstr "L'option de configuration technicalcontact_email doit être définie" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "L'option de configuration auth.adminpassword doit être définie" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgstr "L'extension PHP cURL est manquante. Impossible de vérifier les mises à jour de SimpleSAMLphp." + msgid "Tools" msgstr "Outils" @@ -247,80 +282,88 @@ msgstr "Type:" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "Utilisez cette option si vous utilisez une entité SimpleSAMLphp de l'autre côté:" -msgid "You can get the metadata XML on a dedicated URL:" -msgstr "Vous pouvez obtenir les métadonnées XML sur une URL dédiée:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" +msgstr "XML DOM" -msgid "expired" -msgstr "expiré" +msgid "XML metadata" +msgstr "Métadonnées XML" -msgid "expires" -msgstr "expire" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Convertisseur de métadonnées XML vers SimpleSAMLphp" -msgid "new" -msgstr "nouveau" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "Vous utilisez une version obsolète de SimpleSAMLphp. Veuillez mettre à jour vers la dernière version dès que possible." -msgid "Back" -msgstr "Retour" +msgid "You are running version %version%." +msgstr "Vous utilisez la version %version%\"" -msgid "Metadata" -msgstr "Métadonnées" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "Vous pouvez obtenir les métadonnées XML sur une URL dédiée:" -msgid "SimpleSAMLphp Show Metadata" -msgstr "SimpleSAMLphp Afficher les métadonnées" +msgid "You have been logged out." +msgstr "" -msgid "An error occurred" -msgstr "Une erreur s'est produite" +msgid "You have the following modules installed" +msgstr "" -msgid "Converted metadata" -msgstr "Métadonnées converties" +msgid "Your attributes" +msgstr "Vos attributs" -msgid "Metadata parser" -msgstr "Analyseur de métadonnées" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Votre session est encore valide pour %remaining% secondes." -msgid "No file selected." -msgstr "Aucun fichier sélectionné." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" +msgstr "ZLib" -msgid "Parse" -msgstr "Analyser" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "cURL (peut être requis par certains modules)" -msgid "XML metadata" -msgstr "Métadonnées XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "cURL (nécessaire si des vérifications automatiques de version sont utilisées, également par certains modules)" -msgid "or select a file:" -msgstr "ou sélectionner un fichier:" +msgid "default" +msgstr "" -msgid "SimpleSAMLphp is installed in:" -msgstr "SimpleSAMLphp est installé dans le répertoire:" +msgid "disabled" +msgstr "" -msgid "You are running version %version%." -msgstr "Vous utilisez la version %version%\"" +msgid "enabled" +msgstr "" -msgid "optional" -msgstr "optionnel" +msgid "expired" +msgstr "expiré" -msgid "required" -msgstr "requis" +msgid "expires" +msgstr "expire" -msgid "Test Authentication Sources" -msgstr "Tester les sources d'authentification" +msgid "means the module is not enabled" +msgstr "" -msgid "Checking your PHP installation" -msgstr "Vérification de votre installation de PHP" +msgid "new" +msgstr "nouveau" -msgid "Radius extension (required if a radius backend is used)" -msgstr "Extension Radius (nécessaire si un backend Radius est utilisé)" +msgid "not set" +msgstr "non défini" -msgid "Radius extension" -msgstr "Extension Radius" +msgid "optional" +msgstr "optionnel" -msgid "Hosted IdP metadata present" -msgstr "Présence de métadonnées IdP hébergées" +msgid "or select a file:" +msgstr "ou sélectionner un fichier:" -msgid "Matching key-pair for signing assertions" -msgstr "Paire de clés correspondante pour la signature des assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" +msgstr "predis/predis (requis si le système de stockage de données redis est utilisé)" -msgid "Matching key-pair for signing assertions (rollover key)" -msgstr "Paire de clés correspondante pour la signature des assertions (renouvellement de clé)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" +msgstr "Bibliothèque predis/predis" -msgid "Matching key-pair for signing metadata" -msgstr "Paire de clés correspondante pour la signature des métadonnées" +msgid "required" +msgstr "requis" diff --git a/modules/admin/locales/he/LC_MESSAGES/admin.po b/modules/admin/locales/he/LC_MESSAGES/admin.po index eab8c1110b..b8239442b3 100644 --- a/modules/admin/locales/he/LC_MESSAGES/admin.po +++ b/modules/admin/locales/he/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "איבחון על שם מחשב, פורט ופרוטוקול" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "אתה לא משתמש ב- HTTPS - התקשרות מוצפנת עם המשתמש. HTTP עובד בסדר למטרות בדיקה, אולם למערכות אמיתיות, כדי להשתמש ה HTTPS. [ קרא עוד על תחזוק SimpleSAMLphp ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "תעודות" + +msgid "Checking your PHP installation" +msgstr "בודק את התקנת ה- PHP שלך" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "הגדרות" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "מטא-מידע מומר" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "פג תוקף" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "איבחון על שם מחשב, פורט ופרוטוקול" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "איחוד" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "מטא-מידע עבור SAML 2.0 בתבנית XML:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "התנתקות" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "אתה לא משתמש ב- HTTPS - התקשרות מוצפנת עם המשתמש. HTTP עובד בסדר למטרות בדיקה, אולם למערכות אמיתיות, כדי להשתמש ה HTTPS. [ קרא עוד על תחזוק SimpleSAMLphp ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "מטא-מידע" + +msgid "Metadata parser" +msgstr "מנתח מטא-מידע" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "ממיר XML למטא-מידע של SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "הגדרות" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "איחוד" +msgid "Parse" +msgstr "נתח" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "התנתקות" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "דף ההתקנה של SimpleSAMLphp" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "התכונות שלך" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "השיחה שלך ברת-תוקף לעוד %remaining% שניות מעכשיו." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "תעודות" +msgid "SimpleSAMLphp installation page" +msgstr "דף ההתקנה של SimpleSAMLphp" -msgid "Deprecated" -msgstr "פג תוקף" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "מטא-מידע עבור SAML 2.0 בתבנית XML:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "מטא-מידע בתבנית XML" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "ממיר XML למטא-מידע של SimpleSAMLphp" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "מטא-מידע" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "מטא-מידע מומר" +msgid "Your attributes" +msgstr "התכונות שלך" -msgid "Metadata parser" -msgstr "מנתח מטא-מידע" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "השיחה שלך ברת-תוקף לעוד %remaining% שניות מעכשיו." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "נתח" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "מטא-מידע בתבנית XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "בודק את התקנת ה- PHP שלך" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/hr/LC_MESSAGES/admin.po b/modules/admin/locales/hr/LC_MESSAGES/admin.po index 36adb9ea88..dfdc42143e 100644 --- a/modules/admin/locales/hr/LC_MESSAGES/admin.po +++ b/modules/admin/locales/hr/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Dijagnostika vezana uz naziv poslužitelja, port i protokol" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Ne koristite HTTPS - kriptiranu komunikaciju s korisnikom. HTTP se može koristiti za potrebe testiranja, ali u produkcijskom okruženju trebali biste koristiti HTTPS. [ Pročitajte više o SimpleSAMLphp postavkama ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Certifikati" + +msgid "Checking your PHP installation" +msgstr "Provjera vaše PHP instalacije" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfiguracija" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Pretvoreni metapodaci" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Zastarjelo" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Dijagnostika vezana uz naziv poslužitelja, port i protokol" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federacija" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Metapodaci u SAML 2.0 XML formatu:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Odjava" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Ne koristite HTTPS - kriptiranu komunikaciju s korisnikom. HTTP se može koristiti za potrebe testiranja, ali u produkcijskom okruženju trebali biste koristiti HTTPS. [ Pročitajte više o SimpleSAMLphp postavkama ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metapodaci" + +msgid "Metadata parser" +msgstr "Analizator metapodataka" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Pretvaranje metapodataka iz XML formata u SimpleSAMLphp format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfiguracija" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federacija" +msgid "Parse" +msgstr "Analiziraj" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Odjava" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp instalacijska stranica" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Vaši atributi" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Vaša sjednica bit će valjana još %remaining% sekundi." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Certifikati" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp instalacijska stranica" -msgid "Deprecated" -msgstr "Zastarjelo" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Metapodaci u SAML 2.0 XML formatu:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "Metapodaci u XML formatu" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Pretvaranje metapodataka iz XML formata u SimpleSAMLphp format" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metapodaci" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Pretvoreni metapodaci" +msgid "Your attributes" +msgstr "Vaši atributi" -msgid "Metadata parser" -msgstr "Analizator metapodataka" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Vaša sjednica bit će valjana još %remaining% sekundi." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Analiziraj" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "Metapodaci u XML formatu" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Provjera vaše PHP instalacije" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/hu/LC_MESSAGES/admin.po b/modules/admin/locales/hu/LC_MESSAGES/admin.po index ee48c19574..dbad5b94e6 100644 --- a/modules/admin/locales/hu/LC_MESSAGES/admin.po +++ b/modules/admin/locales/hu/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Port és protokoll diagnosztika" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Nem HTTPS protokollt használ - nem titkosított a kommunikáció! HTTP jó megoldás lehet teszt rendszerek esetében, de az éles rendszerben lehetőség szerint használjon HTTPS-t! [ Többet olvashat a SimpleSAMLphp beállításáról ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Tanúsítványok." + +msgid "Checking your PHP installation" +msgstr "PHP beállítások ellenőrzése" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Beállítások" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Konvertált metaadatok" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Kivezetés alatt álló opció - használata ellenjavallt" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Port és protokoll diagnosztika" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Föderáció" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "SAML 2.0 XML formátumban:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Kilépés" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Nem HTTPS protokollt használ - nem titkosított a kommunikáció! HTTP jó megoldás lehet teszt rendszerek esetében, de az éles rendszerben lehetőség szerint használjon HTTPS-t! [ Többet olvashat a SimpleSAMLphp beállításáról ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metaadatok" + +msgid "Metadata parser" +msgstr "Metaadat értelmező" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Metaadatok konvertálása SAML2 XML-ből SimpleSAMLphp-ba " +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Beállítások" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Föderáció" +msgid "Parse" +msgstr "Értelmez" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Kilépés" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp adminisztrációs felület" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Az ön attribútumai" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Az ön munkamenete még %remaining% másodpercig érvényes" +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Tanúsítványok." +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp adminisztrációs felület" -msgid "Deprecated" -msgstr "Kivezetés alatt álló opció - használata ellenjavallt" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "SAML 2.0 XML formátumban:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML metaadat" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Metaadatok konvertálása SAML2 XML-ből SimpleSAMLphp-ba " -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metaadatok" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Konvertált metaadatok" +msgid "Your attributes" +msgstr "Az ön attribútumai" -msgid "Metadata parser" -msgstr "Metaadat értelmező" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Az ön munkamenete még %remaining% másodpercig érvényes" -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Értelmez" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML metaadat" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "PHP beállítások ellenőrzése" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/id/LC_MESSAGES/admin.po b/modules/admin/locales/id/LC_MESSAGES/admin.po index 47d8cad733..3322d4646d 100644 --- a/modules/admin/locales/id/LC_MESSAGES/admin.po +++ b/modules/admin/locales/id/LC_MESSAGES/admin.po @@ -1,324 +1,367 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "Konfigurasi ini menggunakan secret salt default. Pastikan untuk memodifikasi opsi secretsalt dalam konfigurasi SimpleSAMLphp di lingkungan produksi. Baca lebih lanjut tentang pemeliharaan SimpleSAMLphp." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnostik pada hostname, port dan protokol" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Anda tidak menggunakan HTTPS untuk melindungi komunikasi dengan pengguna Anda. HTTP berfungsi dengan baik untuk tujuan pengujian, tetapi dalam lingkungan produksi Anda harus menggunakan HTTPS. Baca lebih lanjut tentang pemeliharaan SimpleSAMLphp." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" +msgstr "Metadata ADFS IdP" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" +msgstr "Metadata ADFS SP" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" -msgstr "" +msgid "An error occurred" +msgstr "Terjadi kesalahan" + +msgid "Authentication data" +msgstr "Data otentikasi" + +msgid "Back" +msgstr "Kembali" + +msgid "Certificates" +msgstr "Sertifikat" + +msgid "Checking your PHP installation" +msgstr "Memerika instalasi PHP Anda" + +msgid "Checks" +msgstr "Pemeriksaan" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfigurasi" + +msgid "Content of jpegPhoto attribute" +msgstr "Isi atribut jpegPhoto" + +msgid "Converted metadata" +msgstr "Metadata yang telah dikonvesi" + +msgid "Copy to clipboard" +msgstr "Salin ke papan klip" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" -msgstr "" +msgid "Date/Time Extension" +msgstr "Perpanjangan Tanggal/Waktu" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" -msgstr "" +msgid "Deprecated" +msgstr "Usang" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" -msgstr "" +msgid "Details" +msgstr "Detail" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnostik pada hostname, port dan protokol" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" -msgstr "" +msgid "EntityID" +msgstr "EntityID" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federasi" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" -msgstr "" +msgid "Format" +msgstr "Format" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" -msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Kembali ke halaman instalasi SimpleSAMLphp" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "Fungsi hashing" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" -msgstr "" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Hai, ini adalah halaman status SimpleSAMLphp. Di sini Anda dapat melihat apakah sesi Anda habis, berapa lama waktu yang tersisa hingga habis, dan semua atribut yang dilampirkan pada sesi Anda." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" -msgstr "" +msgid "Hosted IdP metadata present" +msgstr "Metadata IdP yang dihosting hadir" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" -msgstr "" +msgid "Hosted entities" +msgstr "Entitas yang dihosting" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" -msgstr "" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Dalam format XML Metadata SAML 2.0:" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "Informasi tentang instalasi PHP Anda" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "Dukungan JSON" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" -msgstr "" +msgstr "Ekstensi LDAP" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" +msgstr "Ekstensi LDAP (diperlukan jika backend LDAP digunakan)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "Keluar" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" -msgstr "" +msgid "Logged out" +msgstr "Anda telah keluar" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" -msgstr "" +msgid "Logout" +msgstr "Keluar" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" -msgstr "" +msgid "Look up metadata for entity:" +msgstr "Mencari metadata untuk entitas:" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" -msgstr "" +msgid "Matching key-pair for signing assertions" +msgstr "Mencocokkan pasangan kunci untuk menandatangani pernyataan" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Anda tidak menggunakan HTTPS - komunikasi yang dienkripsi dengan user. HTTP bekerja baik-baik saja untuk tujuan pengetesan , tapi dalam lingkungan produksi, Anda sebaiknya menggunakan HTTPS. [ Baca lebih lanjut tentang proses pemeliraan SimpleSAMLphp. ]" +msgid "Matching key-pair for signing assertions (rollover key)" +msgstr "Mencocokkan pasangan kunci untuk menandatangani pernyataan (kunci rollover)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." -msgstr "" +msgid "Matching key-pair for signing metadata" +msgstr "Mencocokkan pasangan kunci untuk menandatangani metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "Ekstensi Memcache atau Memcached" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgstr "Ekstensi Memcache atau Memcached (diperlukan jika backend memcache digunakan)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Konverter XML ke metadata SimpleSAMLphp" +msgid "Metadata" +msgstr "Metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" -msgstr "" +msgid "Metadata parser" +msgstr "Pengurai metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" -msgstr "" +msgid "Modules" +msgstr "Modul" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "Ekstensi String Multibyte" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" -msgstr "" +msgid "No file selected." +msgstr "Ttak ada berkas yang dipilih." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfigurasi" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" +msgstr "OpenSSL" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "Ekstensi PDO (diperlukan jika backend basis data digunakan)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federasi" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" +msgstr "Perpanjangan PDO" -msgid "Authentication data" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, no-php-format,php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "PHP %minimum% atau yang lebih baru diperlukan. Anda sedang menjalankan: %current%" -msgid "Content of jpegPhoto attribute" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" +msgstr "Ekstensi PHP intl" -msgid "Copy to clipboard" -msgstr "" +msgid "Parse" +msgstr "Parse" -msgid "Format" -msgstr "" +msgid "Radius extension" +msgstr "Perpanjangan radius" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." -msgstr "" +msgid "Radius extension (required if a radius backend is used)" +msgstr "Ekstensi radius (diperlukan jika backend radius digunakan)" -msgid "Logout" -msgstr "Logout" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" +msgstr "Dukungan ekspresi reguler" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "Metadata SAML 2.0 IdP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "Metadata SAML 2.0 SP" + +msgid "SAML Metadata" +msgstr "Metadata SAML" msgid "SAML Subject" -msgstr "" +msgstr "Subjek SAML" -msgid "SimpleSAMLphp installation page" -msgstr "Halaman instalasi SimpleSAMLphp" +msgid "Search" +msgstr "Cari" -msgid "Technical information" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" +msgstr "Perpanjangan sesi" -msgid "Your attributes" -msgstr "Attribut Anda" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "Ekstensi sesi (diperlukan jika sesi PHP digunakan)" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Session anda valid untuk %remaining% detik dari sekarang." +msgid "SimpleSAMLphp Metadata" +msgstr "Metadata SimpleSAMLphp" -msgid "not set" -msgstr "" +msgid "SimpleSAMLphp Show Metadata" +msgstr "SimpleSAMLphp Tampilkan Metadata" -msgid "Certificates" -msgstr "Sertifikat" +msgid "SimpleSAMLphp installation page" +msgstr "Halaman instalasi SimpleSAMLphp" -msgid "Deprecated" -msgstr "Usang" +msgid "SimpleSAMLphp is installed in:" +msgstr "SimpleSAMLphp diinstal di:" -msgid "EntityID" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "Perpustakaan PHP standar (SPL)" -msgid "Hosted entities" -msgstr "" +msgid "Technical information" +msgstr "Informasi teknis" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Dalam format XML Metadata SAML 2.0" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "Uji" -msgid "Look up metadata for entity:" -msgstr "" +msgid "Test Authentication Sources" +msgstr "Menguji Sumber Autentikasi" -msgid "SAML Metadata" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "Opsi konfigurasi \"secretsalt\" mungkin tidak mengandung tanda `%`." -msgid "Search" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" +msgstr "Opsi konfigurasi technicalcontact_email harus ditetapkan" -msgid "SimpleSAMLphp Metadata" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "Opsi konfigurasi auth.adminpassword harus ditetapkan" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgstr "Ekstensi PHP cURL tidak ada. Tidak dapat memeriksa pembaruan SimpleSAMLphp." msgid "Tools" msgstr "Peralatan" msgid "Trusted entities" -msgstr "" +msgstr "Entitas tepercaya" msgid "Type:" -msgstr "" +msgstr "Tipe:" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" -msgstr "" +msgstr "Gunakan ini jika Anda menggunakan entitas SimpleSAMLphp di sisi lain:" -msgid "You can get the metadata XML on a dedicated URL:" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" +msgstr "XML DOM" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "metadata XML" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Konverter XML ke metadata SimpleSAMLphp" -msgid "new" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "Anda menjalankan versi SimpleSAMLphp yang sudah ketinggalan zaman. Harap perbarui ke versi terbaru sesegera mungkin." -msgid "Back" -msgstr "" +msgid "You are running version %version%." +msgstr "Anda sedang menjalankan versi %version%." -msgid "Metadata" -msgstr "Metadata" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "Anda bisa mendapatkan XML metadata pada URL khusus:" -msgid "SimpleSAMLphp Show Metadata" -msgstr "" +msgid "You have been logged out." +msgstr "Kamu Sudah Keluar." -msgid "An error occurred" -msgstr "" +msgid "You have the following modules installed" +msgstr "Anda telah menginstal modul-modul berikut ini" -msgid "Converted metadata" -msgstr "Metadata yang telah dikonvesi" +msgid "Your attributes" +msgstr "Attribut Anda" -msgid "Metadata parser" -msgstr "Parser metadata" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Session anda valid untuk %remaining% detik dari sekarang." -msgid "No file selected." -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" +msgstr "ZLib" -msgid "Parse" -msgstr "Parse" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "cURL (mungkin diperlukan oleh beberapa modul)" -msgid "XML metadata" -msgstr "metadata XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "cURL (diperlukan jika pemeriksaan versi otomatis digunakan, juga oleh beberapa modul)" -msgid "or select a file:" -msgstr "" +msgid "default" +msgstr "bawaan" -msgid "SimpleSAMLphp is installed in:" -msgstr "" +msgid "disabled" +msgstr "dinonaktifkan" -msgid "You are running version %version%." -msgstr "" +msgid "enabled" +msgstr "difungsikan" -msgid "optional" -msgstr "" +msgid "expired" +msgstr "kadaluwarsa" -msgid "required" -msgstr "" +msgid "expires" +msgstr "berakhir" -msgid "Test Authentication Sources" -msgstr "" +msgid "means the module is not enabled" +msgstr "berarti modul tidak diaktifkan" -msgid "Checking your PHP installation" -msgstr "Memerika instalasi PHP Anda" +msgid "new" +msgstr "baru" -msgid "Radius extension (required if a radius backend is used)" -msgstr "" +msgid "not set" +msgstr "tidak di atur" -msgid "Radius extension" -msgstr "" +msgid "optional" +msgstr "opsional" -msgid "Hosted IdP metadata present" -msgstr "" +msgid "or select a file:" +msgstr "atau pilih sebuah file:" -msgid "Matching key-pair for signing assertions" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" +msgstr "predis/predis (diperlukan jika penyimpanan data redis digunakan)" -msgid "Matching key-pair for signing assertions (rollover key)" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" +msgstr "perpustakaan predis/predis" -msgid "Matching key-pair for signing metadata" -msgstr "" +msgid "required" +msgstr "diperlukan" diff --git a/modules/admin/locales/it/LC_MESSAGES/admin.po b/modules/admin/locales/it/LC_MESSAGES/admin.po index 1de7828538..029ae9ad6d 100644 --- a/modules/admin/locales/it/LC_MESSAGES/admin.po +++ b/modules/admin/locales/it/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnostica su nome dell'host, porta e protocollo" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Non stai usando HTTPS - comunicazione cifrata con l'utente. HTTP può funzionare per i test, ma in un ambiente di produzione si dovrebbe usare HTTPS. [ Maggiori informazioni sulla manutenzione di SimpleSAMLphp ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Certificati" + +msgid "Checking your PHP installation" +msgstr "Controllo dell'installazione di PHP" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Configurazione" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Metadati convertiti" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Deprecato" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnostica su nome dell'host, porta e protocollo" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federazione" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Metadati SAML 2.0 in formato XML:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Disconnessione" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Non stai usando HTTPS - comunicazione cifrata con l'utente. HTTP può funzionare per i test, ma in un ambiente di produzione si dovrebbe usare HTTPS. [ Maggiori informazioni sulla manutenzione di SimpleSAMLphp ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadati" + +msgid "Metadata parser" +msgstr "Parser dei metadati" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Convertitore di metadati dal formato XML al formato SimpleSAMLphp " +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Configurazione" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federazione" +msgid "Parse" +msgstr "Analisi" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Disconnessione" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "Pagina di installazione di SimpleSAMLphp" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "I tuoi attributi" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "La tua sessione è valida per ulteriori %remaining% secondi." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Certificati" +msgid "SimpleSAMLphp installation page" +msgstr "Pagina di installazione di SimpleSAMLphp" -msgid "Deprecated" -msgstr "Deprecato" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Metadati SAML 2.0 in formato XML:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "Metadati XML" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Convertitore di metadati dal formato XML al formato SimpleSAMLphp " -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadati" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Metadati convertiti" +msgid "Your attributes" +msgstr "I tuoi attributi" -msgid "Metadata parser" -msgstr "Parser dei metadati" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "La tua sessione è valida per ulteriori %remaining% secondi." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Analisi" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "Metadati XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Controllo dell'installazione di PHP" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/ja/LC_MESSAGES/admin.po b/modules/admin/locales/ja/LC_MESSAGES/admin.po index af9bfbcc98..c52d137aed 100644 --- a/modules/admin/locales/ja/LC_MESSAGES/admin.po +++ b/modules/admin/locales/ja/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "デフォルトのシークレットソルトが使われています - プロダクションでsimpleSAMLを使用される場合はデフォルトの「secretsalt」オプションを必ず変更してください。[SimpleSAMLphpの設定についてはこちら ]" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "あなたはHTTPS(暗号化通信)を行っていません。HTTPはテスト環境であれば正常に動作します、しかし製品環境ではHTTPSを使用するべきです。[ 詳しくはSimpleSAMLphpメンテナンス情報を読んでください ]" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "ホストネームやポート、プロトコルを診断" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Certificates" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Checking your PHP installation" +msgstr "PHPの設定を確認" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "設定" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +msgid "Converted metadata" +msgstr "変換されたメタデータ" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +msgid "Deprecated" +msgstr "非推奨" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "ホストネームやポート、プロトコルを診断" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "連携" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "SAML 2.0 用のメタデータXMLフォーマット:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "ログアウト" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "あなたはHTTPS(暗号化通信)を行っていません。HTTPはテスト環境であれば正常に動作します、しかし製品環境ではHTTPSを使用するべきです。[ 詳しくはSimpleSAMLphpメンテナンス情報を読んでください ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." -msgstr "デフォルトのシークレットソルトが使われています - プロダクションでsimpleSAMLを使用される場合はデフォルトの「secretsalt」オプションを必ず変更してください。[SimpleSAMLphpの設定についてはこちら ]" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." -msgstr "旧バージョンのSimpleSAMLphpが使われています。できるだけ早く最新バーションにアップロードしてください" +msgid "Metadata" +msgstr "メタデータ" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XMLをSimpleSAMLphpメタデータに変換" +msgid "Metadata parser" +msgstr "メタデータパーサ" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "設定" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "連携" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -msgid "Authentication data" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Parse" +msgstr "パース" + +msgid "Radius extension" msgstr "" -msgid "Copy to clipboard" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "Logout" -msgstr "ログアウト" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "" + +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp 設定ページ" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "属性" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "セッションは今から %remaining% 秒間有効です" +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp 設定ページ" + +msgid "SimpleSAMLphp is installed in:" msgstr "" -msgid "Deprecated" -msgstr "非推奨" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "" -msgid "EntityID" +msgid "Technical information" msgstr "" -msgid "Hosted entities" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "SAML 2.0 用のメタデータXMLフォーマット:" +msgid "Test Authentication Sources" +msgstr "" -msgid "Look up metadata for entity:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XMLメタデータ" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XMLをSimpleSAMLphpメタデータに変換" -msgid "new" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "旧バージョンのSimpleSAMLphpが使われています。できるだけ早く最新バーションにアップロードしてください" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "メタデータ" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "変換されたメタデータ" +msgid "Your attributes" +msgstr "属性" -msgid "Metadata parser" -msgstr "メタデータパーサ" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "セッションは今から %remaining% 秒間有効です" -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "パース" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XMLメタデータ" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "PHPの設定を確認" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/lb/LC_MESSAGES/admin.po b/modules/admin/locales/lb/LC_MESSAGES/admin.po index bf66cef36d..c850438637 100644 --- a/modules/admin/locales/lb/LC_MESSAGES/admin.po +++ b/modules/admin/locales/lb/LC_MESSAGES/admin.po @@ -1,324 +1,371 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: lb\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "D'Konfiguratioun notzt d'standard secret salt. Stellt sécher d'secretsalt Optioun an der SimpleSAMLphp Konfiguratioun op Produktioun Environnementer unzepassen. Liest méi iwwer d'Maintenance vu SimpleSAMLphp." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diognose vum Hostname, Port an Protokoll" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Dir benotzt keen HTTPS - verschlësselt Kommunikatioun mat dem Benotzer. SimpleSAMLphp funktionéiert awandfräi mat HTTP fir Testzwecker mee an engem produktiven Ëmfeld sollt et besser mat HTTPS lafen. [ Liest méi iwwert Maintenance vun SimpleSAMLphp ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" -msgstr "" +msgid "An error occurred" +msgstr "E Feeler ass opgetrueden" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" -msgstr "" +msgid "Authentication data" +msgstr "Authentifikatiouns-Daten" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" -msgstr "" +msgid "Back" +msgstr "Zeréck" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" -msgstr "" +msgid "Certificates" +msgstr "Zertifikater" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" -msgstr "" +msgid "Checking your PHP installation" +msgstr "PHP Installatioun kontrolléieren" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" -msgstr "" +msgid "Checks" +msgstr "Kontrollen" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfiguratioun" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +msgid "Converted metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "D'\"secretsalt\" Konfiguratiounsoptioun dierf keen `%` Zeechen enthalen." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" +msgstr "Datum/Zäit Extensioun" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" -msgstr "" +msgid "Deprecated" +msgstr "Deprecated" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Details" +msgstr "Detailer" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnose vum Hostname, Port a Protokoll" + +msgid "EntityID" +msgstr "EntityID" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federatioun" + +msgid "Format" +msgstr "Format" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Zeréck op d'SimpleSAMLphp Installatiouns-Säit" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "Hash-Funktioun" + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Am SAML 2.0 Metadata XML Format" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "Informatiounen iwwer Är PHP Installatioun" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "JSON Support" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" -msgstr "" +msgstr "LDAP Extensioun" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" +msgstr "LDAP Extnsioun (benéidegt wann een LDAP Backend genotzt gëtt" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "Ausloggen" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" -msgstr "" +msgid "Logged out" +msgstr "Aus geloggt" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" -msgstr "" +msgid "Logout" +msgstr "Ausloggen" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" -msgstr "" +msgid "Look up metadata for entity:" +msgstr "Metadate fir d'Entitéit sichen" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Der benotzt ken HTTPS - verschlësselt Kommunikatioun mat dem Benotzer. SimpleSAMLphp funktionéiert einwandfräi mat HTTP fir Testzwéecker mais an engem produktiven Emfeld sollt et besser mat HTTPS lafen. [ Liest méi iwert Maintenance vun SimpleSAMLphp ]" +msgid "Matching key-pair for signing assertions (rollover key)" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgid "Matching key-pair for signing metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML zu SimpleSAMLphp Meta Données Emwandler" +msgid "Metadata" +msgstr "Metadaten" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" -msgstr "" +msgid "Metadata parser" +msgstr "Metadata parser" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" -msgstr "" +msgid "Modules" +msgstr "Moduler" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" -msgstr "" +msgid "No file selected." +msgstr "Keng Datei ausgewielt" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -msgid "Authentication data" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "PHP %minimum% oder méi nei ass néideg. Dir hutt: %current%\"" -msgid "Content of jpegPhoto attribute" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -msgid "Copy to clipboard" +msgid "Parse" msgstr "" -msgid "Format" +msgid "Radius extension" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Logout" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "SAML 2.0 IdP Metadaten" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "SAML 2.0 SP Metadaten" + +msgid "SAML Metadata" +msgstr "SAML Metadaten" + msgid "SAML Subject" -msgstr "" +msgstr "SAML Sujet" -msgid "SimpleSAMLphp installation page" -msgstr "" +msgid "Search" +msgstr "Sich" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "" +msgid "SimpleSAMLphp Metadata" +msgstr "SimpleSAMLphp Metadaten" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp Installatiouns-Säit" -msgid "Deprecated" -msgstr "Deprecated" +msgid "SimpleSAMLphp is installed in:" +msgstr "SimpleSAMLphp ass installéiert op" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" -msgstr "" +msgid "Technical information" +msgstr "Technesch Informatiounen" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "Test" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" +msgstr "D'technicalcontact_email Konfiguratiounsoptioun sollt gesat sinn" -msgid "SimpleSAMLphp Metadata" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "D' auth.adminpassword Konfiguratiounsoptioun muss gesat sinn" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgstr "D'cURL PHP Extensioun feelt. Net méiglech no SimpleSAMLphp Updaten ze sichen" msgid "Tools" -msgstr "" +msgstr "Geschir" msgid "Trusted entities" msgstr "" msgid "Type:" -msgstr "" +msgstr "Typ" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML Metadaten" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML zu SimpleSAMLphp Metdaten Ëmwandler" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Meta Données" - -msgid "SimpleSAMLphp Show Metadata" +msgid "You can get the metadata XML on a dedicated URL:" msgstr "" -msgid "An error occurred" -msgstr "" +msgid "You have been logged out." +msgstr "Dir gouft ausgeloggt" -msgid "Converted metadata" +msgid "You have the following modules installed" msgstr "" -msgid "Metadata parser" -msgstr "Metadata parser" +msgid "Your attributes" +msgstr "Är Attributer" -msgid "No file selected." -msgstr "" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Är Sessioun ass gülteg fir %remaining% Sekonnen ab elo." -msgid "Parse" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "XML metadata" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "cURL (kéint vu verschiddenen Moduler benéidegt ginn)" -msgid "or select a file:" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "cURL (benéidegt wann automatesch Versiouns Kontrollen genotzt ginn, an och vu verschidde Moduler)" -msgid "SimpleSAMLphp is installed in:" -msgstr "" +msgid "default" +msgstr "standard" -msgid "You are running version %version%." -msgstr "" +msgid "disabled" +msgstr "ausgeschalt" -msgid "optional" -msgstr "" +msgid "enabled" +msgstr "ugeschalt" -msgid "required" -msgstr "" +msgid "expired" +msgstr "ofgelaf" -msgid "Test Authentication Sources" -msgstr "" +msgid "expires" +msgstr "leeft of" -msgid "Checking your PHP installation" -msgstr "PHP Installatioun kontrolléiren" +msgid "means the module is not enabled" +msgstr "bedeit dass d'Modul net ugeschalt ass" -msgid "Radius extension (required if a radius backend is used)" -msgstr "" +msgid "new" +msgstr "nei" -msgid "Radius extension" -msgstr "" +msgid "not set" +msgstr "net gesat" -msgid "Hosted IdP metadata present" -msgstr "" +msgid "optional" +msgstr "optional" -msgid "Matching key-pair for signing assertions" -msgstr "" +msgid "or select a file:" +msgstr "oder wielt eng Datei" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" + +msgid "required" +msgstr "benéidegt" diff --git a/modules/admin/locales/lt/LC_MESSAGES/admin.po b/modules/admin/locales/lt/LC_MESSAGES/admin.po index c2e10981e6..73e15c7bca 100644 --- a/modules/admin/locales/lt/LC_MESSAGES/admin.po +++ b/modules/admin/locales/lt/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Serverio vardo, porto ir protokolo diagnostika" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Jūs nenaudojate HTTPS - šifruotos komunikacijos su vartotoju. HTTP puikiai tinka testavimo reikmėms, tačiau realioje aplinkoje turėtumėte naudoti HTTPS. [ Skaityti daugiau apie SimpleSAMLphp priežiūrą ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Sertifikatai" + +msgid "Checking your PHP installation" +msgstr "Tikrinamas Jūsų PHP diegimas" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfigūracija" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Sukonvertuoti metaduomenys" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Nebepalaikoma" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Serverio vardo, porto ir protokolo diagnostika" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federacija" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "SAML 2.0 Metaduomenys XML formatu:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Atsijungti" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Jūs nenaudojate HTTPS - šifruotos komunikacijos su vartotoju. HTTP puikiai tinka testavimo reikmėms, tačiau realioje aplinkoje turėtumėte naudoti HTTPS. [ Skaityti daugiau apie SimpleSAMLphp priežiūrą ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metaduomenys" + +msgid "Metadata parser" +msgstr "Metaduomenų analizatorius" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML į SimpleSAMLphp metaduomenų vertimas" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfigūracija" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federacija" +msgid "Parse" +msgstr "Nagrinėti" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Atsijungti" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp diegimo puslapis" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Jūsų atributai" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Jūsų sesija galioja %remaining% sekundžių, skaičiuojant nuo šio momento." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Sertifikatai" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp diegimo puslapis" -msgid "Deprecated" -msgstr "Nebepalaikoma" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "SAML 2.0 Metaduomenys XML formatu:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML metaduomenys" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML į SimpleSAMLphp metaduomenų vertimas" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metaduomenys" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Sukonvertuoti metaduomenys" +msgid "Your attributes" +msgstr "Jūsų atributai" -msgid "Metadata parser" -msgstr "Metaduomenų analizatorius" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Jūsų sesija galioja %remaining% sekundžių, skaičiuojant nuo šio momento." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Nagrinėti" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML metaduomenys" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Tikrinamas Jūsų PHP diegimas" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/lv/LC_MESSAGES/admin.po b/modules/admin/locales/lv/LC_MESSAGES/admin.po index 73e9e5455c..1ee81f7f16 100644 --- a/modules/admin/locales/lv/LC_MESSAGES/admin.po +++ b/modules/admin/locales/lv/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Saimniekdatora vārda, porta un protokola diagnostika" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Jūs neizmantojat HTTPS - šifrētu komunikāciju ar lietotāju. HTTP ir labs testa nolūkiem, bet ražošanā jāizmanto HTTPS. [ Lasiet vairāk par SimpleSAMLphp uzturēšanu ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Sertifikāti" + +msgid "Checking your PHP installation" +msgstr "Pārbauda Jūsu PHP instalāciju" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfigurācija" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Konvertētie metadati" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Atcelts" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Saimniekdatora vārda, porta un protokola diagnostika" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federācija" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "SAML 2.0 metadatos XML formātā:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Atslēgties" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Jūs neizmantojat HTTPS - šifrētu komunikāciju ar lietotāju. HTTP ir labs testa nolūkiem, bet ražošanā jāizmanto HTTPS. [ Lasiet vairāk par SimpleSAMLphp uzturēšanu ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadati" + +msgid "Metadata parser" +msgstr "Metadatu parsētājs" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML uz SimpleSAMLphp metadatu konvertors" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfigurācija" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federācija" +msgid "Parse" +msgstr "Parsēt" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Atslēgties" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp instalācijas lapa" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Atribūti" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Sesija ir derīga %remaining% sekundes no šī brīža." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Sertifikāti" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp instalācijas lapa" -msgid "Deprecated" -msgstr "Atcelts" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "SAML 2.0 metadatos XML formātā:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML metadati" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML uz SimpleSAMLphp metadatu konvertors" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadati" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Konvertētie metadati" +msgid "Your attributes" +msgstr "Atribūti" -msgid "Metadata parser" -msgstr "Metadatu parsētājs" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Sesija ir derīga %remaining% sekundes no šī brīža." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Parsēt" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML metadati" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Pārbauda Jūsu PHP instalāciju" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/nb/LC_MESSAGES/admin.po b/modules/admin/locales/nb/LC_MESSAGES/admin.po index a1391a9473..dc7d7020fa 100644 --- a/modules/admin/locales/nb/LC_MESSAGES/admin.po +++ b/modules/admin/locales/nb/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnostiser hostnavn, port og protokoll" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Du bruker ikke HTTPS - kryptert kommunikasjon med brukeren. HTTP fungerer utmerket til testformål, men i et produksjonsmiljø anbefales sterkt å skru på sikker kommunikasjon med HTTPS. [ Les mer i dokumentet: SimpleSAMLphp maintenance ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Sertifikater" + +msgid "Checking your PHP installation" +msgstr "Sjekker din PHP installasjon" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfigurasjon" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Konvertert metadata" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Utdatert" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnostiser hostnavn, port og protokoll" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Føderasjon" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "I SAML 2.0 Metadata XML Format:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Logg ut" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Du bruker ikke HTTPS - kryptert kommunikasjon med brukeren. HTTP fungerer utmerket til testformål, men i et produksjonsmiljø anbefales sterkt å skru på sikker kommunikasjon med HTTPS. [ Les mer i dokumentet: SimpleSAMLphp maintenance ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadata" + +msgid "Metadata parser" +msgstr "Metadata parser" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML til SimpleSAMLphp metadata-oversetter" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfigurasjon" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Føderasjon" +msgid "Parse" +msgstr "Pars" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Logg ut" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp installasjonsside" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Dine attributter" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Din sesjon er gyldig i %remaining% sekunder fra nå." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Sertifikater" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp installasjonsside" -msgid "Deprecated" -msgstr "Utdatert" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "I SAML 2.0 Metadata XML Format:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML metadata" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML til SimpleSAMLphp metadata-oversetter" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadata" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Konvertert metadata" +msgid "Your attributes" +msgstr "Dine attributter" -msgid "Metadata parser" -msgstr "Metadata parser" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Din sesjon er gyldig i %remaining% sekunder fra nå." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Pars" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Sjekker din PHP installasjon" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/nl/LC_MESSAGES/admin.po b/modules/admin/locales/nl/LC_MESSAGES/admin.po index 57b82053aa..3c749d1380 100644 --- a/modules/admin/locales/nl/LC_MESSAGES/admin.po +++ b/modules/admin/locales/nl/LC_MESSAGES/admin.po @@ -1,237 +1,272 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" -msgstr "Log uit" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "In de configuratie staat het meegeleverde secret salt. Verzeker u ervan de waarde van de secretsalt parameter aan te passen voor productieomgevingen. Lees meer over het onderhoud van SimpleSAMLphp." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Inspectie op hostnaam, poort en protocol" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "U gebruikt geen HTTPS om de verbinding met uw gebruikers te beveiligen. HTTP werkt prima voor testdoeleinden, maar in een productieomgeving zou HTTPS gebruikt moeten worden.Lees meer over het onderhoud van SimpleSAMLphp." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" -msgstr "Informatie over uw PHP-installatie" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" +msgstr "ADFS IdP metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" -msgstr "PHP %minimum% of hoger is benodigd. U heeft: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" +msgstr "ADFS SP metadata" + +msgid "An error occurred" +msgstr "Er trad een fout op" + +msgid "Authentication data" +msgstr "Authenticatiegegevens" + +msgid "Back" +msgstr "Terug" + +msgid "Certificates" +msgstr "Certificaten" + +msgid "Checking your PHP installation" +msgstr "Controle van de PHP-installatie" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 +msgid "Checks" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Configuratie" + +msgid "Content of jpegPhoto attribute" +msgstr "Inhoud van het jpegPhoto-attribuut" + +msgid "Converted metadata" +msgstr "Geconverteerde metadata" + +msgid "Copy to clipboard" +msgstr "Kopieer naar klembord" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 msgid "Date/Time Extension" msgstr "Date/Time-extensie" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" -msgstr "Hashfunctie" +msgid "Deprecated" +msgstr "Verouderd" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" -msgstr "ZLib" +msgid "Details" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" -msgstr "OpenSSL" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Inspectie op hostnaam, poort en protocol" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" -msgstr "XML DOM" +msgid "EntityID" +msgstr "EntityID" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" -msgstr "Reguliere expressie-ondersteuning" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federatie" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" -msgstr "JSON-ondersteuning" +msgid "Format" +msgstr "Formaat" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" -msgstr "Standard PHP library (SPL)" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" -msgstr "Multibye String-extensie" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "Hashfunctie" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" -msgstr "cURL (kan nodig zijn voor bepaalde modules)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Hallo, dit is de statuspagina van SimpleSAMLphp. Hier kunt u zien of uw sessie verlopen is, hoe lang het nog duurt totdat die verloopt en alle attributen die met uw sessie verbonden zijn." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" -msgstr "cURL (vereist als automatische versiechecks ingeschakeld zijn, eveneens voor bepaalde modules)" +msgid "Hosted IdP metadata present" +msgstr "Hosted IdP metadata aanwezig" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" -msgstr "Sessie-extensie (vereist als PHP-sessies worden gebruikt)" +msgid "Hosted entities" +msgstr "Hosted entity's" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" -msgstr "Sessie-extensie" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "In SAML 2.0 Metadata XML-formaat:" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" -msgstr "PDO-extensie (vereist als een database-backend wordt gebruikt)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "Informatie over uw PHP-installatie" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" -msgstr "PDO-extensie" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "JSON-ondersteuning" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" +msgstr "LDAP-extensie" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 msgid "LDAP extension (required if an LDAP backend is used)" msgstr "LDAP-extensie (vereist als een LDAP-backend wordt gebruikt)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 -msgid "LDAP extension" -msgstr "LDAP-extensie" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "Log uit" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" -msgstr "predis/predis (vereist als de redis-dataopslag wordt gebruikt)" +msgid "Logged out" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" -msgstr "predis/predis-bibliotheek" +msgid "Logout" +msgstr "Afmelden" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" -msgstr "Memache- of Memcached-extensie (vereist als de memcache-backend wordt gebruikt)" +msgid "Look up metadata for entity:" +msgstr "Zoek metadata op voor entity:" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" -msgstr "Memcache- of Memcached-extensie" +msgid "Matching key-pair for signing assertions" +msgstr "Overeenkomend sleutelpaar voor het ondertekenen van assertions" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" -msgstr "Het instellen van de optie technicalcontact_email wordt aangeraden" +msgid "Matching key-pair for signing assertions (rollover key)" +msgstr "Overeenkomend sleutelpaar voor het ondertekenen van assertions (rollover)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" -msgstr "Er moet een auth.adminpassword ingesteld zijn" +msgid "Matching key-pair for signing metadata" +msgstr "Overeenkomend sleutelpaar voor het ondertekenen van metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "U gebruikt geen HTTPS om de verbinding met uw gebruikers te beveiligen. HTTP werkt prima voor testdoeleinden, maar in een productieomgeving zou HTTPS gebruikt moeten worden.Lees meer over het onderhoud van SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "Memcache- of Memcached-extensie" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." -msgstr "In de configuratie staat het meegeleverde secret salt. Verzeker u ervan de waarde van de secretsalt parameter aan te passen voor productieomgevingen. Lees meer over het onderhoud van SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgstr "Memache- of Memcached-extensie (vereist als de memcache-backend wordt gebruikt)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." -msgstr "De cURL-extensie mist in PHP. Kan niet controleren op updates." +msgid "Metadata" +msgstr "Metadata" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." -msgstr "U heeft een verouderde versie van SimpleSAMLphp. Het is aan te raden zo snel mogelijk te upgraden naar de laatste versie." +msgid "Metadata parser" +msgstr "Metadata parser" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML naar SimpleSAMLphp metadata vertaling" +msgid "Modules" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" -msgstr "SAML 2.0 SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "Multibye String-extensie" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" -msgstr "SAML 2.0 IdP metadata" +msgid "No file selected." +msgstr "Geen bestand geselecteerd." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" -msgstr "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" +msgstr "OpenSSL" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" -msgstr "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "PDO-extensie (vereist als een database-backend wordt gebruikt)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Configuratie" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" +msgstr "PDO-extensie" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" -msgstr "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "PHP %minimum% of hoger is benodigd. U heeft: %current%" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federatie" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" +msgstr "" -msgid "Authentication data" -msgstr "Authenticatiegegevens" +msgid "Parse" +msgstr "Converteer" -msgid "Content of jpegPhoto attribute" -msgstr "Inhoud van het jpegPhoto-attribuut" +msgid "Radius extension" +msgstr "Radius-extensie" -msgid "Copy to clipboard" -msgstr "Kopieer naar klembord" +msgid "Radius extension (required if a radius backend is used)" +msgstr "Radius-extensie (vereist als een radius-backend wordt gebruikt)" -msgid "Format" -msgstr "Formaat" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" +msgstr "Reguliere expressie-ondersteuning" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." -msgstr "Hallo, dit is de statuspagina van SimpleSAMLphp. Hier kunt u zien of uw sessie verlopen is, hoe lang het nog duurt totdat die verloopt en alle attributen die met uw sessie verbonden zijn." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "SAML 2.0 IdP metadata" -msgid "Logout" -msgstr "Afmelden" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "SAML 2.0 SP metadata" + +msgid "SAML Metadata" +msgstr "SAML Metadata" msgid "SAML Subject" msgstr "SAML Subject" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp installatiepagina" +msgid "Search" +msgstr "Zoek" -msgid "Technical information" -msgstr "Technische informatie" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" +msgstr "Sessie-extensie" -msgid "Your attributes" -msgstr "Uw attributen" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "Sessie-extensie (vereist als PHP-sessies worden gebruikt)" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Uw sessie is nog %remaining% seconden geldig vanaf dit moment." +msgid "SimpleSAMLphp Metadata" +msgstr "SimpleSAMLphp Metadata" -msgid "not set" -msgstr "niet aanwezig" +msgid "SimpleSAMLphp Show Metadata" +msgstr "SimpleSAMLphp Toon Metadata" -msgid "Certificates" -msgstr "Certificaten" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp installatiepagina" -msgid "Deprecated" -msgstr "Verouderd" +msgid "SimpleSAMLphp is installed in:" +msgstr "SimpleSAMLphp is geïnstalleerd in:" -msgid "EntityID" -msgstr "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "Standard PHP library (SPL)" -msgid "Hosted entities" -msgstr "Hosted entity's" +msgid "Technical information" +msgstr "Technische informatie" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "In SAML 2.0 Metadata XML-formaat:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "Test" -msgid "Look up metadata for entity:" -msgstr "Zoek metadata op voor entity:" +msgid "Test Authentication Sources" +msgstr "Test Authentication Sources" -msgid "SAML Metadata" -msgstr "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" -msgid "Search" -msgstr "Zoek" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" +msgstr "Het instellen van de optie technicalcontact_email wordt aangeraden" -msgid "SimpleSAMLphp Metadata" -msgstr "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "Er moet een auth.adminpassword ingesteld zijn" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgstr "De cURL-extensie mist in PHP. Kan niet controleren op updates." msgid "Tools" msgstr "Gereedschap" @@ -245,80 +280,88 @@ msgstr "Type:" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "Gebruik dit als de andere zijde ook SimpleSAMLphp gebruikt:" -msgid "You can get the metadata XML on a dedicated URL:" -msgstr "U kunt de metadata-XML opvragen via deze URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" +msgstr "XML DOM" -msgid "expired" -msgstr "verlopen" +msgid "XML metadata" +msgstr "XML-metadata" -msgid "expires" -msgstr "verloopt" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML naar SimpleSAMLphp metadata vertaling" -msgid "new" -msgstr "nieuw" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "U heeft een verouderde versie van SimpleSAMLphp. Het is aan te raden zo snel mogelijk te upgraden naar de laatste versie." -msgid "Back" -msgstr "Terug" +msgid "You are running version %version%." +msgstr "U draait versie %version%." -msgid "Metadata" -msgstr "Metadata" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "U kunt de metadata-XML opvragen via deze URL:" -msgid "SimpleSAMLphp Show Metadata" -msgstr "SimpleSAMLphp Toon Metadata" +msgid "You have been logged out." +msgstr "" -msgid "An error occurred" -msgstr "Er trad een fout op" +msgid "You have the following modules installed" +msgstr "" -msgid "Converted metadata" -msgstr "Geconverteerde metadata" +msgid "Your attributes" +msgstr "Uw attributen" -msgid "Metadata parser" -msgstr "Metadata parser" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Uw sessie is nog %remaining% seconden geldig vanaf dit moment." -msgid "No file selected." -msgstr "Geen bestand geselecteerd." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" +msgstr "ZLib" -msgid "Parse" -msgstr "Converteer" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "cURL (kan nodig zijn voor bepaalde modules)" -msgid "XML metadata" -msgstr "XML-metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "cURL (vereist als automatische versiechecks ingeschakeld zijn, eveneens voor bepaalde modules)" -msgid "or select a file:" -msgstr "of kies een bestand:" +msgid "default" +msgstr "" -msgid "SimpleSAMLphp is installed in:" -msgstr "SimpleSAMLphp is geïnstalleerd in:" +msgid "disabled" +msgstr "" -msgid "You are running version %version%." -msgstr "U draait versie %version%." +msgid "enabled" +msgstr "" -msgid "optional" -msgstr "optioneel" +msgid "expired" +msgstr "verlopen" -msgid "required" -msgstr "vereist" +msgid "expires" +msgstr "verloopt" -msgid "Test Authentication Sources" -msgstr "Test Authentication Sources" +msgid "means the module is not enabled" +msgstr "" -msgid "Checking your PHP installation" -msgstr "Controle van de PHP-installatie" +msgid "new" +msgstr "nieuw" -msgid "Radius extension (required if a radius backend is used)" -msgstr "Radius-extensie (vereist als een radius-backend wordt gebruikt)" +msgid "not set" +msgstr "niet aanwezig" -msgid "Radius extension" -msgstr "Radius-extensie" +msgid "optional" +msgstr "optioneel" -msgid "Hosted IdP metadata present" -msgstr "Hosted IdP metadata aanwezig" +msgid "or select a file:" +msgstr "of kies een bestand:" -msgid "Matching key-pair for signing assertions" -msgstr "Overeenkomend sleutelpaar voor het ondertekenen van assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" +msgstr "predis/predis (vereist als de redis-dataopslag wordt gebruikt)" -msgid "Matching key-pair for signing assertions (rollover key)" -msgstr "Overeenkomend sleutelpaar voor het ondertekenen van assertions (rollover)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" +msgstr "predis/predis-bibliotheek" -msgid "Matching key-pair for signing metadata" -msgstr "Overeenkomend sleutelpaar voor het ondertekenen van metadata" +msgid "required" +msgstr "vereist" diff --git a/modules/admin/locales/nn/LC_MESSAGES/admin.po b/modules/admin/locales/nn/LC_MESSAGES/admin.po index 1139e5912c..dbc4da8759 100644 --- a/modules/admin/locales/nn/LC_MESSAGES/admin.po +++ b/modules/admin/locales/nn/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnostiser hostnavn, port og protokoll" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Du bruker ikkje HTTPS - kryptert kommunikasjon med brukaren. Du kan bruka SimpleSAMLphp uten HTTPS til testformål, men dersom du skal bruka SimpleSAMLphp i eit produksjonsmiljø, vil vi sterkt tilrå å skru på sikker kommunikasjon med HTTPS. [ Les meir i dokumentet: SimpleSAMLphp maintenance ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Sertifikat" + +msgid "Checking your PHP installation" +msgstr "Sjekker din PHP installasjon" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfigurasjon" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Konverterte metadata" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Utfasa" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnostiser hostnavn, port og protokoll" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Føderasjon" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "På SAML 2.0 metadata XML-format" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Logg ut" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Du bruker ikkje HTTPS - kryptert kommunikasjon med brukaren. Du kan bruka SimpleSAMLphp uten HTTPS til testformål, men dersom du skal bruka SimpleSAMLphp i eit produksjonsmiljø, vil vi sterkt tilrå å skru på sikker kommunikasjon med HTTPS. [ Les meir i dokumentet: SimpleSAMLphp maintenance ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadata" + +msgid "Metadata parser" +msgstr "Parser for metadata" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Oversetter fra XML til SimpleSAMLphp metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfigurasjon" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Føderasjon" +msgid "Parse" +msgstr "Parser" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Logg ut" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp installasjons-side" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Dine attributtar" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Din sesjon er gyldig i %remaining% sekund frå no." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Sertifikat" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp installasjons-side" -msgid "Deprecated" -msgstr "Utfasa" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "På SAML 2.0 metadata XML-format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML metadata" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Oversetter fra XML til SimpleSAMLphp metadata" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadata" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Konverterte metadata" +msgid "Your attributes" +msgstr "Dine attributtar" -msgid "Metadata parser" -msgstr "Parser for metadata" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Din sesjon er gyldig i %remaining% sekund frå no." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Parser" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Sjekker din PHP installasjon" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/no/LC_MESSAGES/admin.po b/modules/admin/locales/no/LC_MESSAGES/admin.po index a1391a9473..5f41915bd2 100644 --- a/modules/admin/locales/no/LC_MESSAGES/admin.po +++ b/modules/admin/locales/no/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: no\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnostiser hostnavn, port og protokoll" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Du bruker ikke HTTPS - kryptert kommunikasjon med brukeren. HTTP fungerer utmerket til testformål, men i et produksjonsmiljø anbefales sterkt å skru på sikker kommunikasjon med HTTPS. [ Les mer i dokumentet: SimpleSAMLphp maintenance ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Sertifikater" + +msgid "Checking your PHP installation" +msgstr "Sjekker din PHP installasjon" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfigurasjon" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Konvertert metadata" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Utdatert" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnostiser hostnavn, port og protokoll" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Føderasjon" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "I SAML 2.0 Metadata XML Format:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Logg ut" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Du bruker ikke HTTPS - kryptert kommunikasjon med brukeren. HTTP fungerer utmerket til testformål, men i et produksjonsmiljø anbefales sterkt å skru på sikker kommunikasjon med HTTPS. [ Les mer i dokumentet: SimpleSAMLphp maintenance ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadata" + +msgid "Metadata parser" +msgstr "Metadata parser" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML til SimpleSAMLphp metadata-oversetter" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfigurasjon" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Føderasjon" +msgid "Parse" +msgstr "Pars" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Logg ut" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp installasjonsside" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Dine attributter" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Din sesjon er gyldig i %remaining% sekunder fra nå." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Sertifikater" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp installasjonsside" -msgid "Deprecated" -msgstr "Utdatert" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "I SAML 2.0 Metadata XML Format:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML metadata" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML til SimpleSAMLphp metadata-oversetter" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadata" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Konvertert metadata" +msgid "Your attributes" +msgstr "Dine attributter" -msgid "Metadata parser" -msgstr "Metadata parser" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Din sesjon er gyldig i %remaining% sekunder fra nå." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Pars" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Sjekker din PHP installasjon" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/pl/LC_MESSAGES/admin.po b/modules/admin/locales/pl/LC_MESSAGES/admin.po index 3081189c9a..a9b32fd98a 100644 --- a/modules/admin/locales/pl/LC_MESSAGES/admin.po +++ b/modules/admin/locales/pl/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnostyka na hoście, port i protokół" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Nie używasz HTTPS - szyfrowana komunikacja z użytkownikiem. HTTP jest OK dla testów, ale na produkcji powinieneś używać tylko HTTPS. [ Przeczytaj więcej o zarządzaniu SimpleSAMLphp ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +msgid "Checking your PHP installation" +msgstr "Sprawdzanie instalacji PHP" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfiguracja" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +msgid "Converted metadata" +msgstr "Skonwertowane metadane" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +msgid "Deprecated" +msgstr "Depreciado" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnostyka na hoście, port i protokół" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federacja" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "Hosted entities" +msgstr "" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "W formacie SAML 2.0 Metadata XML" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Wyloguj" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Nie używasz HTTPS - szyfrowana komunikacja z użytkownikiem. HTTP jest OK dla testów, ale na produkcji powinieneś używać tylko HTTPS. [ Przeczytaj więcej o zarządzaniu SimpleSAMLphp ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadane" + +msgid "Metadata parser" +msgstr "Parser metadanych" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Konwerter metadanych z formatu XML do formatu SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfiguracja" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federacja" +msgid "Parse" +msgstr "Przetwórz" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Wyloguj" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" +msgid "Search" msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Twoje atrybuty" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Twoja sesja jest jeszcze ważna przez %remaining% sekund" +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" +msgid "SimpleSAMLphp installation page" msgstr "" -msgid "Deprecated" -msgstr "Depreciado" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "W formacie SAML 2.0 Metadata XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML Metadane" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Konwerter metadanych z formatu XML do formatu SimpleSAMLphp" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadane" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Skonwertowane metadane" +msgid "Your attributes" +msgstr "Twoje atrybuty" -msgid "Metadata parser" -msgstr "Parser metadanych" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Twoja sesja jest jeszcze ważna przez %remaining% sekund" -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Przetwórz" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML Metadane" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Sprawdzanie instalacji PHP" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/pt/LC_MESSAGES/admin.po b/modules/admin/locales/pt/LC_MESSAGES/admin.po index a70b2a2602..b6ed55f83b 100644 --- a/modules/admin/locales/pt/LC_MESSAGES/admin.po +++ b/modules/admin/locales/pt/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnósticos: hostname, porto e protocolo" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Não está a ser usado HTTPS - comunicação cifrada com o utilizador. Para ambientes de teste, ligações HTTP são suficientes, mas num ambiente de produção deve ser usado HTTPS. [ Ler mais sobre manutenção do SimpleSAMLphp ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +msgid "Checking your PHP installation" +msgstr "Verificação do seu ambiente PHP" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Configuração" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +msgid "Converted metadata" +msgstr "Resultado da conversão de Metadados" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +msgid "Deprecated" +msgstr "Descontinuado" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnósticos: hostname, porto e protocolo" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federação" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "Hosted entities" +msgstr "" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Metadados no formato XML SAML 2.0" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Sair" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Não está a ser usado HTTPS - comunicação cifrada com o utilizador. Para ambientes de teste, ligações HTTP são suficientes, mas num ambiente de produção deve ser usado HTTPS. [ Ler mais sobre manutenção do SimpleSAMLphp ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadados" + +msgid "Metadata parser" +msgstr "Conversor de Metadados" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Conversor de metadados de XML para SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Configuração" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federação" +msgid "Parse" +msgstr "Converter" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Sair" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" +msgid "Search" msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Os seus atributos" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "A sua sessão é válida por %remaining% segundos." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" +msgid "SimpleSAMLphp installation page" msgstr "" -msgid "Deprecated" -msgstr "Descontinuado" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Metadados no formato XML SAML 2.0" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "Metadados em XML" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Conversor de metadados de XML para SimpleSAMLphp" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadados" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Resultado da conversão de Metadados" +msgid "Your attributes" +msgstr "Os seus atributos" -msgid "Metadata parser" -msgstr "Conversor de Metadados" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "A sua sessão é válida por %remaining% segundos." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Converter" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "Metadados em XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Verificação do seu ambiente PHP" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/pt-br/LC_MESSAGES/admin.po b/modules/admin/locales/pt_BR/LC_MESSAGES/admin.po similarity index 84% rename from modules/admin/locales/pt-br/LC_MESSAGES/admin.po rename to modules/admin/locales/pt_BR/LC_MESSAGES/admin.po index 96e24c962d..034f23b725 100644 --- a/modules/admin/locales/pt-br/LC_MESSAGES/admin.po +++ b/modules/admin/locales/pt_BR/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnósticos do host, porta e protocolo" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Você não está utilizando HTTPS - comunicação encriptada com o usuário. HTTP funciona bem para testes, mas você deve utilizar HTTPS para produção. [ Leia mais sobre manutenção do SimpleSAMLphp ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +msgid "Checking your PHP installation" +msgstr "Checando sua instalação do PHP" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Configuração" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +msgid "Converted metadata" +msgstr "Metadata convetida" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +msgid "Deprecated" +msgstr "Descontinuado" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnósticos do host, porta e protocolo" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federação" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "Hosted entities" +msgstr "" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Em formato SAML 2.0 Metadata XML" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Desconectar" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Você não está utilizando HTTPS - comunicação encriptada com o usuário. HTTP funciona bem para testes, mas você deve utilizar HTTPS para produção. [ Leia mais sobre manutenção do SimpleSAMLphp ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadata" + +msgid "Metadata parser" +msgstr "Parser Metadata" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Conversor de XML para metadata do SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Configuração" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federação" +msgid "Parse" +msgstr "Parse" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Desconectar" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "Página de Instalação do SimpleSAMLphp" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Seus atributos" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Sua sessão é válida por %remaining% segundos a partir de agora." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" +msgid "SimpleSAMLphp installation page" +msgstr "Página de Instalação do SimpleSAMLphp" + +msgid "SimpleSAMLphp is installed in:" msgstr "" -msgid "Deprecated" -msgstr "Descontinuado" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "" -msgid "EntityID" +msgid "Technical information" msgstr "" -msgid "Hosted entities" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Em formato SAML 2.0 Metadata XML" +msgid "Test Authentication Sources" +msgstr "" -msgid "Look up metadata for entity:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "Metadata XML" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Conversor de XML para metadata do SimpleSAMLphp" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadata" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Metadata convetida" +msgid "Your attributes" +msgstr "Seus atributos" -msgid "Metadata parser" -msgstr "Parser Metadata" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Sua sessão é válida por %remaining% segundos a partir de agora." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Parse" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "Metadata XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Checando sua instalação do PHP" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/ro/LC_MESSAGES/admin.po b/modules/admin/locales/ro/LC_MESSAGES/admin.po index 1e2e960144..e56a5fec88 100644 --- a/modules/admin/locales/ro/LC_MESSAGES/admin.po +++ b/modules/admin/locales/ro/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnostic despre numele de host, port și protocol" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Atenție, nu utilizați HTTPS - comunicare criptată cu utilizatorul. HTTP funcționeaza bine pentru teste, dar în producție trebuie folosit HTTPS. [Citiți mai multe despre întreținerea SimpleSAMLphp ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Certificate" + +msgid "Checking your PHP installation" +msgstr "Verificarea instalării PHP" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Configurare" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Metadate convertite" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Depreciate" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnostic despre numele de host, port și protocol" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federație" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "În format metadate XML SAML 2.0:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Deautentificare" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Atenție, nu utilizați HTTPS - comunicare criptată cu utilizatorul. HTTP funcționeaza bine pentru teste, dar în producție trebuie folosit HTTPS. [Citiți mai multe despre întreținerea SimpleSAMLphp ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadate" + +msgid "Metadata parser" +msgstr "Analizor de metadate" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Convertor metadate din XML în SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Configurare" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federație" +msgid "Parse" +msgstr "Analizează" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Deautentificare" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "Pagina de instalare a SimpleSAMLphp" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Atributele dumneavoastră" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Sesiunea dumneavoastră mai este validă încă %remaining%." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Certificate" +msgid "SimpleSAMLphp installation page" +msgstr "Pagina de instalare a SimpleSAMLphp" -msgid "Deprecated" -msgstr "Depreciate" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "În format metadate XML SAML 2.0:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "Metadate XML" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Convertor metadate din XML în SimpleSAMLphp" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadate" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Metadate convertite" +msgid "Your attributes" +msgstr "Atributele dumneavoastră" -msgid "Metadata parser" -msgstr "Analizor de metadate" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Sesiunea dumneavoastră mai este validă încă %remaining%." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Analizează" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "Metadate XML" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Verificarea instalării PHP" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/ru/LC_MESSAGES/admin.po b/modules/admin/locales/ru/LC_MESSAGES/admin.po index f77b6dc654..1e53a4c1dd 100644 --- a/modules/admin/locales/ru/LC_MESSAGES/admin.po +++ b/modules/admin/locales/ru/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "Конфигурация использует секретную соль по-умолчанию - убедитесь, что вы изменили значение 'secretsalt' в конфигурации simpleSAML в производственной среде. [Прочитать больше о конфигурации SimpleSAMLphp ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Диагностика имени хоста, порта и протокола" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Вы не используете HTTPS - шифрованное соединение с пользователем. HTTP работает хорошо для тестовых целей, но в экплуатации вы должны использовать HTTPS. [ Узнайте больше об обслуживании SimpleSAMLphp ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Сертификаты" + +msgid "Checking your PHP installation" +msgstr "Проверка инсталляции PHP" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Конфигурация" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Преобразованные метаданные" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Устаревшие" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Диагностика имени хоста, порта и протокола" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Федерация" + +msgid "Format" +msgstr "Формат" + +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "xml формат метаданных SAML 2.0:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Выйти" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Вы не используете HTTPS - шифрованное соединение с пользователем. HTTP работает хорошо для тестовых целей, но в экплуатации вы должны использовать HTTPS. [ Узнайте больше об обслуживании SimpleSAMLphp ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." -msgstr "Конфигурация использует секретную соль по-умолчанию - убедитесь, что вы изменили значение 'secretsalt' в конфигурации simpleSAML в производственной среде. [Прочитать больше о конфигурации SimpleSAMLphp ]" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Метаданные" + +msgid "Metadata parser" +msgstr "Средство синтаксического анализа метаданных" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Конвертор XML в метаданные SimpleSAMLphp" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Конфигурация" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Федерация" +msgid "Parse" +msgstr "Выполнить синтаксический анализ" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" -msgstr "Формат" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Выйти" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "Тема SAML" -msgid "SimpleSAMLphp installation page" -msgstr "Страница инсталляции SimpleSAMLphp" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Ваши атрибуты" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Ваша сессия действительна в течение следующих %remaining% секунд." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" -msgstr "не установлен" +msgid "SimpleSAMLphp Show Metadata" +msgstr "" -msgid "Certificates" -msgstr "Сертификаты" +msgid "SimpleSAMLphp installation page" +msgstr "Страница инсталляции SimpleSAMLphp" -msgid "Deprecated" -msgstr "Устаревшие" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "xml формат метаданных SAML 2.0:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML метаданные" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Конвертор XML в метаданные SimpleSAMLphp" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Метаданные" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Преобразованные метаданные" +msgid "Your attributes" +msgstr "Ваши атрибуты" -msgid "Metadata parser" -msgstr "Средство синтаксического анализа метаданных" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Ваша сессия действительна в течение следующих %remaining% секунд." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Выполнить синтаксический анализ" - -msgid "XML metadata" -msgstr "XML метаданные" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "or select a file:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "default" msgstr "" -msgid "You are running version %version%." +msgid "disabled" msgstr "" -msgid "optional" +msgid "enabled" msgstr "" -msgid "required" +msgid "expired" msgstr "" -msgid "Test Authentication Sources" +msgid "expires" msgstr "" -msgid "Checking your PHP installation" -msgstr "Проверка инсталляции PHP" +msgid "means the module is not enabled" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "new" msgstr "" -msgid "Radius extension" +msgid "not set" +msgstr "не установлен" + +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/se/LC_MESSAGES/admin.po b/modules/admin/locales/se/LC_MESSAGES/admin.po index 8cc8a172e9..39fbdafdf9 100644 --- a/modules/admin/locales/se/LC_MESSAGES/admin.po +++ b/modules/admin/locales/se/LC_MESSAGES/admin.po @@ -1,4 +1,346 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: se\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" +msgstr "" + +msgid "An error occurred" +msgstr "" + +msgid "Authentication data" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Certificates" +msgstr "" + +msgid "Checks" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "" + +msgid "Content of jpegPhoto attribute" +msgstr "" + +msgid "Converted metadata" +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" +msgstr "" + +msgid "Deprecated" +msgstr "" + +msgid "Details" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "" + +msgid "EntityID" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "" + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "" + +msgid "Hosted entities" +msgstr "" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "" + +msgid "Logged out" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Look up metadata for entity:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgstr "" + +msgid "Metadata" +msgstr "" + +msgid "Metadata parser" +msgstr "" + +msgid "Modules" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" + +msgid "No file selected." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" +msgstr "" + +msgid "Parse" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "" + +msgid "SAML Metadata" +msgstr "" + +msgid "SAML Subject" +msgstr "" + +msgid "Search" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" + +msgid "SimpleSAMLphp Metadata" +msgstr "" + +msgid "SimpleSAMLphp Show Metadata" +msgstr "" + +msgid "SimpleSAMLphp installation page" +msgstr "" + +msgid "SimpleSAMLphp is installed in:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "" + +msgid "Technical information" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" + +msgid "Test Authentication Sources" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgstr "" + +msgid "Tools" +msgstr "" + +msgid "Trusted entities" +msgstr "" + +msgid "Type:" +msgstr "" + +msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" +msgstr "" + +msgid "XML metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "" + +msgid "You are running version %version%." +msgstr "" + +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" + +msgid "You have been logged out." +msgstr "" + +msgid "You have the following modules installed" +msgstr "" + +msgid "Your attributes" +msgstr "" + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" + +msgid "default" +msgstr "" + +msgid "disabled" +msgstr "" + +msgid "enabled" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "expires" +msgstr "" + +msgid "means the module is not enabled" +msgstr "" + +msgid "new" +msgstr "" + +msgid "not set" +msgstr "" + +msgid "optional" +msgstr "" + +msgid "or select a file:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" +msgstr "" + +msgid "required" +msgstr "" diff --git a/modules/admin/locales/sk/LC_MESSAGES/admin.po b/modules/admin/locales/sk/LC_MESSAGES/admin.po index f1945ab780..6bd52a99c4 100644 --- a/modules/admin/locales/sk/LC_MESSAGES/admin.po +++ b/modules/admin/locales/sk/LC_MESSAGES/admin.po @@ -1,241 +1,272 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" -msgstr "Odhlásiť sa" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "Konfigurácia používa prednastavený salt. Uistite sa, že je možnosť secretsalt zmenená v produkčnom prostredí. Prečítajte si viac o údržbe SimpleSAMLphp." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnostika mena hostiteľa, portu a protokolu" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Nepoužívate HTTPS na zabezpečenie komunikácie s Vašimi užívateľmi. HTTP funguje pri testovaní, ale v produkčnom prostredí by ste mali používať HTTPS. Prečítajte si viac o údržbe SimpleSAMLphp." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" -msgstr "Informácie o Vašej PHP inštalácii" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" +msgstr "ADFS IdP metadáta" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" -msgstr "Je potrebné PHP %minimum% alebo novšie. Aktuálna verzia: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" +msgstr "ADFS SP metadáta" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" -msgstr "Rozšírenie Date/Time" +msgid "An error occurred" +msgstr "Nastala chyba" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" -msgstr "Hashovacia funkcia" +msgid "Authentication data" +msgstr "Autentifikačné dáta" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" -msgstr "" +msgid "Back" +msgstr "Späť" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" -msgstr "" +msgid "Certificates" +msgstr "Certifikáty" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" -msgstr "" +msgid "Checking your PHP installation" +msgstr "Kontrola Vašej PHP inštalácie" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 -msgid "PHP intl extension" -msgstr "PHP intl rozšírenie" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfigurácia" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" -msgstr "podpora JSON" +msgid "Content of jpegPhoto attribute" +msgstr "Obsah atribútu jpegPhoto" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" -msgstr "Štandardná PHP knižnica (SPL)" +msgid "Converted metadata" +msgstr "Konvertované metadáta" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" -msgstr "rozšírenie Multibyte String" +msgid "Copy to clipboard" +msgstr "Kopírovať do schránky" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" -msgstr "cURL (môže byť vyžadované niektorými modulmi)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" +msgstr "Rozšírenie Date/Time" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" -msgstr "cURL (vyžadované, ak sú povolené kontroly aktualizácií, taktiež niektorými modulmi)" +msgid "Deprecated" +msgstr "Zastaralé" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" -msgstr "rozšírenie Session (vyžadované, ak sa využívajú PHP relácie)" +msgid "Details" +msgstr "Detaily" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" -msgstr "rozšírenie Session" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnostika mena hostiteľa, portu a protokolu" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" -msgstr "rozšírenie PDO" +msgid "EntityID" +msgstr "EntityID" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" -msgstr "rozšírenie PDO" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federácia" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" -msgstr "rozšírenie LDAP (vyžadované, ak je využívaný LDAP backend)" +msgid "Format" +msgstr "Formát" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "Hashovacia funkcia" + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "" + +msgid "Hosted IdP metadata present" +msgstr "Dostupné IdP metadáta lokálnej prevádzky" + +msgid "Hosted entities" +msgstr "Lokálne prevádzkované entity" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "V SAML 2.0 Metadata XML formáte:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "Informácie o Vašej PHP inštalácii" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "podpora JSON" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "rozšírenie LDAP" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" -msgstr "predis/predis (vyžadované, ak sa využíva dátové úložisko redis)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" +msgstr "rozšírenie LDAP (vyžadované, ak je využívaný LDAP backend)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" -msgstr "predis/predis knižnica" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "Odhlásiť sa" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" -msgstr "rozšírenie Memcache alebo Memcached (vyžadované ak je využívaný memcache backend)" +msgid "Logged out" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" -msgstr "rozšírenie Memcache alebo Memcached" +msgid "Logout" +msgstr "Odhlásenie" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" -msgstr "Možnosť technicalcontact_email by mala byť nastavená" +msgid "Look up metadata for entity:" +msgstr "Vyhľadať metadáta pre entitu:" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" -msgstr "Možnosť auth.adminpassword musí byť nastavená" +msgid "Matching key-pair for signing assertions" +msgstr "Zhodný pár kľúčov pre podpis odpovedí" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Nepoužívate HTTPS na zabezpečenie komunikácie s Vašimi užívateľmi. HTTP funguje pri testovaní, ale v produkčnom prostredí by ste mali používať HTTPS. Prečítajte si viac o údržbe SimpleSAMLphp." +msgid "Matching key-pair for signing assertions (rollover key)" +msgstr "Zhodný pár kľúčov pre podpis odpovedí (rollover kľúč)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." -msgstr "Konfigurácia používa prednastavený salt. Uistite sa, že je možnosť secretsalt zmenená v produkčnom prostredí. Prečítajte si viac o údržbe SimpleSAMLphp." +msgid "Matching key-pair for signing metadata" +msgstr "Zhodný pár kľúčov pre podpis metadát" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." -msgstr "Chýba cURL PHP rozšírenie. Nie je možné skontrolovať aktualizácie." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "rozšírenie Memcache alebo Memcached" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." -msgstr "Máte zastaralú verziu SimpleSAMLphp. Aktualizujte prosím čo najskôr na najnovšiu verziu." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgstr "rozšírenie Memcache alebo Memcached (vyžadované ak je využívaný memcache backend)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Konvertor metadát z XML na SimpleSAMLphp" +msgid "Metadata" +msgstr "Metadáta" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" -msgstr "SAML 2.0 SP metadáta" +msgid "Metadata parser" +msgstr "Parser metadát" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" -msgstr "SAML 2.0 IdP metadáta" +msgid "Modules" +msgstr "Moduly" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" -msgstr "ADFS SP metadáta" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "rozšírenie Multibyte String" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" -msgstr "ADFS IdP metadáta" +msgid "No file selected." +msgstr "Nevybraný žiadny súbor." -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfigurácia" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" -msgstr "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "rozšírenie PDO" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federácia" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" +msgstr "rozšírenie PDO" -msgid "Authentication data" -msgstr "Autentifikačné dáta" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "Je potrebné PHP %minimum% alebo novšie. Aktuálna verzia: %current%" -msgid "Content of jpegPhoto attribute" -msgstr "Obsah atribútu jpegPhoto" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" +msgstr "PHP intl rozšírenie" -msgid "Copy to clipboard" -msgstr "Kopírovať do schránky" +msgid "Parse" +msgstr "Parsovať" -msgid "Format" -msgstr "Formát" +msgid "Radius extension" +msgstr "rozšírenie Radius" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +msgid "Radius extension (required if a radius backend is used)" +msgstr "rozšírenie Radius (vyžadované, ak je využívaný Radius backend)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Logout" -msgstr "Odhlásenie" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "SAML 2.0 IdP metadáta" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "SAML 2.0 SP metadáta" + +msgid "SAML Metadata" +msgstr "SAML metadáta" msgid "SAML Subject" msgstr "SAML Subjekt" -msgid "SimpleSAMLphp installation page" -msgstr "Inštalačná stránka SimpleSAMLphp" +msgid "Search" +msgstr "Vyhľadávanie" -msgid "Technical information" -msgstr "Technické informácie" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" +msgstr "rozšírenie Session" -msgid "Your attributes" -msgstr "Vaše atribúty" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "rozšírenie Session (vyžadované, ak sa využívajú PHP relácie)" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Vaša relácia je platná ešte %remaining% sekúnd." +msgid "SimpleSAMLphp Metadata" +msgstr "SimpleSAMLphp metadáta" -msgid "not set" -msgstr "nenastavené" +msgid "SimpleSAMLphp Show Metadata" +msgstr "SimpleSAMLphp Zobraziť metadáta" -msgid "Certificates" -msgstr "Certifikáty" +msgid "SimpleSAMLphp installation page" +msgstr "Inštalačná stránka SimpleSAMLphp" -msgid "Deprecated" -msgstr "Zastaralé" +msgid "SimpleSAMLphp is installed in:" +msgstr "SimpleSAMLphp je nainštalovaný v:" -msgid "EntityID" -msgstr "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "Štandardná PHP knižnica (SPL)" -msgid "Hosted entities" -msgstr "Lokálne prevádzkované entity" +msgid "Technical information" +msgstr "Technické informácie" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "V SAML 2.0 Metadata XML formáte:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "Test" -msgid "Look up metadata for entity:" -msgstr "Vyhľadať metadáta pre entitu:" +msgid "Test Authentication Sources" +msgstr "Test zdrojov autentifikácie" -msgid "SAML Metadata" -msgstr "SAML metadáta" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" -msgid "Search" -msgstr "Vyhľadávanie" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" +msgstr "Možnosť technicalcontact_email by mala byť nastavená" -msgid "SimpleSAMLphp Metadata" -msgstr "SimpleSAMLphp metadáta" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "Možnosť auth.adminpassword musí byť nastavená" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgstr "Chýba cURL PHP rozšírenie. Nie je možné skontrolovať aktualizácie." msgid "Tools" msgstr "Nástroje" @@ -249,65 +280,53 @@ msgstr "Typ:" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "Toto použite, ak používate SimpleSAMLphp entitu na druhej strane:" -msgid "You can get the metadata XML on a dedicated URL:" -msgstr "Môžete získať XML metadát na samostatnom odkaze:" - -msgid "expired" -msgstr "expirované" - -msgid "expires" -msgstr "expiruje" - -msgid "new" -msgstr "nové" - -msgid "Back" -msgstr "Späť" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" +msgstr "" -msgid "Metadata" -msgstr "Metadáta" +msgid "XML metadata" +msgstr "XML metadáta" -msgid "SimpleSAMLphp Show Metadata" -msgstr "SimpleSAMLphp Zobraziť metadáta" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Konvertor metadát z XML na SimpleSAMLphp" -msgid "An error occurred" -msgstr "Nastala chyba" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "Máte zastaralú verziu SimpleSAMLphp. Aktualizujte prosím čo najskôr na najnovšiu verziu." -msgid "Converted metadata" -msgstr "Konvertované metadáta" +msgid "You are running version %version%." +msgstr "Vaša verzia: %version%." -msgid "Metadata parser" -msgstr "Parser metadát" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "Môžete získať XML metadát na samostatnom odkaze:" -msgid "No file selected." -msgstr "Nevybraný žiadny súbor." +msgid "You have been logged out." +msgstr "" -msgid "Parse" -msgstr "Parsovať" +msgid "You have the following modules installed" +msgstr "Nasledujúce moduly sú nainštalované" -msgid "XML metadata" -msgstr "XML metadáta" +msgid "Your attributes" +msgstr "Vaše atribúty" -msgid "or select a file:" -msgstr "alebo vyberte súbor:" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Vaša relácia je platná ešte %remaining% sekúnd." -msgid "Checks" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Details" -msgstr "Detaily" - -msgid "Modules" -msgstr "Moduly" - -msgid "SimpleSAMLphp is installed in:" -msgstr "SimpleSAMLphp je nainštalovaný v:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "cURL (môže byť vyžadované niektorými modulmi)" -msgid "You are running version %version%." -msgstr "Vaša verzia: %version%." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "cURL (vyžadované, ak sú povolené kontroly aktualizácií, taktiež niektorými modulmi)" -msgid "You have the following modules installed" -msgstr "Nasledujúce moduly sú nainštalované" +msgid "default" +msgstr "" msgid "disabled" msgstr "vypnuté" @@ -315,35 +334,34 @@ msgstr "vypnuté" msgid "enabled" msgstr "zapnuté" -msgid "means the module is not enabled" -msgstr "znamená, že modul nie je zapnutý" - -msgid "optional" -msgstr "voliteľné" +msgid "expired" +msgstr "expirované" -msgid "required" -msgstr "vyžadované" +msgid "expires" +msgstr "expiruje" -msgid "Test Authentication Sources" -msgstr "Test zdrojov autentifikácie" +msgid "means the module is not enabled" +msgstr "znamená, že modul nie je zapnutý" -msgid "Checking your PHP installation" -msgstr "Kontrola Vašej PHP inštalácie" +msgid "new" +msgstr "nové" -msgid "Radius extension (required if a radius backend is used)" -msgstr "rozšírenie Radius (vyžadované, ak je využívaný Radius backend)" +msgid "not set" +msgstr "nenastavené" -msgid "Radius extension" -msgstr "rozšírenie Radius" +msgid "optional" +msgstr "voliteľné" -msgid "Hosted IdP metadata present" -msgstr "Dostupné IdP metadáta lokálnej prevádzky" +msgid "or select a file:" +msgstr "alebo vyberte súbor:" -msgid "Matching key-pair for signing assertions" -msgstr "Zhodný pár kľúčov pre podpis odpovedí" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" +msgstr "predis/predis (vyžadované, ak sa využíva dátové úložisko redis)" -msgid "Matching key-pair for signing assertions (rollover key)" -msgstr "Zhodný pár kľúčov pre podpis odpovedí (rollover kľúč)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" +msgstr "predis/predis knižnica" -msgid "Matching key-pair for signing metadata" -msgstr "Zhodný pár kľúčov pre podpis metadát" +msgid "required" +msgstr "vyžadované" diff --git a/modules/admin/locales/sl/LC_MESSAGES/admin.po b/modules/admin/locales/sl/LC_MESSAGES/admin.po index d99a9484dc..bfa43a12ea 100644 --- a/modules/admin/locales/sl/LC_MESSAGES/admin.po +++ b/modules/admin/locales/sl/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnostika strežnika, vrata in protokol" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Ne uporabljate HTTPS-šifrirane komunikacije. SimpleSAMLphp deluje brez težav na HTTP, vendar le za testne namene, za uporabo SimpleSAMLphp v produkcijskem okolju uporabite HTTPS. [ Preberite več o SimpleSAMLphp vzdrževanju ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Digitalna potrdila" + +msgid "Checking your PHP installation" +msgstr "Preverjanje namestitve PHP" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Nastavitve" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Pretvorjeni metapodatki" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Neustrezen" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnostika strežnika, vrata in protokol" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federacija" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "V SAML 2.0 Metapodatkovni XML format:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Odjava" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Ne uporabljate HTTPS-šifrirane komunikacije. SimpleSAMLphp deluje brez težav na HTTP, vendar le za testne namene, za uporabo SimpleSAMLphp v produkcijskem okolju uporabite HTTPS. [ Preberite več o SimpleSAMLphp vzdrževanju ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metapodatki" + +msgid "Metadata parser" +msgstr "Metapodatkovna sintaktična analiza (parser)" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML v SimpleSAMLphp pretvornik metapodatkov" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Nastavitve" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federacija" +msgid "Parse" +msgstr "Sintaktična analiza (parse)" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Odjava" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "Namestitvena stran SimpleSAMLphp" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Vaši atributi" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Vaša trenutna seja je veljavna še %remaining% sekund." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Digitalna potrdila" +msgid "SimpleSAMLphp installation page" +msgstr "Namestitvena stran SimpleSAMLphp" -msgid "Deprecated" -msgstr "Neustrezen" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "V SAML 2.0 Metapodatkovni XML format:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML metapodatki" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML v SimpleSAMLphp pretvornik metapodatkov" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metapodatki" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Pretvorjeni metapodatki" +msgid "Your attributes" +msgstr "Vaši atributi" -msgid "Metadata parser" -msgstr "Metapodatkovna sintaktična analiza (parser)" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Vaša trenutna seja je veljavna še %remaining% sekund." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Sintaktična analiza (parse)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML metapodatki" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Preverjanje namestitve PHP" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/sma/LC_MESSAGES/admin.po b/modules/admin/locales/sma/LC_MESSAGES/admin.po index 8cc8a172e9..b59b92dc5a 100644 --- a/modules/admin/locales/sma/LC_MESSAGES/admin.po +++ b/modules/admin/locales/sma/LC_MESSAGES/admin.po @@ -1,4 +1,346 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: sma\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" +msgstr "" + +msgid "An error occurred" +msgstr "" + +msgid "Authentication data" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Certificates" +msgstr "" + +msgid "Checks" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "" + +msgid "Content of jpegPhoto attribute" +msgstr "" + +msgid "Converted metadata" +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" +msgstr "" + +msgid "Deprecated" +msgstr "" + +msgid "Details" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "" + +msgid "EntityID" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "" + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "" + +msgid "Hosted entities" +msgstr "" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "" + +msgid "Logged out" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Look up metadata for entity:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgstr "" + +msgid "Metadata" +msgstr "" + +msgid "Metadata parser" +msgstr "" + +msgid "Modules" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" + +msgid "No file selected." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" +msgstr "" + +msgid "Parse" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "" + +msgid "SAML Metadata" +msgstr "" + +msgid "SAML Subject" +msgstr "" + +msgid "Search" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" + +msgid "SimpleSAMLphp Metadata" +msgstr "" + +msgid "SimpleSAMLphp Show Metadata" +msgstr "" + +msgid "SimpleSAMLphp installation page" +msgstr "" + +msgid "SimpleSAMLphp is installed in:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "" + +msgid "Technical information" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" + +msgid "Test Authentication Sources" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgstr "" + +msgid "Tools" +msgstr "" + +msgid "Trusted entities" +msgstr "" + +msgid "Type:" +msgstr "" + +msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" +msgstr "" + +msgid "XML metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "" + +msgid "You are running version %version%." +msgstr "" + +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" + +msgid "You have been logged out." +msgstr "" + +msgid "You have the following modules installed" +msgstr "" + +msgid "Your attributes" +msgstr "" + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" + +msgid "default" +msgstr "" + +msgid "disabled" +msgstr "" + +msgid "enabled" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "expires" +msgstr "" + +msgid "means the module is not enabled" +msgstr "" + +msgid "new" +msgstr "" + +msgid "not set" +msgstr "" + +msgid "optional" +msgstr "" + +msgid "or select a file:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" +msgstr "" + +msgid "required" +msgstr "" diff --git a/modules/admin/locales/sr/LC_MESSAGES/admin.po b/modules/admin/locales/sr/LC_MESSAGES/admin.po index 04ffae867e..b2f2830feb 100644 --- a/modules/admin/locales/sr/LC_MESSAGES/admin.po +++ b/modules/admin/locales/sr/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Dijagnostika vezana za naziv servera (hostname), port i protokol " +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Ne koristite HTTPS - kriptovanu komunikaciju s korisnikom. HTTP se može koristiti za potrebe testiranja, ali u produkcionom okruženju trebali biste koristiti HTTPS. [ Pročitajte više o SimpleSAMLphp podešavanjima ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Sertifikati" + +msgid "Checking your PHP installation" +msgstr "Provera vaše PHP instalacije" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Podešavanja" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Konvertovani metapodaci" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Zastarelo" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Dijagnostika vezana za naziv servera (hostname), port i protokol " + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federacija" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Metapodaci u SAML 2.0 XML formatu:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Odjava" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Ne koristite HTTPS - kriptovanu komunikaciju s korisnikom. HTTP se može koristiti za potrebe testiranja, ali u produkcionom okruženju trebali biste koristiti HTTPS. [ Pročitajte više o SimpleSAMLphp podešavanjima ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metapodaci" + +msgid "Metadata parser" +msgstr "Metadata analizator" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "Pretvaranje metapodataka iz XML formata u SimpleSAMLphp format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Podešavanja" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federacija" +msgid "Parse" +msgstr "Analiziraj" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Odjava" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp instalaciona stranica" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Vaši atributi" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Vaša sesija će biti validna još %remaining% sekundi." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Sertifikati" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp instalaciona stranica" -msgid "Deprecated" -msgstr "Zastarelo" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "Metapodaci u SAML 2.0 XML formatu:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "Metapodaci u XML formatu" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Pretvaranje metapodataka iz XML formata u SimpleSAMLphp format" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metapodaci" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Konvertovani metapodaci" +msgid "Your attributes" +msgstr "Vaši atributi" -msgid "Metadata parser" -msgstr "Metadata analizator" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Vaša sesija će biti validna još %remaining% sekundi." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Analiziraj" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "Metapodaci u XML formatu" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Provera vaše PHP instalacije" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/sv/LC_MESSAGES/admin.po b/modules/admin/locales/sv/LC_MESSAGES/admin.po index c4bbf680fd..dd406a0b0a 100644 --- a/modules/admin/locales/sv/LC_MESSAGES/admin.po +++ b/modules/admin/locales/sv/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Diagnosera värdnamn, port och protokoll" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Du använder inte HTTPS - krypterad kommunikation med användaren. HTTP fungerar bra under test men i produktion ska du använda HTTPS. [ Läs mer i dokumentet SimpleSAMLphp maintenance ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "Certifikat" + +msgid "Checking your PHP installation" +msgstr "Kontrollerar PHP-installationen" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfiguration" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "Omformat metadata" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "Ej längre giltig" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Diagnosera värdnamn, port och protokoll" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federation" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "I SAML 2.0 Metadata XML-format:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Logga ut" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Du använder inte HTTPS - krypterad kommunikation med användaren. HTTP fungerar bra under test men i produktion ska du använda HTTPS. [ Läs mer i dokumentet SimpleSAMLphp maintenance ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadata" + +msgid "Metadata parser" +msgstr "Metadataanalyserare" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML till SimpleSAMLphp metadataöversättare" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfiguration" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federation" +msgid "Parse" +msgstr "Analysera" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Logga ut" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "Installationssida för SimpleSAMLphp" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Dina attribut" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Din session är giltig för %remaining% sekunder från nu." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "Certifikat" +msgid "SimpleSAMLphp installation page" +msgstr "Installationssida för SimpleSAMLphp" -msgid "Deprecated" -msgstr "Ej längre giltig" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "I SAML 2.0 Metadata XML-format:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML-metadata" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML till SimpleSAMLphp metadataöversättare" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadata" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Omformat metadata" +msgid "Your attributes" +msgstr "Dina attribut" -msgid "Metadata parser" -msgstr "Metadataanalyserare" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Din session är giltig för %remaining% sekunder från nu." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Analysera" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML-metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "Kontrollerar PHP-installationen" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/th/LC_MESSAGES/admin.po b/modules/admin/locales/th/LC_MESSAGES/admin.po new file mode 100644 index 0000000000..0ee256283e --- /dev/null +++ b/modules/admin/locales/th/LC_MESSAGES/admin.po @@ -0,0 +1,367 @@ +msgid "" +msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" +"X-Domain: admin\n" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "การกำหนดค่าใช้ค่า secret salt เริ่มต้น ตรวจสอบให้แน่ใจว่าได้ปรับเปลี่ยนตัวเลือก secretsalt ในการกำหนดค่า SimpleSAMLphp ในสภาพแวดล้อมการใช้งานจริง อ่านเพิ่มเติมเกี่ยวกับการบำรุงรักษา SimpleSAMLphp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "คุณไม่ได้ใช้ HTTPS เพื่อป้องกันการสื่อสารกับผู้ใช้ของคุณ HTTP ทำงานได้ดีสำหรับวัตถุประสงค์ในการทดสอบ แต่ในสภาพแวดล้อมการผลิต คุณควรใช้ HTTPS อ่านเพิ่มเติมเกี่ยวกับการบำรุงรักษา SimpleSAMLphp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" +msgstr "ข้อมูลเมตาของ ADFS IdP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" +msgstr "ข้อมูลเมตาของ ADFS SP" + +msgid "An error occurred" +msgstr "ระบบเกิดข้อผิดพลาด" + +msgid "Authentication data" +msgstr "ย้อนกลับ" + +msgid "Back" +msgstr "กลับ" + +msgid "Certificates" +msgstr "ใบรับรอง" + +msgid "Checking your PHP installation" +msgstr "ตรวจสอบการติดตั้ง PHP ของคุณ" + +msgid "Checks" +msgstr "การตรวจสอบ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "การตั้งค่า" + +msgid "Content of jpegPhoto attribute" +msgstr "เนื้อหาของแอตทริบิวต์ jpegPhoto" + +msgid "Converted metadata" +msgstr "ข้อมูลเมตาที่แปลงแล้ว" + +msgid "Copy to clipboard" +msgstr "คัดลอกไปยังคลิปบอร์ด" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" +msgstr "ขยายวันที่/เวลา" + +msgid "Deprecated" +msgstr "เลิกใช้งานแล้ว" + +msgid "Details" +msgstr "รายละเอียด" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "การวิเคราะห์ชื่อ โฮลต์ พอร์ตและโปรโตคอล" + +msgid "EntityID" +msgstr "EntityID" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "การรวมเครือข่าย" + +msgid "Format" +msgstr "รูปแบบ" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "กลับไปยังหน้าการตั้งค่า SimpleSAMLphp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "ฟังก์ชั่นแฮช" + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "สวัสดี นี่คือหน้าสถานะของ SimpleSAMLphp ซึ่งคุณสามารถดูได้ว่าเซสชันหมดเวลาหรือไม่ ใช้เวลานานแค่ไหนก่อนหมดเวลา และมีแอตทริบิวต์ใดบ้างที่ผูกกับเซสชันของคุณ" + +msgid "Hosted IdP metadata present" +msgstr "พบข้อมูลเมตาของผู้ให้บริการระบุตัวตน (IdP) ที่โฮสต์อยู่" + +msgid "Hosted entities" +msgstr "หน่วยงานที่โฮลต์อยู่" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "ในรูปแบบ XML เมตาดาต้า SAML 2.0:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "ข้อมูลเกี่ยวกับการติดตั้ง PHP ของคุณ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "รองรับ JSON" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" +msgstr "ส่วนขยาย LDAP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" +msgstr "ส่วนขยาย LDAP (จำเป็นถ้าใช้แบ็กเอนด์ LDAP)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "ออกจากระบบ" + +msgid "Logged out" +msgstr "ออกจากระบบแล้ว" + +msgid "Logout" +msgstr "ออกจากระบบ" + +msgid "Look up metadata for entity:" +msgstr "ค้นหาข้อมูลเมตาสำหรับเอนทิตี:" + +msgid "Matching key-pair for signing assertions" +msgstr "การจับคู่คีย์คู่สำหรับการลงนามยืนยัน" + +msgid "Matching key-pair for signing assertions (rollover key)" +msgstr "การจับคู่คีย์คู่สำหรับการลงนามยืนยัน (คีย์แบบโรลโอเวอร์)" + +msgid "Matching key-pair for signing metadata" +msgstr "การจับคู่คีย์คู่สำหรับการลงนามข้อมูลเมตา" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "ส่วนขยาย Memcache หรือ Memcached" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgstr "ส่วนขยาย Memcache หรือ Memcached (จำเป็นถ้าใช้แบ็กเอนด์ Memcache)" + +msgid "Metadata" +msgstr "เมตาดาต้า" + +msgid "Metadata parser" +msgstr "ตัวแยกวิเคราะห์ข้อมูลเมตา" + +msgid "Modules" +msgstr "โมดูล" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "ส่วนขยายสตริงหลายไบต์" + +msgid "No file selected." +msgstr "ยังไม่ได้เลือกไฟล์" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" +msgstr "OpenSSL" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "ส่วนขยาย PDO (จำเป็นถ้าใช้แบ็กเอนด์ฐานข้อมูล)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" +msgstr "ส่วนเสริม PDO" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, no-php-format,php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "ต้องใช้ PHP เวอร์ชัน %minimum% ขึ้นไป (คุณกำลังใช้เวอร์ชัน: %current%)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" +msgstr "ส่วนขยาย PHP ระหว่างประเทศ" + +msgid "Parse" +msgstr "การแยกวิเคราะห์" + +msgid "Radius extension" +msgstr "การขยายรัศมี" + +msgid "Radius extension (required if a radius backend is used)" +msgstr "การขยายรัศมี (จำเป็นถ้าใช้ส่วนหลังรัศมี)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" +msgstr "การรองรับการแสดงออกปกติ" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "เมตาข้อมูล IdP ของ SAML 2.0" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "เมตาข้อมูล SAML 2.0 SP" + +msgid "SAML Metadata" +msgstr "เมตาข้อมูล SAML" + +msgid "SAML Subject" +msgstr "หัวข้อของ SAML" + +msgid "Search" +msgstr "ค้นหา" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" +msgstr "การขยายเวลาเซสชั่น" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "ส่วนขยายเซสชัน (จำเป็นถ้าใช้เซสชัน PHP)" + +msgid "SimpleSAMLphp Metadata" +msgstr "เมตาดาต้า SimpleSAMLphp" + +msgid "SimpleSAMLphp Show Metadata" +msgstr "SimpleSAMLphp แสดงข้อมูลเมตา" + +msgid "SimpleSAMLphp installation page" +msgstr "หน้าการติดตั้ง SimpleSAMLphp" + +msgid "SimpleSAMLphp is installed in:" +msgstr "SimpleSAMLphp ได้รับการติดตั้งใน:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "ไลบรารี่ PHP มาตรฐาน (SPL)" + +msgid "Technical information" +msgstr "ข้อมูลทางเทคนิค" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "ทดสอบ" + +msgid "Test Authentication Sources" +msgstr "ทดสอบแหล่งที่มาการรับรองความถูกต้อง" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "ตัวเลือกการกำหนดค่า \"secretsalt\" จะต้องไม่มีเครื่องหมาย \"%\"" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" +msgstr "ควรกำหนดค่าtechnicalcontact_email" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "ต้องกำหนดค่า auth.adminpassword" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgstr "ไม่พบส่วนเสริม PHP cURL ไม่สามารถตรวจสอบการอัปเดตของ SimpleSAMLphp ได้" + +msgid "Tools" +msgstr "เครื่องมือ" + +msgid "Trusted entities" +msgstr "เอนทิตีที่เชื่อถือได้" + +msgid "Type:" +msgstr "ประเภท:" + +msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "ใช้ตัวเลือกนี้หากอีกฝ่ายใช้ SimpleSAMLphp ด้วย" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" +msgstr "โครงสร้าง XML (DOM)" + +msgid "XML metadata" +msgstr "ข้อมูล Metadata แบบ XML" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "ตัวแปลงข้อมูลเมตา XML เป็น SimpleSAMLphp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "คุณกำลังใช้งาน SimpleSAMLphp เวอร์ชันเก่า โปรดอัปเดตเป็น เวอร์ชันล่าสุด โดยเร็วที่สุด" + +msgid "You are running version %version%." +msgstr "คุณกำลังใช้งานเวอร์ชัน %version%" + +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "คุณสามารถเข้าถึง Metadata XML ได้จาก URL ที่กำหนดไว้" + +msgid "You have been logged out." +msgstr "คุณได้ถูกออกจากระบบแล้ว" + +msgid "You have the following modules installed" +msgstr "คุณได้ติดตั้งโมดูลเหล่านี้แล้ว" + +msgid "Your attributes" +msgstr "คุณสมบัติของคุณ" + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "เซสชันของคุณยังใช้ได้อีก %remaining% วินาที" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" +msgstr "ZLib" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "cURL (อาจจำเป็นสำหรับบางโมดูล)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "cURL (จำเป็นถ้าใช้การตรวจสอบเวอร์ชันอัตโนมัติ แม้กระทั่งในบางโมดูล)" + +msgid "default" +msgstr "ค่าเริ่มต้น" + +msgid "disabled" +msgstr "ปิดการใช้งาน" + +msgid "enabled" +msgstr "เปิดการใช้งาน" + +msgid "expired" +msgstr "หมดอายุแล้ว" + +msgid "expires" +msgstr "วันหมดอายุ" + +msgid "means the module is not enabled" +msgstr "หมายถึงโมดูลนี้ยังไม่ได้เปิดใช้งาน" + +msgid "new" +msgstr "ใหม่" + +msgid "not set" +msgstr "ยังไม่ได้ตั้งค่า" + +msgid "optional" +msgstr "ไม่บังคับ" + +msgid "or select a file:" +msgstr "หรือเลือกไฟล์:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" +msgstr "predis/predis (ต้องใช้หากใช้ Redis เป็นแหล่งเก็บข้อมูล)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" +msgstr "predis/predis library" + +msgid "required" +msgstr "บังคับ" diff --git a/modules/admin/locales/tr/LC_MESSAGES/admin.po b/modules/admin/locales/tr/LC_MESSAGES/admin.po index 9fbdd1a9b4..02ff5569c1 100644 --- a/modules/admin/locales/tr/LC_MESSAGES/admin.po +++ b/modules/admin/locales/tr/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "Bilgisayar adı, port ve protokol üzerine kontroller" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Kullanıcıyla şifreli iletişim -HTTPS kullanmıyorsunuz. HTTP test amaçlı olarak kullanılabilir, ancak üretim ortamında, HTTPS kullanmalısınız. [ SimpleSAMLphp bakımı hakkında daha fazlasını okuyun ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +msgid "Checking your PHP installation" +msgstr "PHP kurulumunuz kontrol ediliyor" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Konfigurasyon" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +msgid "Converted metadata" +msgstr "Dönüştürülmüş üstveri (metadata)" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Bilgisayar adı, port ve protokol üzerine kontroller" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Federasyon" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "Hosted entities" +msgstr "" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "XML formatında SAML 2.0 SP Üstverisi (Metadata)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "Çıkış" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "Kullanıcıyla şifreli iletişim -HTTPS kullanmıyorsunuz. HTTP test amaçlı olarak kullanılabilir, ancak üretim ortamında, HTTPS kullanmalısınız. [ SimpleSAMLphp bakımı hakkında daha fazlasını okuyun ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Üstveri (metadata)" + +msgid "Metadata parser" +msgstr "Üstveri (metadata) çözümleyici" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML'den SimpleSAMLphp'e üstveri (metadata) dönüştürücü" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "Konfigurasyon" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "Federasyon" +msgid "Parse" +msgstr "Çözümle" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "Çıkış" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" +msgid "Search" msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "Bilgileriniz" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "Oturumunuz, şu andan itibaren %remaining% saniyeliğine geçerlidir." +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" +msgid "SimpleSAMLphp installation page" msgstr "" -msgid "Deprecated" -msgstr "Deprecated" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "XML formatında SAML 2.0 SP Üstverisi (Metadata)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML üstverisi (metadata)" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML'den SimpleSAMLphp'e üstveri (metadata) dönüştürücü" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Üstveri (metadata)" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "Dönüştürülmüş üstveri (metadata)" +msgid "Your attributes" +msgstr "Bilgileriniz" -msgid "Metadata parser" -msgstr "Üstveri (metadata) çözümleyici" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Oturumunuz, şu andan itibaren %remaining% saniyeliğine geçerlidir." -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "Çözümle" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML üstverisi (metadata)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "PHP kurulumunuz kontrol ediliyor" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/uk/LC_MESSAGES/admin.po b/modules/admin/locales/uk/LC_MESSAGES/admin.po new file mode 100644 index 0000000000..c937485349 --- /dev/null +++ b/modules/admin/locales/uk/LC_MESSAGES/admin.po @@ -0,0 +1,367 @@ +msgid "" +msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" +"X-Domain: admin\n" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "Конфігурація використовує типовий secret salt. Переконайтеся, що параметр secretsalt змінено у конфігурації SimpleSAMLphp у робочому середовищі. Дізнатися більше про конфігурацію SimpleSAMLphp." + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Ви не використовуєте HTTPS для захисту зв’язку з користувачами.для захисту зв’язку з користувачами.HTTP підходить для тестових цілей, але у робочому середовищі слід використовувати HTTPS. Дізнайтеся більше про обслуговування SimpleSAMLphp ]" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" +msgstr "ADFS IdP metadata" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" +msgstr "ADFS SP metadata" + +msgid "An error occurred" +msgstr "Виникла помилка" + +msgid "Authentication data" +msgstr "Дані автентифікації" + +msgid "Back" +msgstr "Назад" + +msgid "Certificates" +msgstr "Сертифікати" + +msgid "Checking your PHP installation" +msgstr "Перевірка інсталяції PHP" + +msgid "Checks" +msgstr "Перевірки" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Налаштування" + +msgid "Content of jpegPhoto attribute" +msgstr "Вміст атрибута jpegPhoto" + +msgid "Converted metadata" +msgstr "Перетворені метадані" + +msgid "Copy to clipboard" +msgstr "Копіювати в буфер обміну" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" +msgstr "Розширення дати/часу" + +msgid "Deprecated" +msgstr "Застарілий" + +msgid "Details" +msgstr "Деталі" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Діагностика імені хоста, порту та протоколу" + +msgid "EntityID" +msgstr "Ідентифікатор об'єкта EntityID" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Федерація" + +msgid "Format" +msgstr "Формат" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Повернутися на сторінку встановлення SimpleSAMLphp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "Функція хешування" + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Вітаємо! Це сторінка стану SimpleSAMLphp. Тут ви можете перевірити, чи завершено вашу сесію, скільки часу залишилося до її завершення та всі атрибути, що пов’язані з вашою сесією." + +msgid "Hosted IdP metadata present" +msgstr "Метадані розміщеного IdP наявні" + +msgid "Hosted entities" +msgstr "Хостовані об'єкти" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "У форматі XML метаданих SAML 2.0:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "Інформація про вашу інсталяцію PHP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "Підтримка JSON" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" +msgstr "Розширення LDAP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" +msgstr "Розширення LDAP (потрібне, якщо використовується бекенд LDAP)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "Вийти" + +msgid "Logged out" +msgstr "Вийшов" + +msgid "Logout" +msgstr "Вийти" + +msgid "Look up metadata for entity:" +msgstr "Переглянути метадані для сутності:" + +msgid "Matching key-pair for signing assertions" +msgstr "Відповідна пара ключів для підписування тверджень" + +msgid "Matching key-pair for signing assertions (rollover key)" +msgstr "Відповідна пара ключів для підписування тверджень (резервна пара ключів)" + +msgid "Matching key-pair for signing metadata" +msgstr "Відповідна пара ключів для підписання метаданих" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "Розширення Memcache або Memcached" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgstr "Розширення Memcache або Memcached (потрібне для роботи з бекендом memcache)" + +msgid "Metadata" +msgstr "Метадані" + +msgid "Metadata parser" +msgstr "Аналізатор метаданих" + +msgid "Modules" +msgstr "Модулі" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "Розширення для роботи з багатобайтовими рядками" + +msgid "No file selected." +msgstr "Файл не вибрано." + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" +msgstr "OpenSSL" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "Розширення PDO (необхідне, якщо використовується базовий бекенд бази даних)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" +msgstr "Розширення PDO" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, no-php-format,php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "Потрібна версія PHP %minimum% або новіша. Поточна версія: %current%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" +msgstr "Розширення PHP intl" + +msgid "Parse" +msgstr "Аналізувати" + +msgid "Radius extension" +msgstr "Розширення RADIUS" + +msgid "Radius extension (required if a radius backend is used)" +msgstr "Розширення RADIUS (необхідне, якщо використовується бекенд RADIUS)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" +msgstr "Підтримка регулярних виразів" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "Метадані IdP для SAML 2.0" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "Метадані SP для SAML 2.0" + +msgid "SAML Metadata" +msgstr "Метадані SAML" + +msgid "SAML Subject" +msgstr "Об'єкт SAML" + +msgid "Search" +msgstr "Пошук" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" +msgstr "Розширення сесії" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "Розширення сесій (необхідне, якщо використовуються PHP-сесії)" + +msgid "SimpleSAMLphp Metadata" +msgstr "Метадані SimpleSAMLphp" + +msgid "SimpleSAMLphp Show Metadata" +msgstr "SimpleSAMLphp — Показати метадані" + +msgid "SimpleSAMLphp installation page" +msgstr "Сторінка інсталяції SimpleSAMLphp" + +msgid "SimpleSAMLphp is installed in:" +msgstr "SimpleSAMLphp встановлюється в:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "Стандартна бібліотека PHP (SPL)" + +msgid "Technical information" +msgstr "Технічна інформація" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "Тест" + +msgid "Test Authentication Sources" +msgstr "Перевірити джерела автентифікації" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "Параметр конфігурації 'secretsalt' не може містити символ '%'." + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" +msgstr "Параметр конфігурації technicalcontact_email має бути встановлений" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "Параметр конфігурації auth.adminpassword має бути встановлений" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgstr "Розширення cURL для PHP відсутнє. Неможливо перевірити оновлення SimpleSAMLphp." + +msgid "Tools" +msgstr "Інструменти" + +msgid "Trusted entities" +msgstr "Довірені суб’єкти" + +msgid "Type:" +msgstr "Тип:" + +msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "\"Використовуйте це, якщо на іншій стороні використовується суб’єкт SimpleSAMLphp:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" +msgstr "XML DOM" + +msgid "XML metadata" +msgstr "Метадані XML" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Конвертер метаданих XML в SimpleSAMLphp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "\"Ви використовуєте застарілу версію SimpleSAMLphp. Будь ласка, оновіть її до останньої версії якнайшвидше." + +msgid "You are running version %version%." +msgstr "Ви використовуєте версію %version%." + +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "Ви можете отримати XML метаданих за спеціальною URL-адресою:" + +msgid "You have been logged out." +msgstr "Ви вийшли з системи." + +msgid "You have the following modules installed" +msgstr "У вас встановлені наступні модулі" + +msgid "Your attributes" +msgstr "Ваші атрибути" + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Ваша сесія буде дійсною ще протягом %remaining% секунд." + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" +msgstr "ZLib" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "cURL (може знадобитися деяким модулям)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "cURL (потрібен, якщо використовується автоматична перевірка версії; також може знадобитися деяким модулям)" + +msgid "default" +msgstr "за замовчуванням" + +msgid "disabled" +msgstr "вимкнено" + +msgid "enabled" +msgstr "увімкнено" + +msgid "expired" +msgstr "термін дії закінчився" + +msgid "expires" +msgstr "закінчується" + +msgid "means the module is not enabled" +msgstr "означає, що модуль не увімкнено" + +msgid "new" +msgstr "новий" + +msgid "not set" +msgstr "не встановлено" + +msgid "optional" +msgstr "необов’язковий" + +msgid "or select a file:" +msgstr "або вибрати файл:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" +msgstr "predis/predis (необхідний у разі використання Redis як сховища даних)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" +msgstr "predis/predis бібліотека" + +msgid "required" +msgstr "необхідний" diff --git a/modules/admin/locales/ur/LC_MESSAGES/admin.po b/modules/admin/locales/ur/LC_MESSAGES/admin.po index 8cc8a172e9..afba81bc0d 100644 --- a/modules/admin/locales/ur/LC_MESSAGES/admin.po +++ b/modules/admin/locales/ur/LC_MESSAGES/admin.po @@ -1,4 +1,346 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ur\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" +msgstr "" + +msgid "An error occurred" +msgstr "" + +msgid "Authentication data" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Certificates" +msgstr "" + +msgid "Checks" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "" + +msgid "Content of jpegPhoto attribute" +msgstr "" + +msgid "Converted metadata" +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" +msgstr "" + +msgid "Deprecated" +msgstr "" + +msgid "Details" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "" + +msgid "EntityID" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "" + +msgid "Format" +msgstr "" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "" + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "" + +msgid "Hosted entities" +msgstr "" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "" + +msgid "Logged out" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Look up metadata for entity:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgstr "" + +msgid "Metadata" +msgstr "" + +msgid "Metadata parser" +msgstr "" + +msgid "Modules" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" + +msgid "No file selected." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" +msgstr "" + +msgid "Parse" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "" + +msgid "SAML Metadata" +msgstr "" + +msgid "SAML Subject" +msgstr "" + +msgid "Search" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" + +msgid "SimpleSAMLphp Metadata" +msgstr "" + +msgid "SimpleSAMLphp Show Metadata" +msgstr "" + +msgid "SimpleSAMLphp installation page" +msgstr "" + +msgid "SimpleSAMLphp is installed in:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "" + +msgid "Technical information" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" + +msgid "Test Authentication Sources" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgstr "" + +msgid "Tools" +msgstr "" + +msgid "Trusted entities" +msgstr "" + +msgid "Type:" +msgstr "" + +msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" +msgstr "" + +msgid "XML metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "" + +msgid "You are running version %version%." +msgstr "" + +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" + +msgid "You have been logged out." +msgstr "" + +msgid "You have the following modules installed" +msgstr "" + +msgid "Your attributes" +msgstr "" + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" + +msgid "default" +msgstr "" + +msgid "disabled" +msgstr "" + +msgid "enabled" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "expires" +msgstr "" + +msgid "means the module is not enabled" +msgstr "" + +msgid "new" +msgstr "" + +msgid "not set" +msgstr "" + +msgid "optional" +msgstr "" + +msgid "or select a file:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" +msgstr "" + +msgid "required" +msgstr "" diff --git a/modules/admin/locales/vi/LC_MESSAGES/admin.po b/modules/admin/locales/vi/LC_MESSAGES/admin.po new file mode 100644 index 0000000000..7f8edac048 --- /dev/null +++ b/modules/admin/locales/vi/LC_MESSAGES/admin.po @@ -0,0 +1,367 @@ +msgid "" +msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" +"X-Domain: admin\n" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "Cấu hình sử dụng secret salt mặc định . Đảm bảo sửa đổi tùy chọn secretsalt trong cấu hình SimpleSAMLphp trong môi trường sản xuất. Đọc thêm về việc bảo trì SimpleSAMLphp ." + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "Bạn không sử dụng HTTPS để bảo vệ thông tin liên lạc với người dùng của mình. HTTP hoạt động tốt cho mục đích thử nghiệm, nhưng trong môi trường sản xuất, bạn nên sử dụng HTTPS. Đọc thêm về việc bảo trì SimpleSAMLphp ." + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" +msgstr "Siêu dữ liệu ADFS IdP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" +msgstr "Siêu dữ liệu ADFS SP" + +msgid "An error occurred" +msgstr "Có lỗi xảy ra" + +msgid "Authentication data" +msgstr "Dữ liệu xác thực" + +msgid "Back" +msgstr "Quay lại" + +msgid "Certificates" +msgstr "Giấy chứng nhận" + +msgid "Checking your PHP installation" +msgstr "Kiểm tra cài đặt PHP của bạn" + +msgid "Checks" +msgstr "Kiểm tra" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "Cấu hình" + +msgid "Content of jpegPhoto attribute" +msgstr "Nội dung của thuộc tính jpegPhoto" + +msgid "Converted metadata" +msgstr "Siêu dữ liệu đã chuyển đổi" + +msgid "Copy to clipboard" +msgstr "Sao chép vào bộ nhớ tạm thời" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" +msgstr "Ngày/Giờ mở rộng" + +msgid "Deprecated" +msgstr "Không dùng nữa" + +msgid "Details" +msgstr "Chi tiết" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "Chẩn đoán tên máy chủ, cổng và giao thức" + +msgid "EntityID" +msgstr "ID thực thể" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "Liên bang" + +msgid "Format" +msgstr "Định dạng" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Quay lại trang cài đặt SimpleSAMLphp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" +msgstr "Hàm băm" + +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." +msgstr "Xin chào, đây là trang trạng thái của SimpleSAMLphp. Tại đây, bạn có thể xem phiên của mình đã hết thời gian chưa, thời gian hết thời gian kéo dài bao lâu và tất cả các thuộc tính được đính kèm vào phiên của bạn." + +msgid "Hosted IdP metadata present" +msgstr "Siêu dữ liệu IdP được lưu trữ hiện tại" + +msgid "Hosted entities" +msgstr "Các thực thể được lưu trữ" + +msgid "In SAML 2.0 Metadata XML format:" +msgstr "Ở định dạng XML siêu dữ liệu SAML 2.0:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "Thông tin về cài đặt PHP của bạn" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" +msgstr "Hỗ trợ JSON" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" +msgstr "Phần mở rộng LDAP" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" +msgstr "Phần mở rộng LDAP (bắt buộc nếu sử dụng phần phụ trợ LDAP)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" +msgstr "Đăng xuất" + +msgid "Logged out" +msgstr "Đã đăng xuất" + +msgid "Logout" +msgstr "Đăng xuất" + +msgid "Look up metadata for entity:" +msgstr "Tra cứu siêu dữ liệu cho thực thể:" + +msgid "Matching key-pair for signing assertions" +msgstr "Phù hợp 2 bước khóa để ký xác nhận" + +msgid "Matching key-pair for signing assertions (rollover key)" +msgstr "2 bước khóa phù hợp để ký xác nhận" + +msgid "Matching key-pair for signing metadata" +msgstr "2 bước khóa phù hợp để ký siêu dứ liệu" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "Mở rộng Memcache hoặc Memcached" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgstr "Phần mở rộng Memcache hoặc Memcached (bắt buộc nếu sử dụng phần phụ trợ memcache)" + +msgid "Metadata" +msgstr "Siêu dữ liệu" + +msgid "Metadata parser" +msgstr "Trình phân tích siêu dữ liệu" + +msgid "Modules" +msgstr "Mô-đun" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "Phần mở rộng chuỗi Multibyte" + +msgid "No file selected." +msgstr "Không có tệp được chọn." + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" +msgstr "OpenSSL" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" +msgstr "Phần mở rộng PDO (bắt buộc nếu sử dụng cơ sở dữ liệu phụ trợ)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" +msgstr "Phần mở rộng PDO" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, no-php-format,php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "Cần có PHP %minimum% hoặc mới hơn. Bạn đang chạy: %current%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" +msgstr "Phần mở rộng PHP quốc tế" + +msgid "Parse" +msgstr "Phân tích" + +msgid "Radius extension" +msgstr "Radius extension" + +msgid "Radius extension (required if a radius backend is used)" +msgstr "Radius extension (required if a radius backend is used)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" +msgstr "Hỗ trợ biểu thức chính quy" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "Siêu dữ liệu IdP SAML 2.0" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" +msgstr "Siêu dữ liệu SAML 2.0 SP" + +msgid "SAML Metadata" +msgstr "Siêu dữ liệu SAML" + +msgid "SAML Subject" +msgstr "Chủ đề SAML" + +msgid "Search" +msgstr "Tìm kiếm" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" +msgstr "Session extension" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "Session extension (required if PHP sessions are used)" + +msgid "SimpleSAMLphp Metadata" +msgstr "Siêu dữ liệu SimpleSAMLphp" + +msgid "SimpleSAMLphp Show Metadata" +msgstr "SimpleSAMLphp Hiển thị siêu dữ liệu" + +msgid "SimpleSAMLphp installation page" +msgstr "Trang cài đặt SimpleSAMLphp" + +msgid "SimpleSAMLphp is installed in:" +msgstr "SimpleSAMLphp được cài đặt trong:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" +msgstr "Thư viện PHP chuẩn (SPL)" + +msgid "Technical information" +msgstr "Thông tin kỹ thuật" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "Kiểm tra" + +msgid "Test Authentication Sources" +msgstr "Kiểm tra nguồn xác thực" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "Tùy chọn cấu hình \"secretsalt\" không được chứa dấu `%`." + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" +msgstr "Tùy chọn cấu hình technicalcontact_email phải được thiết lập" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "Tùy chọn cấu hình auth.adminpassword phải được thiết lập" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgstr "Phần mở rộng PHP cURL bị thiếu. Không thể kiểm tra các bản cập nhật SimpleSAMLphp." + +msgid "Tools" +msgstr "Công cụ" + +msgid "Trusted entities" +msgstr "Các thực thể đáng tin cậy" + +msgid "Type:" +msgstr "Loại:" + +msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" +msgstr "Sử dụng lệnh này nếu bạn đang sử dụng thực thể SimpleSAMLphp ở phía bên kia:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" +msgstr "DOM XML" + +msgid "XML metadata" +msgstr "Siêu dữ liệu XML" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "Bộ chuyển đổi siêu dữ liệu XML sang SimpleSAMLphp" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "Bạn đang chạy phiên bản cũ của SimpleSAMLphp. Vui lòng cập nhật lên phiên bản mới nhất sớm nhất có thể." + +msgid "You are running version %version%." +msgstr "Bạn đang chạy phiên bản %version% ." + +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "Bạn có thể lấy siêu dữ liệu XML trên một URL chuyên dụng:" + +msgid "You have been logged out." +msgstr "Bạn đã đăng xuất." + +msgid "You have the following modules installed" +msgstr "Bạn đã cài đặt các mô-đun sau" + +msgid "Your attributes" +msgstr "Thuộc tính của bạn" + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Phiên của bạn có hiệu lực trong %remaining% giây kể từ bây giờ." + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" +msgstr "ZLib" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "cURL (có thể được yêu cầu bởi một số mô-đun)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "cURL (bắt buộc nếu sử dụng kiểm tra phiên bản tự động, cũng bởi một số mô-đun)" + +msgid "default" +msgstr "mặc định" + +msgid "disabled" +msgstr "vô hiệu hóa" + +msgid "enabled" +msgstr "đã bật" + +msgid "expired" +msgstr "đã hết hạn" + +msgid "expires" +msgstr "hết hạn" + +msgid "means the module is not enabled" +msgstr "có nghĩa là mô-đun không được kích hoạt" + +msgid "new" +msgstr "mới" + +msgid "not set" +msgstr "không được thiết lập" + +msgid "optional" +msgstr "không bắt buộc" + +msgid "or select a file:" +msgstr "hoặc chọn một tập tin:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" +msgstr "predis/predis (bắt buộc nếu sử dụng kho dữ liệu redis)" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" +msgstr "thư viện predis/predis" + +msgid "required" +msgstr "yêu cầu" diff --git a/modules/admin/locales/xh/LC_MESSAGES/admin.po b/modules/admin/locales/xh/LC_MESSAGES/admin.po index e1ecf6e60d..9afe59a563 100644 --- a/modules/admin/locales/xh/LC_MESSAGES/admin.po +++ b/modules/admin/locales/xh/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: xh\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" +msgstr "" + +msgid "Authentication data" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Certificates" +msgstr "" + +msgid "Checking your PHP installation" +msgstr "" + +msgid "Checks" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "" + +msgid "Content of jpegPhoto attribute" +msgstr "" + +msgid "Converted metadata" +msgstr "" + +msgid "Copy to clipboard" msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "In SAML 2.0 Metadata XML format:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 -msgid "LDAP extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +msgid "Logout" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgid "Metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata parser" +msgstr "Metadata parser" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" +msgid "Parse" msgstr "" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" +msgid "SAML Metadata" msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" +msgid "Search" msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" msgstr "" -msgid "Your session is valid for %remaining% seconds from now." +msgid "SimpleSAMLphp Metadata" msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" +msgid "SimpleSAMLphp installation page" msgstr "" -msgid "Deprecated" -msgstr "Deprecated" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" +msgid "XML metadata" msgstr "" -msgid "expires" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" msgstr "" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" +msgid "You can get the metadata XML on a dedicated URL:" msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" +msgid "Your attributes" msgstr "" -msgid "Metadata parser" -msgstr "Metadata parser" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" msgstr "" -msgid "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" +msgid "new" msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/zh/LC_MESSAGES/admin.po b/modules/admin/locales/zh/LC_MESSAGES/admin.po index bafc36254a..8ef0cb5aae 100644 --- a/modules/admin/locales/zh/LC_MESSAGES/admin.po +++ b/modules/admin/locales/zh/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: zh\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "诊断主机名/端口/协议" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "你没有使用HTTPS - 和用户加密的通信。HTTP在测试目的下很好,但生产环境请使用HTTPS. [ 获取更多SimpleSAMLphp维护的信息 ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "证书" + +msgid "Checking your PHP installation" +msgstr "正检测你的PHP" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "配置" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "转换过的元信息" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "已经超时" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "诊断主机名/端口/协议" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "联盟" + +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "在SAML 2.0 XML 元信息格式中:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "退出" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "你没有使用HTTPS - 和用户加密的通信。HTTP在测试目的下很好,但生产环境请使用HTTPS. [ 获取更多SimpleSAMLphp维护的信息 ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "元信息" + +msgid "Metadata parser" +msgstr "元信息分析器" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "将XML转化为SimpleSAMLphp元信息的转换器" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "配置" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "联盟" +msgid "Parse" +msgstr "分析器" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "退出" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp安装页面" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "你的属性" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "你的会话在%remaining%秒内有效" +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" -msgstr "证书" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp安装页面" -msgid "Deprecated" -msgstr "已经超时" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "在SAML 2.0 XML 元信息格式中:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML元信息" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "将XML转化为SimpleSAMLphp元信息的转换器" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "元信息" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "转换过的元信息" +msgid "Your attributes" +msgstr "你的属性" -msgid "Metadata parser" -msgstr "元信息分析器" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "你的会话在%remaining%秒内有效" -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "分析器" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "XML metadata" -msgstr "XML元信息" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" +msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" -msgstr "正检测你的PHP" +msgid "new" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/zh-tw/LC_MESSAGES/admin.po b/modules/admin/locales/zh_TW/LC_MESSAGES/admin.po similarity index 84% rename from modules/admin/locales/zh-tw/LC_MESSAGES/admin.po rename to modules/admin/locales/zh_TW/LC_MESSAGES/admin.po index a9a31f4d41..82c395402e 100644 --- a/modules/admin/locales/zh-tw/LC_MESSAGES/admin.po +++ b/modules/admin/locales/zh_TW/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +msgstr "目前設定檔使用預設的雜湊參數(salt) - 在您上線運作前請確認您已於 simpleSAML 設定頁中修改預設的 'secretsalt'。[閱讀更多關於 SimpleSAMLphp 設定值 ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" -msgstr "診斷主機名稱,連接埠及協定" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +msgstr "您不是使用 HTTPS -於使用的傳輸過程中加密。HTTP 可以正常的利用於測試,但是在上線環境裡,您還是需要使用 HTTPS。[ 閱讀更多有關於 SimpleSAMLphp 的維護方式 ]" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Authentication data" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Back" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +msgid "Certificates" +msgstr "憑證" + +msgid "Checking your PHP installation" +msgstr "檢查您安裝的 PHP" + +msgid "Checks" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "設定" + +msgid "Content of jpegPhoto attribute" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +msgid "Converted metadata" +msgstr "已轉換之 Metadata" + +msgid "Copy to clipboard" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Deprecated" +msgstr "棄置" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" +msgstr "診斷主機名稱,連接埠及協定" + +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" +msgstr "聯盟" + +msgid "Format" +msgstr "格式" + +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +msgid "In SAML 2.0 Metadata XML format:" +msgstr "在 SAML 2.0 Metadata XML 格式:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 -msgid "LDAP extension (required if an LDAP backend is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 msgid "LDAP extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 +msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Logout" +msgstr "登出" + +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." -msgstr "您不是使用 HTTPS -於使用的傳輸過程中加密。HTTP 可以正常的利用於測試,但是在上線環境裡,您還是需要使用 HTTPS。[ 閱讀更多有關於 SimpleSAMLphp 的維護方式 ]" +msgid "Matching key-pair for signing metadata" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." -msgstr "目前設定檔使用預設的雜湊參數(salt) - 在您上線運作前請確認您已於 simpleSAML 設定頁中修改預設的 'secretsalt'。[閱讀更多關於 SimpleSAMLphp 設定值 ]" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata" +msgstr "Metadata" + +msgid "Metadata parser" +msgstr "Metadata 解析" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML 至 SimpleSAMLphp 詮釋資料翻譯器" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" -msgstr "設定" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" +msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" -msgstr "聯盟" +msgid "Parse" +msgstr "解析" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" -msgstr "格式" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" +msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" -msgstr "登出" +msgid "SAML Metadata" +msgstr "" msgid "SAML Subject" msgstr "SAML 主題" -msgid "SimpleSAMLphp installation page" -msgstr "SimpleSAMLphp 安裝頁面" +msgid "Search" +msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" -msgstr "您的屬性值" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" +msgstr "" -msgid "Your session is valid for %remaining% seconds from now." -msgstr "您的 session 從現在起還有 %remaining% 有效。" +msgid "SimpleSAMLphp Metadata" +msgstr "" -msgid "not set" -msgstr "未設定" +msgid "SimpleSAMLphp Show Metadata" +msgstr "" -msgid "Certificates" -msgstr "憑證" +msgid "SimpleSAMLphp installation page" +msgstr "SimpleSAMLphp 安裝頁面" -msgid "Deprecated" -msgstr "棄置" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" -msgstr "在 SAML 2.0 Metadata XML 格式:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" +msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" -msgstr "" +msgid "XML metadata" +msgstr "XML Metadata" -msgid "expires" -msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" +msgstr "XML 至 SimpleSAMLphp 詮釋資料翻譯器" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" -msgstr "Metadata" +msgid "You can get the metadata XML on a dedicated URL:" +msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" -msgstr "已轉換之 Metadata" +msgid "Your attributes" +msgstr "您的屬性值" -msgid "Metadata parser" -msgstr "Metadata 解析" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "您的 session 從現在起還有 %remaining% 有效。" -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" -msgstr "解析" - -msgid "XML metadata" -msgstr "XML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" +msgstr "" -msgid "or select a file:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "default" msgstr "" -msgid "You are running version %version%." +msgid "disabled" msgstr "" -msgid "optional" +msgid "enabled" msgstr "" -msgid "required" +msgid "expired" msgstr "" -msgid "Test Authentication Sources" +msgid "expires" msgstr "" -msgid "Checking your PHP installation" -msgstr "檢查您安裝的 PHP" +msgid "means the module is not enabled" +msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "new" msgstr "" -msgid "Radius extension" +msgid "not set" +msgstr "未設定" + +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/locales/zu/LC_MESSAGES/admin.po b/modules/admin/locales/zu/LC_MESSAGES/admin.po index f1c8856895..4434e0a0b3 100644 --- a/modules/admin/locales/zu/LC_MESSAGES/admin.po +++ b/modules/admin/locales/zu/LC_MESSAGES/admin.po @@ -1,236 +1,271 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: zu\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: admin\n" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:182 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:482 -msgid "Log out" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:422 +msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 -msgid "Diagnostics on hostname, port and protocol" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:412 +msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 -msgid "Information on your PHP installation" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:175 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:176 +msgid "ADFS IdP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:205 -#, php-format -msgid "PHP %minimum% or newer is needed. You are running: %current%" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 +msgid "ADFS SP metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:222 -msgid "Date/Time Extension" +msgid "An error occurred" +msgstr "" + +msgid "Authentication data" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "Certificates" +msgstr "" + +msgid "Checking your PHP installation" +msgstr "" + +msgid "Checks" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 +msgid "Configuration" +msgstr "" + +msgid "Content of jpegPhoto attribute" +msgstr "" + +msgid "Converted metadata" +msgstr "" + +msgid "Copy to clipboard" msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:228 -msgid "Hashing function" +msgid "Date/Time Extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 -msgid "ZLib" +msgid "Deprecated" +msgstr "已经超时" + +msgid "Details" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 -msgid "OpenSSL" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:133 +msgid "Diagnostics on hostname, port and protocol" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 -msgid "XML DOM" +msgid "EntityID" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 -msgid "Regular expression support" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 +msgid "Federation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 -msgid "JSON support" +msgid "Format" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 -msgid "Standard PHP library (SPL)" +msgid "Go back to SimpleSAMLphp installation page" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 -msgid "Multibyte String extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:234 +msgid "Hashing function" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 -msgid "cURL (might be required by some modules)" +msgid "Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:285 -msgid "cURL (required if automatic version checks are used, also by some modules)" +msgid "Hosted IdP metadata present" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:293 -msgid "Session extension (required if PHP sessions are used)" +msgid "Hosted entities" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:294 -msgid "Session extension" +msgid "In SAML 2.0 Metadata XML format:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 -msgid "PDO Extension (required if a database backend is used)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:137 +msgid "Information on your PHP installation" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:301 -msgid "PDO extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:270 +msgid "JSON support" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:314 +msgid "LDAP extension" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:313 msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:308 -msgid "LDAP extension" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:184 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:485 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:149 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:156 +msgid "Log out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:327 -msgid "predis/predis (required if the redis data store is used)" +msgid "Logged out" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:328 -msgid "predis/predis library" +msgid "Logout" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:335 -msgid "Memcache or Memcached extension (required if the memcache backend is used)" +msgid "Look up metadata for entity:" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:338 -msgid "Memcache or Memcached extension" +msgid "Matching key-pair for signing assertions" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:360 -msgid "The technicalcontact_email configuration option should be set" +msgid "Matching key-pair for signing assertions (rollover key)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 -msgid "The auth.adminpassword configuration option must be set" +msgid "Matching key-pair for signing metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:406 -msgid "You are not using HTTPS to protect communications with your users. HTTP works fine for testing purposes, but in a production environment you should use HTTPS. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:344 +msgid "Memcache or Memcached extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:416 -msgid "The configuration uses the default secret salt. Make sure to modify the secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the maintenance of SimpleSAMLphp." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:341 +msgid "Memcache or Memcached extension (required if the memcache backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:431 -msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." +msgid "Metadata" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:456 -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "Metadata parser" +msgstr "Metadata parser" + +msgid "Modules" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 -msgid "XML to SimpleSAMLphp metadata converter" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 +msgid "Multibyte String extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:167 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:168 -msgid "SAML 2.0 SP metadata" +msgid "No file selected." msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 -msgid "SAML 2.0 IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:246 +msgid "OpenSSL" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 -msgid "ADFS SP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:306 +msgid "PDO Extension (required if a database backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:173 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 -msgid "ADFS IdP metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:307 +msgid "PDO extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 -msgid "Configuration" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:211 +#, php-format +msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 -msgid "Test" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:264 +msgid "PHP intl extension" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 -msgid "Federation" +msgid "Parse" msgstr "" -msgid "Authentication data" +msgid "Radius extension" msgstr "" -msgid "Content of jpegPhoto attribute" +msgid "Radius extension (required if a radius backend is used)" msgstr "" -msgid "Copy to clipboard" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:258 +msgid "Regular expression support" msgstr "" -msgid "Format" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:171 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:172 +msgid "SAML 2.0 IdP metadata" msgstr "" -msgid "" -"Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long\n" -" it lasts until it times out and all the attributes that are attached to your session." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:169 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:170 +msgid "SAML 2.0 SP metadata" msgstr "" -msgid "Logout" +msgid "SAML Metadata" msgstr "" msgid "SAML Subject" msgstr "" -msgid "SimpleSAMLphp installation page" +msgid "Search" msgstr "" -msgid "Technical information" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:300 +msgid "Session extension" msgstr "" -msgid "Your attributes" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:299 +msgid "Session extension (required if PHP sessions are used)" msgstr "" -msgid "Your session is valid for %remaining% seconds from now." +msgid "SimpleSAMLphp Metadata" msgstr "" -msgid "not set" +msgid "SimpleSAMLphp Show Metadata" msgstr "" -msgid "Certificates" +msgid "SimpleSAMLphp installation page" msgstr "" -msgid "Deprecated" -msgstr "已经超时" +msgid "SimpleSAMLphp is installed in:" +msgstr "" -msgid "EntityID" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:276 +msgid "Standard PHP library (SPL)" msgstr "" -msgid "Hosted entities" +msgid "Technical information" msgstr "" -msgid "In SAML 2.0 Metadata XML format:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 +msgid "Test" msgstr "" -msgid "Look up metadata for entity:" +msgid "Test Authentication Sources" msgstr "" -msgid "SAML Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:430 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." msgstr "" -msgid "Search" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:366 +msgid "The technicalcontact_email configuration option should be set" msgstr "" -msgid "SimpleSAMLphp Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:372 +msgid "The auth.adminpassword configuration option must be set" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:437 +msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." msgstr "" msgid "Tools" @@ -245,80 +280,88 @@ msgstr "" msgid "Use this if you are using a SimpleSAMLphp entity on the other side:" msgstr "" -msgid "You can get the metadata XML on a dedicated URL:" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:252 +msgid "XML DOM" msgstr "" -msgid "expired" +msgid "XML metadata" msgstr "" -msgid "expires" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 +msgid "XML to SimpleSAMLphp metadata converter" msgstr "" -msgid "new" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:462 +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "" -msgid "Back" +msgid "You are running version %version%." msgstr "" -msgid "Metadata" +msgid "You can get the metadata XML on a dedicated URL:" msgstr "" -msgid "SimpleSAMLphp Show Metadata" +msgid "You have been logged out." msgstr "" -msgid "An error occurred" +msgid "You have the following modules installed" msgstr "" -msgid "Converted metadata" +msgid "Your attributes" msgstr "" -msgid "Metadata parser" -msgstr "Metadata parser" +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" -msgid "No file selected." +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:240 +msgid "ZLib" msgstr "" -msgid "Parse" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 +msgid "cURL (might be required by some modules)" msgstr "" -msgid "XML metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:291 +msgid "cURL (required if automatic version checks are used, also by some modules)" msgstr "" -msgid "or select a file:" +msgid "default" msgstr "" -msgid "SimpleSAMLphp is installed in:" +msgid "disabled" msgstr "" -msgid "You are running version %version%." +msgid "enabled" msgstr "" -msgid "optional" +msgid "expired" msgstr "" -msgid "required" +msgid "expires" msgstr "" -msgid "Test Authentication Sources" +msgid "means the module is not enabled" msgstr "" -msgid "Checking your PHP installation" +msgid "new" msgstr "" -msgid "Radius extension (required if a radius backend is used)" +msgid "not set" msgstr "" -msgid "Radius extension" +msgid "optional" msgstr "" -msgid "Hosted IdP metadata present" +msgid "or select a file:" msgstr "" -msgid "Matching key-pair for signing assertions" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 +msgid "predis/predis (required if the redis data store is used)" msgstr "" -msgid "Matching key-pair for signing assertions (rollover key)" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:334 +msgid "predis/predis library" msgstr "" -msgid "Matching key-pair for signing metadata" +msgid "required" msgstr "" diff --git a/modules/admin/src/Controller/Config.php b/modules/admin/src/Controller/Config.php index 41c3e462cb..af217725a5 100644 --- a/modules/admin/src/Controller/Config.php +++ b/modules/admin/src/Controller/Config.php @@ -4,10 +4,18 @@ namespace SimpleSAML\Module\admin\Controller; -use SimpleSAML\{Configuration, Module, Session, Utils}; +use SimpleSAML\Configuration; +use SimpleSAML\Event\Dispatcher\ModuleEventDispatcherFactory; use SimpleSAML\Locale\Translate; +use SimpleSAML\Module; +use SimpleSAML\Module\admin\Event\ConfigPageEvent; +use SimpleSAML\Module\admin\Event\SanityCheckEvent; +use SimpleSAML\Session; +use SimpleSAML\Utils; use SimpleSAML\XHTML\Template; -use Symfony\Component\HttpFoundation\{Request, Response, StreamedResponse}; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpFoundation\Response; +use Symfony\Component\HttpFoundation\StreamedResponse; use function curl_close; use function curl_exec; @@ -34,6 +42,7 @@ class Config public const RELEASES_API = 'https://api.github.com/repos/simplesamlphp/simplesamlphp/releases/latest'; + /** @var \SimpleSAML\Utils\Auth */ protected Utils\Auth $authUtils; @@ -49,10 +58,13 @@ class Config * * @param \SimpleSAML\Configuration $config The configuration to use. * @param \SimpleSAML\Session $session The current user session. + * @throws \SimpleSAML\Error\CriticalConfigurationError + * @throws \InvalidArgumentException + * @throws \Exception */ public function __construct( protected Configuration $config, - protected Session $session + protected Session $session, ) { $this->menu = new Menu(); $this->authUtils = new Utils\Auth(); @@ -77,6 +89,10 @@ public function setAuthUtils(Utils\Auth $authUtils): void * @param \Symfony\Component\HttpFoundation\Request $request The current request. * * @return \Symfony\Component\HttpFoundation\Response + * @throws \SimpleSAML\Error\CriticalConfigurationError + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \SimpleSAML\Error\Exception + * @throws \Throwable */ public function diagnostics(Request $request): Response { @@ -114,6 +130,10 @@ public function diagnostics(Request $request): Response * @param \Symfony\Component\HttpFoundation\Request $request The current request. * * @return \Symfony\Component\HttpFoundation\Response + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \Exception + * @throws \Throwable */ public function main(/** @scrutinizer ignore-unused */ Request $request): Response { @@ -130,12 +150,12 @@ public function main(/** @scrutinizer ignore-unused */ Request $request): Respon 'links' => [ [ 'href' => Module::getModuleURL('admin/diagnostics'), - 'text' => Translate::noop('Diagnostics on hostname, port and protocol') + 'text' => Translate::noop('Diagnostics on hostname, port and protocol'), ], [ 'href' => Module::getModuleURL('admin/phpinfo'), - 'text' => Translate::noop('Information on your PHP installation') - ] + 'text' => Translate::noop('Information on your PHP installation'), + ], ], 'enablematrix' => [ 'saml20idp' => $this->config->getOptionalBoolean('enable.saml20-idp', false), @@ -145,6 +165,10 @@ public function main(/** @scrutinizer ignore-unused */ Request $request): Respon 'modulelist' => $this->getModuleList(), ]; + $eventDispatcher = ModuleEventDispatcherFactory::getInstance(); + /** @var CronEvent $event */ + $event = $eventDispatcher->dispatch(new ConfigPageEvent($t)); + $t = $event->getTemplate(); Module::callHooks('configpage', $t); $this->menu->addOption('logout', $this->authUtils->getAdminLogoutURL(), Translate::noop('Log out')); return $this->menu->insert($t); @@ -153,6 +177,7 @@ public function main(/** @scrutinizer ignore-unused */ Request $request): Respon /** * @return array + * @throws \Exception */ protected function getModuleList(): array { @@ -172,6 +197,8 @@ protected function getModuleList(): array * @param \Symfony\Component\HttpFoundation\Request $request The current request. * * @return \Symfony\Component\HttpFoundation\Response The output of phpinfo() + * @throws \SimpleSAML\Error\Exception + * @throws \Throwable */ public function phpinfo(/** @scrutinizer ignore-unused */ Request $request): Response { @@ -180,9 +207,16 @@ public function phpinfo(/** @scrutinizer ignore-unused */ Request $request): Res return $response; } - return new StreamedResponse('phpinfo'); + $response = new StreamedResponse('phpinfo'); + $response->headers->set( + 'Content-Security-Policy', + "default-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; frame-ancestors 'self';", + ); + + return $response; } + /** * Perform a list of checks on the current installation, and return the results as an array. * @@ -195,6 +229,8 @@ public function phpinfo(/** @scrutinizer ignore-unused */ Request $request): Res * - enabled: True if the prerequisite is met, false otherwise. * * @return array + * @throws \SimpleSAML\Error\Exception + * @throws \Exception */ protected function getPrerequisiteChecks(): array { @@ -205,11 +241,11 @@ protected function getPrerequisiteChecks(): array Translate::noop('PHP %minimum% or newer is needed. You are running: %current%'), [ '%minimum%' => '8.1', - '%current%' => explode('-', phpversion())[0] - ] + '%current%' => explode('-', phpversion())[0], + ], ], - 'enabled' => version_compare(phpversion(), '8.1', '>=') - ] + 'enabled' => version_compare(phpversion(), '8.1', '>='), + ], ]; $store = $this->config->getOptionalString('store.type', null); $checkforupdates = $this->config->getOptionalBoolean('admin.checkforupdates', true); @@ -220,93 +256,93 @@ protected function getPrerequisiteChecks(): array 'required' => 'required', 'descr' => [ 'required' => Translate::noop('Date/Time Extension'), - ] + ], ], 'hash' => [ 'required' => 'required', 'descr' => [ 'required' => Translate::noop('Hashing function'), - ] + ], ], 'gzinflate' => [ 'required' => 'required', 'descr' => [ 'required' => Translate::noop('ZLib'), - ] + ], ], 'openssl_sign' => [ 'required' => 'required', 'descr' => [ 'required' => Translate::noop('OpenSSL'), - ] + ], ], 'dom_import_simplexml' => [ 'required' => 'required', 'descr' => [ 'required' => Translate::noop('XML DOM'), - ] + ], ], 'preg_match' => [ 'required' => 'required', 'descr' => [ 'required' => Translate::noop('Regular expression support'), - ] + ], ], 'intl_get_error_code' => [ 'required' => 'optional', 'descr' => [ 'optional' => Translate::noop('PHP intl extension'), - ] + ], ], 'json_decode' => [ 'required' => 'required', 'descr' => [ 'required' => Translate::noop('JSON support'), - ] + ], ], 'class_implements' => [ 'required' => 'required', 'descr' => [ 'required' => Translate::noop('Standard PHP library (SPL)'), - ] + ], ], 'mb_strlen' => [ 'required' => 'required', 'descr' => [ 'required' => Translate::noop('Multibyte String extension'), - ] + ], ], 'curl_init' => [ 'required' => ($checkforupdates === true) ? 'required' : 'optional', 'descr' => [ 'optional' => Translate::noop( - 'cURL (might be required by some modules)' + 'cURL (might be required by some modules)', ), 'required' => Translate::noop( - 'cURL (required if automatic version checks are used, also by some modules)' + 'cURL (required if automatic version checks are used, also by some modules)', ), - ] + ], ], 'session_start' => [ 'required' => $store === 'phpsession' ? 'required' : 'optional', 'descr' => [ 'optional' => Translate::noop('Session extension (required if PHP sessions are used)'), 'required' => Translate::noop('Session extension'), - ] + ], ], 'pdo_drivers' => [ 'required' => $store === 'sql' ? 'required' : 'optional', 'descr' => [ 'optional' => Translate::noop('PDO Extension (required if a database backend is used)'), 'required' => Translate::noop('PDO extension'), - ] + ], ], 'ldap_bind' => [ 'required' => Module::isModuleEnabled('ldap') ? 'required' : 'optional', 'descr' => [ 'optional' => Translate::noop('LDAP extension (required if an LDAP backend is used)'), 'required' => Translate::noop('LDAP extension'), - ] + ], ], ]; @@ -326,18 +362,18 @@ protected function getPrerequisiteChecks(): array 'descr' => [ 'optional' => Translate::noop('predis/predis (required if the redis data store is used)'), 'required' => Translate::noop('predis/predis library'), - ] + ], ], [ 'classes' => ['\Memcache', '\Memcached'], 'required' => $store === 'memcache' ? 'required' : 'optional', 'descr' => [ 'optional' => Translate::noop( - 'Memcache or Memcached extension (required if the memcache backend is used)' + 'Memcache or Memcached extension (required if the memcache backend is used)', ), 'required' => Translate::noop('Memcache or Memcached extension'), - ] - ] + ], + ], ]; foreach ($libs as $lib) { @@ -369,8 +405,25 @@ protected function getPrerequisiteChecks(): array // Add module specific checks via the sanitycheck hook that a module can provide. + $eventDispatcher = ModuleEventDispatcherFactory::getInstance(); + /** @var SanityCheckEvent $event */ + $event = $eventDispatcher->dispatch(new SanityCheckEvent()); + $hookinfo = [ 'info' => [], 'errors' => [] ]; Module::callHooks('sanitycheck', $hookinfo); + + // Merge results from the event into $hookinfo. Can be removed when hook infrastructure is removed. + $hookinfo = [ + 'info' => array_merge( + $event->getInfo(), + $hookinfo['info'], + ), + 'errors' => array_merge( + $event->getErrors(), + $hookinfo['errors'], + ), + ]; + foreach (['info', 'errors'] as $resulttype) { foreach ($hookinfo[$resulttype] as $result) { $matrix[] = [ @@ -396,6 +449,7 @@ protected function getPrerequisiteChecks(): array * {{ e[0]|trans(e[1])|raw }} * * @return array + * @throws \Exception */ protected function getWarnings(): array { @@ -407,17 +461,22 @@ protected function getWarnings(): array 'You are not using HTTPS to protect communications with your users. HTTP works fine ' . 'for testing purposes, but in a production environment you should use HTTPS. Read more about the ' . - 'maintenance of SimpleSAMLphp.' + 'maintenance of SimpleSAMLphp.', ); } // make sure we have a secret salt set - if ($this->config->getString('secretsalt') === 'defaultsecretsalt') { + $secretSalt = $this->config->getString('secretsalt'); + if ($secretSalt === 'defaultsecretsalt') { $warnings[] = Translate::noop( 'The configuration uses the default secret salt. Make sure to modify the ' . 'secretsalt option in the SimpleSAMLphp configuration in production environments. Read more about the ' . - 'maintenance of SimpleSAMLphp.' + 'maintenance of SimpleSAMLphp.', + ); + } elseif (str_contains($secretSalt, '%')) { + $warnings[] = Translate::noop( + 'The "secretsalt" configuration option may not contain a `%` sign.', ); } @@ -429,7 +488,7 @@ protected function getWarnings(): array if (($checkforupdates === true) && $this->config->getVersion() !== 'dev-master') { if (!function_exists('curl_init')) { $warnings[] = Translate::noop( - 'The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates.' + 'The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates.', ); } else { $latest = $this->session->getData(self::LATEST_VERSION_STATE_KEY, "version"); @@ -455,7 +514,7 @@ protected function getWarnings(): array $warnings[] = [ Translate::noop( 'You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible.' + '%latest%">the latest version as soon as possible.', ), [ '%latest%' => $latest['html_url'], diff --git a/modules/admin/src/Controller/Federation.php b/modules/admin/src/Controller/Federation.php index e888d712f7..aed330b5e2 100644 --- a/modules/admin/src/Controller/Federation.php +++ b/modules/admin/src/Controller/Federation.php @@ -5,24 +5,38 @@ namespace SimpleSAML\Module\admin\Controller; use Exception; -use SimpleSAML\{Auth, Configuration, Logger, Module, Utils}; -use SimpleSAML\Assert\{Assert, AssertionFailedException}; +use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; +use SimpleSAML\Configuration; +use SimpleSAML\Event\Dispatcher\ModuleEventDispatcherFactory; use SimpleSAML\Locale\Translate; -use SimpleSAML\Metadata\{MetaDataStorageHandler, SAMLBuilder, SAMLParser, Signer}; +use SimpleSAML\Logger; +use SimpleSAML\Metadata\MetaDataStorageHandler; +use SimpleSAML\Metadata\SAMLBuilder; +use SimpleSAML\Metadata\SAMLParser; +use SimpleSAML\Metadata\Signer; +use SimpleSAML\Module; use SimpleSAML\Module\adfs\IdP\ADFS as ADFS_IdP; +use SimpleSAML\Module\admin\Event\FederationPageEvent; use SimpleSAML\Module\saml\IdP\SAML2 as SAML2_IdP; use SimpleSAML\SAML2\Constants as C; use SimpleSAML\SAML2\Exception\ArrayValidationException; use SimpleSAML\SAML2\XML\md\ContactPerson; +use SimpleSAML\Utils; use SimpleSAML\XHTML\Template; -use Symfony\Component\HttpFoundation\{Request, Response, ResponseHeaderBag}; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpFoundation\Response; +use Symfony\Component\HttpFoundation\ResponseHeaderBag; use Symfony\Component\VarExporter\VarExporter; + use function array_merge; use function array_pop; use function array_values; +use function boolval; use function count; use function file_get_contents; +use function ini_get; use function is_array; use function sprintf; use function str_replace; @@ -62,9 +76,10 @@ class Federation * FederationController constructor. * * @param \SimpleSAML\Configuration $config The configuration to use. + * @throws \Exception */ public function __construct( - protected Configuration $config + protected Configuration $config, ) { $this->menu = new Menu(); $this->mdHandler = MetaDataStorageHandler::getMetadataHandler($config); @@ -112,7 +127,9 @@ public function setMetadataStorageHandler(MetadataStorageHandler $mdHandler): vo * @param \Symfony\Component\HttpFoundation\Request $request * @return \Symfony\Component\HttpFoundation\Response * @throws \SimpleSAML\Error\Exception - * @throws \SimpleSAML\Error\Exception + * @throws \Exception + * @throws \Symfony\Component\VarExporter\Exception\ExceptionInterface + * @throws \Throwable */ public function main(/** @scrutinizer ignore-unused */ Request $request): Response { @@ -160,7 +177,7 @@ public function main(/** @scrutinizer ignore-unused */ Request $request): Respon [ 'href' => Module::getModuleURL('admin/federation/metadata-converter'), 'text' => Translate::noop('XML to SimpleSAMLphp metadata converter'), - ] + ], ], 'entries' => $entries, 'mdtype' => [ @@ -176,6 +193,11 @@ public function main(/** @scrutinizer ignore-unused */ Request $request): Respon 'logouturl' => $this->authUtils->getAdminLogoutURL(), ]; + $eventDispatcher = ModuleEventDispatcherFactory::getInstance(); + /** @var FederationPageEvent $event */ + $event = $eventDispatcher->dispatch(new FederationPageEvent($t)); + $t = $event->getTemplate(); + Module::callHooks('federationpage', $t); Assert::isInstanceOf($t, Template::class); @@ -190,6 +212,7 @@ public function main(/** @scrutinizer ignore-unused */ Request $request): Respon * * @return array * @throws \Exception + * @throws \Symfony\Component\VarExporter\Exception\ExceptionInterface */ private function getHostedIdP(): array { @@ -206,7 +229,11 @@ private function getHostedIdP(): array $selfHost = $httpUtils->getSelfHostWithPath(); foreach ($idps as $index => $idp) { if (isset($idp['host']) && $idp['host'] !== '__DEFAULT__') { - $mdHostBase = str_replace('://' . $selfHost . '/', '://' . $idp['host'] . '/', $metadataBase); + $mdHostBase = str_replace( + '://' . $selfHost . '/', + '://' . $idp['host'] . '/', + $metadataBase, + ); } else { $mdHostBase = $metadataBase; } @@ -220,7 +247,7 @@ private function getHostedIdP(): array $saml2entities['saml20-idp'] = $this->mdHandler->getMetaDataCurrent('saml20-idp-hosted'); $saml2entities['saml20-idp']['url'] = $metadataBase; $saml2entities['saml20-idp']['metadata_array'] = SAML2_IdP::getHostedMetadata( - $this->mdHandler->getMetaDataCurrentEntityID('saml20-idp-hosted') + $this->mdHandler->getMetaDataCurrentEntityID('saml20-idp-hosted'), ); } @@ -229,7 +256,7 @@ private function getHostedIdP(): array Assert::maxLength( $entity['entityid'], C::SAML2INT_ENTITYID_MAX_LENGTH, - sprintf('The entityID cannot be longer than %d characters.', C::SAML2INT_ENTITYID_MAX_LENGTH) + sprintf('The entityID cannot be longer than %d characters.', C::SAML2INT_ENTITYID_MAX_LENGTH), ); $builder = new SAMLBuilder($entity['entityid']); @@ -239,11 +266,11 @@ private function getHostedIdP(): array $entity['metadata'] = Signer::sign( $builder->getEntityDescriptorText(), $entity['metadata_array'], - 'SAML 2 IdP' + 'SAML 2 IdP', ); $entities[$index] = $entity; } - } catch (\Exception $e) { + } catch (Exception $e) { Logger::error('Federation: Error loading saml20-idp: ' . $e->getMessage()); } } @@ -266,7 +293,7 @@ private function getHostedIdP(): array $adfsentities['adfs-idp'] = $this->mdHandler->getMetaDataCurrent('adfs-idp-hosted'); $adfsentities['adfs-idp']['url'] = Module::getModuleURL('adfs/idp/metadata.php'); $adfsentities['adfs-idp']['metadata_array'] = ADFS_IdP::getHostedMetadata( - $this->mdHandler->getMetaDataCurrentEntityID('adfs-idp-hosted') + $this->mdHandler->getMetaDataCurrentEntityID('adfs-idp-hosted'), ); } @@ -275,7 +302,7 @@ private function getHostedIdP(): array Assert::maxLength( $entity['entityid'], C::SAML2INT_ENTITYID_MAX_LENGTH, - sprintf('The entityID cannot be longer than %d characters.', C::SAML2INT_ENTITYID_MAX_LENGTH) + sprintf('The entityID cannot be longer than %d characters.', C::SAML2INT_ENTITYID_MAX_LENGTH), ); $builder = new SAMLBuilder($entity['entityid']); @@ -296,11 +323,11 @@ private function getHostedIdP(): array $entity['metadata'] = Signer::sign( $builder->getEntityDescriptorText(), $entity['metadata_array'], - 'ADFS IdP' + 'ADFS IdP', ); $entities[$index] = $entity; } - } catch (\Exception $e) { + } catch (Exception $e) { Logger::error('Federation: Error loading adfs-idp: ' . $e->getMessage()); } } @@ -332,6 +359,8 @@ private function getHostedIdP(): array * * @return array * @throws \SimpleSAML\Error\Exception If OrganizationName is set for an SP instance but OrganizationURL is not. + * @throws \Symfony\Component\VarExporter\Exception\ExceptionInterface + * @throws \Exception */ private function getHostedSP(): array { @@ -356,8 +385,8 @@ private function getHostedSP(): array 'name', $source->getMetadata()->getOptionalLocalizedString( 'OrganizationDisplayName', - ['en' => $source->getAuthId()] - ) + ['en' => $source->getAuthId()], + ), ); $builder = new SAMLBuilder($source->getEntityId()); @@ -399,6 +428,10 @@ private function getHostedSP(): array * @param \Symfony\Component\HttpFoundation\Request $request The current request. * * @return \Symfony\Component\HttpFoundation\Response + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \Symfony\Component\VarExporter\Exception\ExceptionInterface + * @throws \SimpleSAML\Error\Exception + * @throws \Throwable */ public function metadataConverter(Request $request): Response { @@ -407,7 +440,10 @@ public function metadataConverter(Request $request): Response return $response; } + $xmldata = null; if ($xmlfile = $request->files->get('xmlfile')) { + // Some security-tooling will falsely think that request-data is passed into file_get_contents(), + // but it's actually a random filename generated by PHP. $xmldata = trim(file_get_contents($xmlfile->getPathname())); } elseif ($xmldata = $request->request->get('xmldata')) { $xmldata = trim($xmldata); @@ -477,6 +513,7 @@ public function metadataConverter(Request $request): Response 'xmldata' => $xmldata, 'output' => $output, 'error' => $error, + 'upload' => boolval(ini_get('file_uploads')), ]; $this->menu->addOption('logout', $t->data['logouturl'], Translate::noop('Log out')); @@ -490,6 +527,9 @@ public function metadataConverter(Request $request): Response * @param \Symfony\Component\HttpFoundation\Request $request The current request. * * @return \Symfony\Component\HttpFoundation\Response PEM-encoded certificate. + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Error\MetadataNotFound + * @throws \Throwable */ public function downloadCert(Request $request): Response { @@ -520,7 +560,7 @@ public function downloadCert(Request $request): Response $response = new Response($certInfo['PEM']); $disposition = $response->headers->makeDisposition( ResponseHeaderBag::DISPOSITION_ATTACHMENT, - 'cert.pem' + 'cert.pem', ); $response->headers->set('Content-Disposition', $disposition); @@ -536,6 +576,11 @@ public function downloadCert(Request $request): Response * @param \Symfony\Component\HttpFoundation\Request $request The current request. * * @return \Symfony\Component\HttpFoundation\Response + * @throws \Symfony\Component\VarExporter\Exception\ExceptionInterface + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \SimpleSAML\Error\MetadataNotFound + * @throws \SimpleSAML\Error\Exception + * @throws \Throwable */ public function showRemoteEntity(Request $request): Response { diff --git a/modules/admin/src/Controller/Menu.php b/modules/admin/src/Controller/Menu.php index 7e6345f11b..7f1678ffdc 100644 --- a/modules/admin/src/Controller/Menu.php +++ b/modules/admin/src/Controller/Menu.php @@ -5,8 +5,10 @@ namespace SimpleSAML\Module\admin\Controller; use SimpleSAML\Assert\Assert; +use SimpleSAML\Event\Dispatcher\ModuleEventDispatcherFactory; use SimpleSAML\Locale\Translate; use SimpleSAML\Module; +use SimpleSAML\Module\admin\Event\AdminMenuEvent; use SimpleSAML\XHTML\Template; /** @@ -24,6 +26,9 @@ final class Menu * Menu constructor. * * Initialize the menu with some default admin options, and call a hook for anyone willing to extend it. + * @throws \SimpleSAML\Error\CriticalConfigurationError + * @throws \InvalidArgumentException + * @throws \Exception */ public function __construct() { @@ -38,8 +43,8 @@ public function __construct() ], 'federation' => [ 'url' => Module::getModuleURL('admin/federation'), - 'name' => Translate::noop('Federation') - ] + 'name' => Translate::noop('Federation'), + ], ]; } @@ -83,10 +88,16 @@ public function addOption(string $id, string $url, string $name): void * @param \SimpleSAML\XHTML\Template $template The template we should insert this menu into. * * @return \SimpleSAML\XHTML\Template The template with the added menu. + * @throws \SimpleSAML\Error\Exception + * @throws \Exception */ public function insert(Template $template): Template { $template->data['menu'] = $this->options; + $eventDispatcher = ModuleEventDispatcherFactory::getInstance(); + /** @var AdminMenuEvent $event */ + $event = $eventDispatcher->dispatch(new AdminMenuEvent($template)); + $template = $event->getTemplate(); Module::callHooks('adminmenu', $template); Assert::isInstanceOf($template, Template::class); diff --git a/modules/admin/src/Controller/Sandbox.php b/modules/admin/src/Controller/Sandbox.php index f679b74fed..722de64d05 100644 --- a/modules/admin/src/Controller/Sandbox.php +++ b/modules/admin/src/Controller/Sandbox.php @@ -4,7 +4,8 @@ namespace SimpleSAML\Module\admin\Controller; -use SimpleSAML\{Configuration, Session}; +use SimpleSAML\Configuration; +use SimpleSAML\Session; use SimpleSAML\XHTML\Template; use function time; @@ -26,7 +27,7 @@ class Sandbox */ public function __construct( protected Configuration $config, - protected Session $session + protected Session $session, ) { } @@ -35,6 +36,8 @@ public function __construct( * Display the sandbox page * * @return \SimpleSAML\XHTML\Template + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \Exception */ public function main(): Template { diff --git a/modules/admin/src/Controller/Test.php b/modules/admin/src/Controller/Test.php index c0f8985e63..1ceaaecd96 100644 --- a/modules/admin/src/Controller/Test.php +++ b/modules/admin/src/Controller/Test.php @@ -4,11 +4,16 @@ namespace SimpleSAML\Module\admin\Controller; -use SimpleSAML\{Auth, Configuration, Module, Session, Utils}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; +use SimpleSAML\Configuration; use SimpleSAML\Locale\Translate; +use SimpleSAML\Module; +use SimpleSAML\Session; +use SimpleSAML\Utils; use SimpleSAML\XHTML\Template; -use Symfony\Component\HttpFoundation\{Request, Response}; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpFoundation\Response; use function is_null; use function time; @@ -49,10 +54,13 @@ class Test * * @param \SimpleSAML\Configuration $config The configuration to use. * @param \SimpleSAML\Session $session The current user session. + * @throws \SimpleSAML\Error\CriticalConfigurationError + * @throws \InvalidArgumentException + * @throws \Exception */ public function __construct( protected Configuration $config, - protected Session $session + protected Session $session, ) { $this->menu = new Menu(); $this->authUtils = new Utils\Auth(); @@ -98,8 +106,12 @@ public function setAuthState(Auth\State $authState): void * @param \Symfony\Component\HttpFoundation\Request $request * @param string|null $as * @return \Symfony\Component\HttpFoundation\Response + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \SimpleSAML\Error\Exception + * @throws \Exception + * @throws \Throwable */ - public function main(Request $request, string $as = null): Response + public function main(Request $request, ?string $as = null): Response { $response = $this->authUtils->requireAdmin(); if ($response instanceof Response) { @@ -163,6 +175,8 @@ public function main(Request $request, string $as = null): Response * * @param \Symfony\Component\HttpFoundation\Request $request * @return \SimpleSAML\XHTML\Template + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \Exception */ public function logout(/** @scrutinizer ignore-unused */Request $request): Template { diff --git a/modules/admin/src/Event/AdminMenuEvent.php b/modules/admin/src/Event/AdminMenuEvent.php new file mode 100644 index 0000000000..a2a62e8f38 --- /dev/null +++ b/modules/admin/src/Event/AdminMenuEvent.php @@ -0,0 +1,22 @@ +template = $template; + } + + public function getTemplate(): XHTML\Template + { + return $this->template; + } +} \ No newline at end of file diff --git a/modules/admin/src/Event/ConfigPageEvent.php b/modules/admin/src/Event/ConfigPageEvent.php new file mode 100644 index 0000000000..4259c93134 --- /dev/null +++ b/modules/admin/src/Event/ConfigPageEvent.php @@ -0,0 +1,20 @@ +template; + } +} \ No newline at end of file diff --git a/modules/admin/src/Event/FederationPageEvent.php b/modules/admin/src/Event/FederationPageEvent.php new file mode 100644 index 0000000000..0e837ee7bb --- /dev/null +++ b/modules/admin/src/Event/FederationPageEvent.php @@ -0,0 +1,19 @@ +template; + } +} \ No newline at end of file diff --git a/modules/admin/src/Event/SanityCheckEvent.php b/modules/admin/src/Event/SanityCheckEvent.php new file mode 100644 index 0000000000..d6f38a69a3 --- /dev/null +++ b/modules/admin/src/Event/SanityCheckEvent.php @@ -0,0 +1,34 @@ +info[] = $message; + } + + public function addError(string $message): void + { + $this->errors[] = $message; + } + + public function getInfo(): array + { + return $this->info; + } + + public function getErrors(): array + { + return $this->errors; + } +} \ No newline at end of file diff --git a/modules/admin/templates/federation.twig b/modules/admin/templates/federation.twig index 2ce87683cc..cd023c8c73 100644 --- a/modules/admin/templates/federation.twig +++ b/modules/admin/templates/federation.twig @@ -55,7 +55,7 @@ - + {{ set.url }} diff --git a/modules/admin/templates/metadata_converter.twig b/modules/admin/templates/metadata_converter.twig index 33da7abf1b..664f241c0e 100644 --- a/modules/admin/templates/metadata_converter.twig +++ b/modules/admin/templates/metadata_converter.twig @@ -14,6 +14,7 @@
+ {% if upload %}

+ {% endif %}
@@ -31,8 +33,6 @@

{{ 'Converted metadata'|trans }}

{% for type, text in output -%} {%- if text -%} -{# spaceless is to work around a clipboard.js bug that would add extra whitespace #} -{% apply spaceless %}

{{ type }}

@@ -40,11 +40,10 @@
-
-
{{ text|escape }}
+
+ {{- text|escape -}}
-{% endapply %}

{%- set i=i+1 %} {%- endif -%} @@ -60,5 +59,7 @@ {% endif -%} {% endblock content -%} {% block postload %} +{% if upload %} +{% endif %} {% endblock postload %} diff --git a/modules/admin/templates/show_metadata.twig b/modules/admin/templates/show_metadata.twig index 24fdc3ea92..a28b0c90b7 100644 --- a/modules/admin/templates/show_metadata.twig +++ b/modules/admin/templates/show_metadata.twig @@ -9,7 +9,7 @@ title="{% trans %}Copy to clipboard{% endtrans %}">
- {#- #}$metadata["{{ entityid }}"] => {{ metadata|escape }};{# -#} + {#- #}$metadata["{{ entityid }}"] = {{ metadata|escape }};{# -#}
diff --git a/modules/admin/templates/status.twig b/modules/admin/templates/status.twig index 514abfe9b0..89c4bdba01 100644 --- a/modules/admin/templates/status.twig +++ b/modules/admin/templates/status.twig @@ -5,8 +5,7 @@ {% block content %} {%- include "@admin/includes/menu.twig" %} -

{% trans %}Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long - it lasts until it times out and all the attributes that are attached to your session.{% endtrans %}

+

{% trans %}Hi, this is the status page of SimpleSAMLphp. Here you can see if your session is timed out, how long it lasts until it times out and all the attributes that are attached to your session.{% endtrans %}

{% if remaining %}

{% trans with { diff --git a/modules/core/docs/authproc_attributelimit.md b/modules/core/docs/authproc_attributelimit.md index 7a27bbe7f2..a28204270f 100644 --- a/modules/core/docs/authproc_attributelimit.md +++ b/modules/core/docs/authproc_attributelimit.md @@ -53,6 +53,15 @@ Only allow specific values for an attribute ignoring case. ], ], +Only allow attributes that match a regex pattern + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeLimit', + '/^eduPerson' => [ 'nameIsRegex' => true ] + ], + ], + Only allow specific values for an attribute that match a regex pattern 'authproc' => [ @@ -82,13 +91,14 @@ like this: 50 => 'core:AttributeLimit', ], -Then, add the allowed attributes to each service provider metadata, in the `attributes` option: +Then, add the allowed attributes to each service provider metadata, in the `attributes` option (for exact matches) or `attributesRegex` (for regular expression matches): $metadata['https://saml2sp.example.org'] = [ 'AssertionConsumerService' => 'https://saml2sp.example.org/simplesaml/module.php/saml/sp/saml2-acs.php/default-sp', 'SingleLogoutService' => 'https://saml2sp.example.org/simplesaml/module.php/saml/sp/saml2-logout.php/default-sp', ... - 'attributes' => ['cn', 'mail'], + 'attributes' => ['cn', ... ], + 'attributesRegex' => [ '/^mail$/', ... ], ... ]; diff --git a/modules/core/docs/authproc_attributevaluemap.md b/modules/core/docs/authproc_attributevaluemap.md index d4e6d684c5..94b3f0a5ba 100644 --- a/modules/core/docs/authproc_attributevaluemap.md +++ b/modules/core/docs/authproc_attributevaluemap.md @@ -5,7 +5,8 @@ Filter that creates a target attribute based on one or more value(s) in source a Besides the mapping of source values to target values, the filter has the following options: * `%replace` can be used to replace all existing values in target with new ones (any existing values will be lost) -* `%keep` can be used to keep the source attribute, otherwise it will be removed. +* `%keep` can be used to keep the source attribute, otherwise it will be removed (regardless of whether there is a match or not). +* `%regex` can be used to evaluate the values as regular expressions instead of plain strings. **Examples**: @@ -84,3 +85,25 @@ Replace any existing `affiliation` attribute values and keep the `groups` attrib ], ], ], + +## Regular expressions + +Will add eduPersonAffiliation containing value `student` if the `memberOf` attribute contains +some value matching `/^cn=student,o=[a-z]+,o=organization,dc=org` +(eg. `cn=student,o=some,o=organization,dc=org`). +The `memberOf` attribute will be removed (use `%keep`, to keep it) and existing values in +`eduPersonAffiliation` will be merged (use `%replace` to replace them). + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeValueMap', + 'sourceattribute' => 'memberOf', + 'targetattribute' => 'eduPersonAffiliation', + '%regex', + 'values' => [ + 'student' => [ + '/^cn=student,o=[a-z]+,o=organization,dc=org$/', + ], + ], + ], + ], diff --git a/modules/core/locales/af/LC_MESSAGES/core.po b/modules/core/locales/af/LC_MESSAGES/core.po index 40927b6d49..29fa3399c0 100644 --- a/modules/core/locales/af/LC_MESSAGES/core.po +++ b/modules/core/locales/af/LC_MESSAGES/core.po @@ -1,31 +1,185 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" + +msgid "An error has occurred" +msgstr "" + +msgid "Check that the link you used to access the web site is correct." +msgstr "" + +msgid "Close the web browser, and try again." +msgstr "" + +msgid "Continue" +msgstr "" + +msgid "Cookies may be disabled in the web browser." +msgstr "" + +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + +msgid "Go back to the previous page and try again." +msgstr "" + +msgid "Help! I don't remember my password." +msgstr "" + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "As jy 'n programmeerder is wat die 'single sign-on' oplossing implementeer, het jy 'n probleem met die metadata opset. Bevestig dat die metadata korrek ingestel is op beide die identiteit verskaffer en diensverskaffer." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "As jy 'n gebruiker is wat na aanleiding van 'n skakel op 'n webwerf hierdie fout ontvang het, moet jy hierdie fout aan die eienaar van die webwerf aan stuur." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Verlore cookie" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "" + +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Retry" +msgstr "Probeer weer" + msgid "Retry login" msgstr "Probeer weer aanmeld" +msgid "SimpleSAMLphp" +msgstr "" + +msgid "Suggestions for resolving this problem:" +msgstr "" + +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + +msgid "This error may be caused by:" +msgstr "" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Dié is waarskynlik 'n probleem met die konfigurasie by die diensverskaffer óf die identiteit verskaffer." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + msgid "Too short interval between single sign on events." msgstr "Te kort interval tussen enkel aanmeldings(single sign on) op die gebeure." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + +msgid "Using the back and forward buttons in the web browser." +msgstr "" + msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." msgstr "Ons het ontdek dat daar slegs 'n paar sekondes was sedert jy laas geverifieer het met die diensverskaffer en neem dus aan dat daar 'n probleem is met hierdie SP." -msgid "Missing cookie" -msgstr "Verlore cookie" +msgid "Welcome" +msgstr "" -msgid "Retry" -msgstr "Probeer weer" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" + +msgid "Yes, all services" +msgstr "" msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." msgstr "Dit blyk dat jy cookies in jou webblaaier af geskakel het. Gaan asseblief die stellings in jou webblaaier na en probeer weer." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "As jy 'n programmeerder is wat die 'single sign-on' oplossing implementeer, het jy 'n probleem met die metadata opset. Bevestig dat die metadata korrek ingestel is op beide die identiteit verskaffer en diensverskaffer." +msgid "You are also logged in on these services:" +msgstr "" -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "As jy 'n gebruiker is wat na aanleiding van 'n skakel op 'n webwerf hierdie fout ontvang het, moet jy hierdie fout aan die eienaar van die webwerf aan stuur." +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Dié is waarskynlik 'n probleem met die konfigurasie by die diensverskaffer óf die identiteit verskaffer." +msgid "You are now successfully logged out from %SP%." +msgstr "" + +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/ar/LC_MESSAGES/core.po b/modules/core/locales/ar/LC_MESSAGES/core.po index 5cc5112a02..106e5a75cb 100644 --- a/modules/core/locales/ar/LC_MESSAGES/core.po +++ b/modules/core/locales/ar/LC_MESSAGES/core.po @@ -1,79 +1,209 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "اعد تسجيل الدخول" - -msgid "Too short interval between single sign on events." -msgstr "فترات قصيرة جداً بين محاولات تسجيل الدخول الموحد " - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "يبدو انك قد قمت بتصديق الدخول عدة مرات لمقدم هذه الخدمة خلال الثواني القليلة الماضية مما يقودنا للاعتقاد بوجود مشكلة ما بهذا ال SP " - -msgid "Missing cookie" -msgstr "ألكوكيز المفقودة" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "اعد المحاولة" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "يبدو انك قد عطلت الكوكيز بمتصفحك. قم رجاءا بمراجعة إعدادات متصفحك ثم حاول مرة اخري" +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "اغلق الموقع ثم حاول مرة اخري" +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "الكوكيز غير منشطة بمتصفحك" +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "ارجع للصفحة السابقة و حاول مرة اخري" -msgid "Opened the web browser with tabs saved from the previous session." -msgstr "فتح متصفحك مستخدما معلومات محفوظة من المرة السابقة" +msgid "Help! I don't remember my password." +msgstr "" -msgid "Suggestions for resolving this problem:" -msgstr "اقتراحات لحل المشكلة " +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "البيانات الوصفية/الميتاداتا لهوية مقدم Shibboleth 1.3 الضيف (تم تجهيزها اتوماتيكياً)" -msgid "This error may be caused by:" -msgstr "سبب حدوث هذا الخطأ قد يكون:" +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "البيانات الوصفية/الميتاداتا لمقدم Shibboleth 1.3 الضيف (تم تجهيزها اتوماتيكياً)" -msgid "Using the back and forward buttons in the web browser." -msgstr "استخدام أزرار الرجوع للخلف و الامام بمتصفحك" +msgid "If this problem persists, you can report it to the system administrators." +msgstr "اذا استمرت هذه المشكلة بالحدوث، رجاءا بلغ إدارة الموقع" msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." msgstr " و كانت (Single Sign-On) ان كنت مبرمجاً تعمل علي توفير حل لتوثيق دخول لمرة واحدة لديك مشكلة بادخال البيانات الوصفية, تأكد من أن أدخال البيانات الوصفية صحيح بكل من محدد الهوية و المخدم " -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." msgstr "ان تعرضت لهذا الاشكال بعيد اتباعك لرابط بموقع ما, ينبغي عليك الابلاغ عن هذا الاشكال لمالك الموقع المعني" -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "من الارجح ان هذا الاشكال نابع اما من مشكلة بالمخدم أو مشكلة بمحدد الهوية" +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" -msgid "Welcome" -msgstr "مرحباً" +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "اذا استمرت هذه المشكلة بالحدوث، رجاءا بلغ إدارة الموقع" +msgid "Incorrect Attributes" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "البيانات الوصفية/الميتاداتا لمقدم Shibboleth 1.3 الضيف (تم تجهيزها اتوماتيكياً)" +msgid "Logging out..." +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "لم نستطع تحديد المعلومات المفقودة للطلب الحالي" +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" msgid "Metadata" msgstr "البيانات الوصفية/الميتاداتا " +msgid "Missing cookie" +msgstr "ألكوكيز المفقودة" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "فتح متصفحك مستخدما معلومات محفوظة من المرة السابقة" + +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "بلغ عن هذا الخطأ " + +msgid "Retry" +msgstr "اعد المحاولة" + +msgid "Retry login" +msgstr "اعد تسجيل الدخول" + msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" msgstr "مثال Shibboleth 1.3 SP- اختبر تسجيل الدخول مستخدماً هوية Shib IdP" +msgid "SimpleSAMLphp" +msgstr "" + msgid "State information lost" msgstr "حدد المعلومات المفقودة" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "البيانات الوصفية/الميتاداتا لهوية مقدم Shibboleth 1.3 الضيف (تم تجهيزها اتوماتيكياً)" +msgid "Suggestions for resolving this problem:" +msgstr "اقتراحات لحل المشكلة " -msgid "Report this error" -msgstr "بلغ عن هذا الخطأ " +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + +msgid "This error may be caused by:" +msgstr "سبب حدوث هذا الخطأ قد يكون:" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "من الارجح ان هذا الاشكال نابع اما من مشكلة بالمخدم أو مشكلة بمحدد الهوية" + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "فترات قصيرة جداً بين محاولات تسجيل الدخول الموحد " + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + +msgid "Using the back and forward buttons in the web browser." +msgstr "استخدام أزرار الرجوع للخلف و الامام بمتصفحك" + +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "يبدو انك قد قمت بتصديق الدخول عدة مرات لمقدم هذه الخدمة خلال الثواني القليلة الماضية مما يقودنا للاعتقاد بوجود مشكلة ما بهذا ال SP " + +msgid "We were unable to locate the state information for the current request." +msgstr "لم نستطع تحديد المعلومات المفقودة للطلب الحالي" + +msgid "Welcome" +msgstr "مرحباً" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" + +msgid "Yes, all services" +msgstr "" + +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "يبدو انك قد عطلت الكوكيز بمتصفحك. قم رجاءا بمراجعة إعدادات متصفحك ثم حاول مرة اخري" + +msgid "You are also logged in on these services:" +msgstr "" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" + +msgid "You are now successfully logged out from %SP%." +msgstr "" + +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/cs/LC_MESSAGES/core.po b/modules/core/locales/cs/LC_MESSAGES/core.po index 585b3d7e5e..1757f0cfdd 100644 --- a/modules/core/locales/cs/LC_MESSAGES/core.po +++ b/modules/core/locales/cs/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Přihlašte se znovu." - -msgid "Too short interval between single sign on events." -msgstr "Příliš krátký interval mezi událostmi jednoho prihlášení." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Zjistili jsme, že uběhlo pouze pár sekund od Vašeho minulého priřhlášení pomocí service providera a proto předpokládáme, že nastala chyba v tom SP." - -msgid "Missing cookie" -msgstr "Chybějící cookie" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Opakujte" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Váš internetový prohlížeč má zřejmě vypnutou podporu cookies. Prosíme, zkontrolujte nastavení cookies ve vašem prohlížeči a zkuste znovu." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Zavřít webový prohlížeč a zkusit znovu." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Ve webovém prohlížeči mohou být zakázány cookies." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Jít zpět na předchozí stránku a zkusit znovu." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Metada lookálního (hosted) Shibboleth 1.3 poskytovatele služby (IdP) (automaticky generované)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Metada lookálního (hosted) Shibboleth 1.3 poskytovatele služby (SP) (automaticky generované)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Pokud problém přetrvává, můžete ho nahlásit správci." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Pokud jste vývojář nasazující řešení jednotného přihlašování, máte problém s konfigurací metadat. Ověřte, zda jsou metadata nakonfigurována správně jak u poskytovatele identity tak u poskytovatele služby." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Pokud jste uživatel, který obdržel chybu po následování odkazu na webové stránce, měli byste o této chybě informovat vlastníka této stránky. " + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Chybějící cookie" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Otevřením webového prohlížeče se záložkami z předchozího sezení." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Nahlásit tuto chybu" + +msgid "Retry" +msgstr "Opakujte" + +msgid "Retry login" +msgstr "Přihlašte se znovu." + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP ukázka - testovací přihlášení pomocí vaší Shib IdP" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Stavová informace ztracena" + msgid "Suggestions for resolving this problem:" msgstr "Návrhy pro vyřešení tohoto problému:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Tato chyba může být způsobená:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Toto je pravděpodobně konfigurační problém na straně poskytovatele služby nebo poskytovatele identity." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Příliš krátký interval mezi událostmi jednoho prihlášení." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Použitím tlačítek zpět a vpřed ve webvém prohlížeči." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Pokud jste vývojář nasazující řešení jednotného přihlašování, máte problém s konfigurací metadat. Ověřte, zda jsou metadata nakonfigurována správně jak u poskytovatele identity tak u poskytovatele služby." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Pokud jste uživatel, který obdržel chybu po následování odkazu na webové stránce, měli byste o této chybě informovat vlastníka této stránky. " +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Zjistili jsme, že uběhlo pouze pár sekund od Vašeho minulého priřhlášení pomocí service providera a proto předpokládáme, že nastala chyba v tom SP." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Toto je pravděpodobně konfigurační problém na straně poskytovatele služby nebo poskytovatele identity." +msgid "We were unable to locate the state information for the current request." +msgstr "Nebylo možné najít stavovou informaci pro současný požadavek." msgid "Welcome" msgstr "Vítejte" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Pokud problém přetrvává, můžete ho nahlásit správci." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Metada lookálního (hosted) Shibboleth 1.3 poskytovatele služby (SP) (automaticky generované)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Nebylo možné najít stavovou informaci pro současný požadavek." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Váš internetový prohlížeč má zřejmě vypnutou podporu cookies. Prosíme, zkontrolujte nastavení cookies ve vašem prohlížeči a zkuste znovu." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP ukázka - testovací přihlášení pomocí vaší Shib IdP" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Stavová informace ztracena" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Metada lookálního (hosted) Shibboleth 1.3 poskytovatele služby (IdP) (automaticky generované)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Nahlásit tuto chybu" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/da/LC_MESSAGES/core.po b/modules/core/locales/da/LC_MESSAGES/core.po index 462432fbc5..d6191fd989 100644 --- a/modules/core/locales/da/LC_MESSAGES/core.po +++ b/modules/core/locales/da/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Login igen" - -msgid "Too short interval between single sign on events." -msgstr "For kort interval mellem single sign on hændelse." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Vi har opdaget at det kun er få sekunder siden du sidst autentificerede dig op mod denne service. Vi antager derfor at der er et problem med services." - -msgid "Missing cookie" -msgstr "Mangler cookie" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Forsøg igen" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Det ser ud til at du har slået cookies fra i din browser. Tjek dine browserindstillinger og prøv igen." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Luk din browser og prøv igen." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Cookies kan være deaktiveret i browseren." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Gå tilbage til forrige side og prøv igen." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Hosted Shibboleth 1.3 identitetsudbyder metadata (automatisk genereret)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Hosted Shibboleth 1.3 tjenesteudbyder metadata (automatisk genereret)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Hvis dette problem fortsætter, kan du rapportere det til systemadministratoren." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Hvis du er udvikler, så har du et metadata-konfigurationsproblem. Tjek at metadata er konfigurerede korrekt både på service-siden og identitetsudbyder-siden." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Hvis du har modtaget denne fejlbesked efter at have klikket på et lilnk, skal du rappoterer fejlen til ejeren af siden. " + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Mangler cookie" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Åben browseren med faner fra sidste session." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Rapporter denne fejl" + +msgid "Retry" +msgstr "Forsøg igen" + +msgid "Retry login" +msgstr "Login igen" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP eksempel - test indlogning med Shibboleth 1.3 via din IdP" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Tilstandsinformation forsvundet" + msgid "Suggestions for resolving this problem:" msgstr "Løsningsforslag til problemet:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Fejlen kan være forårsaget af:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Der er sandsynligvis en konfigurationsfejl hos enten servicen eller identitetsudbyderen." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "For kort interval mellem single sign on hændelse." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Brug frem- og tilbage-knappen i browseren." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Hvis du er udvikler, så har du et metadata-konfigurationsproblem. Tjek at metadata er konfigurerede korrekt både på service-siden og identitetsudbyder-siden." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Hvis du har modtaget denne fejlbesked efter at have klikket på et lilnk, skal du rappoterer fejlen til ejeren af siden. " +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Vi har opdaget at det kun er få sekunder siden du sidst autentificerede dig op mod denne service. Vi antager derfor at der er et problem med services." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Der er sandsynligvis en konfigurationsfejl hos enten servicen eller identitetsudbyderen." +msgid "We were unable to locate the state information for the current request." +msgstr "Tilstandsinformation for igangværende request kan ikke findes" msgid "Welcome" msgstr "Velkommen" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Hvis dette problem fortsætter, kan du rapportere det til systemadministratoren." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Hosted Shibboleth 1.3 tjenesteudbyder metadata (automatisk genereret)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Tilstandsinformation for igangværende request kan ikke findes" +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Det ser ud til at du har slået cookies fra i din browser. Tjek dine browserindstillinger og prøv igen." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP eksempel - test indlogning med Shibboleth 1.3 via din IdP" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Tilstandsinformation forsvundet" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Hosted Shibboleth 1.3 identitetsudbyder metadata (automatisk genereret)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Rapporter denne fejl" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/de/LC_MESSAGES/core.po b/modules/core/locales/de/LC_MESSAGES/core.po index 422e7f90bf..3ceab3a46c 100644 --- a/modules/core/locales/de/LC_MESSAGES/core.po +++ b/modules/core/locales/de/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Versuche Anmeldung erneut" - -msgid "Too short interval between single sign on events." -msgstr "Zu kurzes Intervall zwischen generellen Anmeldeereignissen." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Wir haben festgestellt, dass seit Ihrer letzten Anmeldung bei diesem Diensteanbieter nur wenige Sekunden vergangen sind. Deswegen gehen wir davon aus, dass es ein Problem mit diesem Anbieter gibt." - -msgid "Missing cookie" -msgstr "Cookie fehlt" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Erneut versuchen" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Sie scheinen Cookies in Ihrem Browser deaktiviert zu haben. Bitte überprüfen Sie die Einstellungen in Ihrem Browser und versuchen Sie es erneut." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Schließe den Web-Browser und versuche es erneut." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Cookies könnten im Web-Browser deaktiviert sein." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Kehre zur letzen Seite zurück und versuche es erneut." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Hosted Shibboleth 1.3 Identity Provider Metadaten (automatisch generiert)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Hosted Shibboleth 1.3 Service Provider Metadaten (automatisch generiert)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Wenn das Problem weiter besteht, kannst du diesen Fehler den Systemadministratoren melden." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Arbeiten Sie selbst an einem Web Single Sign-On System, stimmt mit den benutzten Metadaten etwas nicht. Überprüfen Sie die Metadaten des Identity Providers und des Service Providers." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Sind Sie lediglich einem Verweis einer anderen Website hierher gefolgt, sollten Sie diesen Fehler den Betreibern der Website melden." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Cookie fehlt" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Das Öffnen des Web-Browser mit gespeicherten Tabs aus der letzten Sitzung." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Diesen Fehler melden" + +msgid "Retry" +msgstr "Erneut versuchen" + +msgid "Retry login" +msgstr "Versuche Anmeldung erneut" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP Beispiel - Anmelden über ihren Shibboleth IdP testen" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Statusinformationen verloren" + msgid "Suggestions for resolving this problem:" msgstr "Empfehlungen um dieses Problem zu lösen:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Dieser Fehler könnte durch folgendes verursacht werden:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Ursache ist wahrscheinlich eine Fehlkonfiguration auf Seiten des Service Providers oder des Identity Providers." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Zu kurzes Intervall zwischen generellen Anmeldeereignissen." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Das Benutzen der Zurück- und Vorwärts-Schaltflächen im Web-Browser." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Arbeiten Sie selbst an einem Web Single Sign-On System, stimmt mit den benutzten Metadaten etwas nicht. Überprüfen Sie die Metadaten des Identity Providers und des Service Providers." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Sind Sie lediglich einem Verweis einer anderen Website hierher gefolgt, sollten Sie diesen Fehler den Betreibern der Website melden." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Wir haben festgestellt, dass seit Ihrer letzten Anmeldung bei diesem Diensteanbieter nur wenige Sekunden vergangen sind. Deswegen gehen wir davon aus, dass es ein Problem mit diesem Anbieter gibt." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Ursache ist wahrscheinlich eine Fehlkonfiguration auf Seiten des Service Providers oder des Identity Providers." +msgid "We were unable to locate the state information for the current request." +msgstr "Wir konnten die Statusinformationen für die aktuelle Anfrage nicht lokalisieren." msgid "Welcome" msgstr "Willkommen" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Wenn das Problem weiter besteht, kannst du diesen Fehler den Systemadministratoren melden." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Hosted Shibboleth 1.3 Service Provider Metadaten (automatisch generiert)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Wir konnten die Statusinformationen für die aktuelle Anfrage nicht lokalisieren." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Sie scheinen Cookies in Ihrem Browser deaktiviert zu haben. Bitte überprüfen Sie die Einstellungen in Ihrem Browser und versuchen Sie es erneut." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP Beispiel - Anmelden über ihren Shibboleth IdP testen" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Statusinformationen verloren" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Hosted Shibboleth 1.3 Identity Provider Metadaten (automatisch generiert)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Diesen Fehler melden" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/el/LC_MESSAGES/core.po b/modules/core/locales/el/LC_MESSAGES/core.po index 77366936e3..c56abcb6c3 100644 --- a/modules/core/locales/el/LC_MESSAGES/core.po +++ b/modules/core/locales/el/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Επανάληψη σύνδεσης" - -msgid "Too short interval between single sign on events." -msgstr "Σύντομο χρονικό διάστημα μεταξύ διαδοχικών συνδέσεων." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Έχουν περάσει μόλις λίγα δευτερόλεπτα από την τελευταία φορά που συνδεθήκατε σε αυτόν τον πάροχο υπηρεσιών, γεγονός που μπορεί να υποδηλώνει πρόβλημα με τον συγκεκριμένο πάροχο." - -msgid "Missing cookie" -msgstr "Πρόβλημα λειτουργίας cookie" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Δοκιμάστε ξανά" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Ενδέχεται τα cookie του προγράμματος περιήγησής σας να έχουν απενεργοποιηθεί. Παρακαλούμε ελέγξτε τις σχετικές ρυθμίσεις και και δοκιμάστε ξανά." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Κλείστε το πρόγραμμα περιήγησης ιστού (web browser) και προσπαθήστε ξανά" +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Η λειτουργία cookie είναι απενεργοποιημένη στο πρόγραμμα περιήγησης ιστού." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Επιστρέψτε στην προηγούμενη σελίδα και προσπαθήστε ξανά." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Μεταδεδομένα φιλοξενούμενου Παρόχου Ταυτότητας Shibboleth 1.3 (παράγονται αυτόματα)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Μεταδεδομένα φιλοξενούμενου Παρόχου Υπηρεσιών Shibboleth 1.3 (παράγονται αυτόματα)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Αν το πρόβλημα εξακολουθεί να υφίσταται, μπορείτε να το αναφέρετε στους διαχειριστές του συστήματος." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Εάν είστε διαχειριστής της υπηρεσίας ταυτοποίησης και εξουσιοδότησης, τότε αντιμετωπίζετε κάποιο πρόβλημα με τη διαμόρφωση των μεταδεδομένων. Βεβαιωθείτε ότι τα μεταδεδομένα έχουν ρυθμιστεί σωστά τόσο στον πάροχο ταυτότητας όσο και στον πάροχο υπηρεσιών." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Αν λάβατε αυτό το σφάλμα ακολουθώντας έναν σύνδεσμο σε κάποιον ιστότοπο, θα πρέπει να το αναφέρετε στον ιδιοκτήτη του εν λόγω ιστότοπου." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Πρόβλημα λειτουργίας cookie" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Ανοίξατε το πρόγραμμα περιήγησης ιστού και επαναφέρατε καρτέλες προηγούμενης συνεδρίας." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Αναφορά σφάλματος" + +msgid "Retry" +msgstr "Δοκιμάστε ξανά" + +msgid "Retry login" +msgstr "Επανάληψη σύνδεσης" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Παράδειγμα Παρόχου Υπηρεσιών Shibboleth 1.3 - δοκιμή εισόδου μέσω Παρόχου Ταυτότητας Shibboleth 1.3" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Δεν βρέθηκαν πληροφορίες κατάστασης" + msgid "Suggestions for resolving this problem:" msgstr "Προτάσεις για την επίλυση αυτού του προβλήματος:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Αυτό το σφάλμα μπορεί να προκύψει, εάν:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Αυτό υποδεικνύει πρόβλημα με τις ρυθμίσεις είτε του παρόχου υπηρεσιών είτε του παρόχου ταυτότητας." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Σύντομο χρονικό διάστημα μεταξύ διαδοχικών συνδέσεων." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Μεταβήκατε πίσω και εμπρός στο ιστορικό του προγράμματος περιήγησης ιστού." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Εάν είστε διαχειριστής της υπηρεσίας ταυτοποίησης και εξουσιοδότησης, τότε αντιμετωπίζετε κάποιο πρόβλημα με τη διαμόρφωση των μεταδεδομένων. Βεβαιωθείτε ότι τα μεταδεδομένα έχουν ρυθμιστεί σωστά τόσο στον πάροχο ταυτότητας όσο και στον πάροχο υπηρεσιών." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Αν λάβατε αυτό το σφάλμα ακολουθώντας έναν σύνδεσμο σε κάποιον ιστότοπο, θα πρέπει να το αναφέρετε στον ιδιοκτήτη του εν λόγω ιστότοπου." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Έχουν περάσει μόλις λίγα δευτερόλεπτα από την τελευταία φορά που συνδεθήκατε σε αυτόν τον πάροχο υπηρεσιών, γεγονός που μπορεί να υποδηλώνει πρόβλημα με τον συγκεκριμένο πάροχο." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Αυτό υποδεικνύει πρόβλημα με τις ρυθμίσεις είτε του παρόχου υπηρεσιών είτε του παρόχου ταυτότητας." +msgid "We were unable to locate the state information for the current request." +msgstr "Δεν ήταν δυνατό να εντοπιστούν πληροφορίες κατάστασης για το τρέχον αίτημα." msgid "Welcome" msgstr "Καλώς ορίσατε" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Αν το πρόβλημα εξακολουθεί να υφίσταται, μπορείτε να το αναφέρετε στους διαχειριστές του συστήματος." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Μεταδεδομένα φιλοξενούμενου Παρόχου Υπηρεσιών Shibboleth 1.3 (παράγονται αυτόματα)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Δεν ήταν δυνατό να εντοπιστούν πληροφορίες κατάστασης για το τρέχον αίτημα." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Ενδέχεται τα cookie του προγράμματος περιήγησής σας να έχουν απενεργοποιηθεί. Παρακαλούμε ελέγξτε τις σχετικές ρυθμίσεις και και δοκιμάστε ξανά." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Παράδειγμα Παρόχου Υπηρεσιών Shibboleth 1.3 - δοκιμή εισόδου μέσω Παρόχου Ταυτότητας Shibboleth 1.3" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Δεν βρέθηκαν πληροφορίες κατάστασης" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Μεταδεδομένα φιλοξενούμενου Παρόχου Ταυτότητας Shibboleth 1.3 (παράγονται αυτόματα)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Αναφορά σφάλματος" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/en/LC_MESSAGES/core.po b/modules/core/locales/en/LC_MESSAGES/core.po index 85a48ded32..af1898ae85 100644 --- a/modules/core/locales/en/LC_MESSAGES/core.po +++ b/modules/core/locales/en/LC_MESSAGES/core.po @@ -1,181 +1,209 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Error report sent" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." msgstr "" -msgid "The error report has been sent to the administrators." +msgid "An error has occurred" msgstr "" -msgid "Incorrect Attributes" +msgid "Check that the link you used to access the web site is correct." msgstr "" -msgid "Logout" -msgstr "" +msgid "Close the web browser, and try again." +msgstr "Close the web browser, and try again." -msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgid "Continue" msgstr "" -msgid "The problematic attribute(s) are:" +msgid "Cookies may be disabled in the web browser." +msgstr "Cookies may be disabled in the web browser." + +msgid "Do you want to logout from all the services above?" msgstr "" -msgid "got %got% values, want %want%" +msgid "Enter your username and password" msgstr "" -msgid "Logging out..." +msgid "Error report sent" msgstr "" -msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgid "Go back to the previous page and try again." +msgstr "Go back to the previous page and try again." + +msgid "Help! I don't remember my password." msgstr "" -msgid "Retry login" -msgstr "Retry login" +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgid "SimpleSAMLphp" +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "If this problem persists, you can report it to the system administrators." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." msgstr "" -msgid "Too short interval between single sign on events." -msgstr "Too short interval between single sign on events." +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" msgstr "" -msgid "Enter your username and password" +msgid "Incorrect Attributes" msgstr "" -msgid "Help! I don't remember my password." +msgid "Logging out..." msgstr "" msgid "Login" msgstr "" -msgid "Organization" +msgid "Logout" msgstr "" -msgid "Password" +msgid "Missing cookie" +msgstr "Missing cookie" + +msgid "No" msgstr "" -msgid "Processing..." +msgid "No, only %SP%" msgstr "" -msgid "Remember me" +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." msgstr "" -msgid "Remember my organization" +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "Opened the web browser with tabs saved from the previous session." + +msgid "Organization" msgstr "" -msgid "Remember my username" +msgid "Password" msgstr "" -msgid "Username" +msgid "Processing..." msgstr "" -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgid "Remember me" msgstr "" -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgid "Remember my organization" msgstr "" -msgid "Missing cookie" -msgstr "Missing cookie" +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Report this error" msgid "Retry" msgstr "Retry" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." - -msgid "Check that the link you used to access the web site is correct." -msgstr "" - -msgid "Close the web browser, and try again." -msgstr "Close the web browser, and try again." +msgid "Retry login" +msgstr "Retry login" -msgid "Cookies may be disabled in the web browser." -msgstr "Cookies may be disabled in the web browser." +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgid "Go back to the previous page and try again." -msgstr "Go back to the previous page and try again." +msgid "SimpleSAMLphp" +msgstr "" -msgid "Opened the web browser with tabs saved from the previous session." -msgstr "Opened the web browser with tabs saved from the previous session." +msgid "State information lost" +msgstr "State information lost" msgid "Suggestions for resolving this problem:" msgstr "Suggestions for resolving this problem:" -msgid "The link used to get here was bad, perhaps a bookmark." +msgid "The authentication procesd has failed." msgstr "" -msgid "This error may be caused by:" -msgstr "This error may be caused by:" - -msgid "Using the back and forward buttons in the web browser." -msgstr "Using the back and forward buttons in the web browser." - -msgid "Continue" +msgid "The authorization procesd has failed." msgstr "" -msgid "Do you want to logout from all the services above?" +msgid "The error report has been sent to the administrators." msgstr "" -msgid "No" +msgid "The identification procesd has failed." msgstr "" -msgid "No, only %SP%" +msgid "The link used to get here was bad, perhaps a bookmark." msgstr "" -msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgid "The problematic attribute(s) are:" msgstr "" -msgid "Yes, all services" +msgid "There was an issue while signing you in." msgstr "" -msgid "You are also logged in on these services:" +msgid "This error may be caused by:" +msgstr "This error may be caused by:" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "This is most likely a configuration problem on either the service provider or identity provider." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." msgstr "" -msgid "You are now successfully logged out from %SP%." +msgid "Too short interval between single sign on events." +msgstr "Too short interval between single sign on events." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." msgstr "" -msgid "logout is not supported" +msgid "Username" msgstr "" -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgid "Using the back and forward buttons in the web browser." +msgstr "Using the back and forward buttons in the web browser." -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "This is most likely a configuration problem on either the service provider or identity provider." +msgid "We were unable to locate the state information for the current request." +msgstr "We were unable to locate the state information for the current request." msgid "Welcome" msgstr "Welcome" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "If this problem persists, you can report it to the system administrators." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "We were unable to locate the state information for the current request." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." -msgstr "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgid "You are also logged in on these services:" +msgstr "" -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "State information lost" -msgstr "State information lost" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." -msgid "Report this error" -msgstr "Report this error" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/en_LS/LC_MESSAGES/core.po b/modules/core/locales/en_LS/LC_MESSAGES/core.po new file mode 100644 index 0000000000..1b93fd02e4 --- /dev/null +++ b/modules/core/locales/en_LS/LC_MESSAGES/core.po @@ -0,0 +1,201 @@ +msgid "" +msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: en_LS\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" +"X-Domain: core\n" + +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" + +msgid "An error has occurred" +msgstr "" + +msgid "Check that the link you used to access the web site is correct." +msgstr "" + +msgid "Close the web browser, and try again." +msgstr "Kwala sebadi sa webe, ebe o leka hape." + +msgid "Continue" +msgstr "" + +msgid "Cookies may be disabled in the web browser." +msgstr "Dikhuki di ka nna tsa kwalwa sebading sa webe." + +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + +msgid "Go back to the previous page and try again." +msgstr "Kgutlela leqepheng le fetileng ebe o leka hape." + +msgid "Help! I don't remember my password." +msgstr "" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Haeba bothata bona bo phehella, o ka bo tlaleha ho batsamaisi ba sistimi." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Haeba o mohlahisi ya sebedisang tharollo ya ho saena hang, o na le bothata ka phetolo ya metadata. Netefatsa hore metadata e hlophiswe ka ho nepahala ho bobedi mofani wa boitsebiso le mofani wa tshebeletso." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Haeba o le mosebedisi ya fumaneng phoso ena kamora ho latela lehokela le setsing, o tlameha ho tlaleha phoso ena ho monga setsi." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "Makgabane a Fosahetseng" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Khukhi e siyo" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "E le nngwe kapa ho feta ya makgabane a fanweng ke wena ke mofani wa boitsebiso wa hao ha e na lenane le nepahetseng la dipalo." + +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "O butse sebadi sa webe ka di-tab tse bolokilweng sesheneng e fetileng." + +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Tlaleha phoso ena" + +msgid "Retry" +msgstr "Khukhi e siyo" + +msgid "Retry login" +msgstr "" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Tlhahisoleseding ya provense e lahlehile" + +msgid "Suggestions for resolving this problem:" +msgstr "Ditlhahiso bakeng sa ho rarolla bothata bona:" + +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "Makgabane a nang le mathata ke:" + +msgid "There was an issue while signing you in." +msgstr "" + +msgid "This error may be caused by:" +msgstr "Phoso ena e ka bakwa ke:" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Bona ke bothata bo ka kgonahalang ka ho fetisisa ho mofani wa tshebeletso kapa mofani wa tshebeletso." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + +msgid "Using the back and forward buttons in the web browser." +msgstr "Ho sebedisa dikonopo tsa pele le morao sebading sa webo." + +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "" + +msgid "We were unable to locate the state information for the current request." +msgstr "Ha re kgone ho fumana tlhahisoleseding ka provenseng bakeng sa kopo ya ha jwale." + +msgid "Welcome" +msgstr "" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" + +msgid "Yes, all services" +msgstr "" + +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "O bonahala o kwetse dikhukhi sebading sa hao. Ka kopo hlahloba disetting sebading sa hao." + +msgid "You are also logged in on these services:" +msgstr "" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" + +msgid "You are now successfully logged out from %SP%." +msgstr "" + +#, python-format +msgid "got %GOT% values, want %WANT%" +msgstr "o fumane dipalo tse %GOT%, o batla tse %WANT%" + +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/es/LC_MESSAGES/core.po b/modules/core/locales/es/LC_MESSAGES/core.po index 66e026f1de..3274a0e0fe 100644 --- a/modules/core/locales/es/LC_MESSAGES/core.po +++ b/modules/core/locales/es/LC_MESSAGES/core.po @@ -1,79 +1,209 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Reintente autenticación" - -msgid "Too short interval between single sign on events." -msgstr "Intervalo de tiempo muy corto entre eventos de sesión única." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Se ha detectado que han transcurrido solo unos segundos desde que fue autenticado por última vez en este servicio, por lo que se asumirá que existe un problema con este SP." - -msgid "Missing cookie" -msgstr "No se encuentra cookie" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Reintentar" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Al parecer ha deshabilitado las cookies de su navegador. Por favor revise las preferencias de su navegador y reintente." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Cierre el navegador y pruebe de nuevo" +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Las cookies pueden estar deshabilitadas en el navegador" +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Regrese a la página anterior y pruebe de nuevo" +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Metadatos alojados del IdP Shibooleth 1.3 (generados automáticamente)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Metadatos alojados del SP Shibooleth 1.3 (generados automáticamente)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Si el problema persiste, puede reportarlo a los administradores del sistema" + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Si usted es un desarrollador que está desplegando una solución de inicio único, tiene un problema con la configuración de sus metadatos. Verifique que los metadatos están configurados correctamente en el proveedor de identidad y en el proveedor de servicios" + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Si usted es un usuario que recibe este error luego de seguir un vínculo en un sitio, debe reportar el error al dueño del sitio." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "No se encuentra cookie" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Abrió su navegador web con pestañas guardadas de la sesión previa." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Informar de este error" + +msgid "Retry" +msgstr "Reintentar" + +msgid "Retry login" +msgstr "Reintente autenticación" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Ejemplo de SP empleando Shibboleth 1.3 - Prueba a acceder empleando tu IdP Shibboleth" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Información de estado perdida" + msgid "Suggestions for resolving this problem:" msgstr "Sugerencias para resolver este problema" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Este error puede ser causado por" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Esto es posiblemente un problema de configuración en el proveedor de servicios o en el proveedor de identidad." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Intervalo de tiempo muy corto entre eventos de sesión única." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Usando los botones atrás y adelante de su navegador web." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Si usted es un desarrollador que está desplegando una solución de inicio único, tiene un problema con la configuración de sus metadatos. Verifique que los metadatos están configurados correctamente en el proveedor de identidad y en el proveedor de servicios" - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Si usted es un usuario que recibe este error luego de seguir un vínculo en un sitio, debe reportar el error al dueño del sitio." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Se ha detectado que han transcurrido solo unos segundos desde que fue autenticado por última vez en este servicio, por lo que se asumirá que existe un problema con este SP." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Esto es posiblemente un problema de configuración en el proveedor de servicios o en el proveedor de identidad." +msgid "We were unable to locate the state information for the current request." +msgstr "No podemos encontrar la información de estado para la solicitud actual" msgid "Welcome" msgstr "Bienvenido" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Si el problema persiste, puede reportarlo a los administradores del sistema" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Metadatos alojados del SP Shibooleth 1.3 (generados automáticamente)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "No podemos encontrar la información de estado para la solicitud actual" +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Al parecer ha deshabilitado las cookies de su navegador. Por favor revise las preferencias de su navegador y reintente." -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." -msgstr "Su instalación de SimpleSAMLphp está desactualizada. Por favor, actualice a la última versión lo antes posible." +msgid "You are also logged in on these services:" +msgstr "" -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Ejemplo de SP empleando Shibboleth 1.3 - Prueba a acceder empleando tu IdP Shibboleth" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "State information lost" -msgstr "Información de estado perdida" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Metadatos alojados del IdP Shibooleth 1.3 (generados automáticamente)" +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "Su instalación de SimpleSAMLphp está desactualizada. Por favor, actualice a la última versión lo antes posible." -msgid "Report this error" -msgstr "Informar de este error" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/et/LC_MESSAGES/core.po b/modules/core/locales/et/LC_MESSAGES/core.po index adae1a3ae5..007083a0a5 100644 --- a/modules/core/locales/et/LC_MESSAGES/core.po +++ b/modules/core/locales/et/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Proovi uuesti logida" - -msgid "Too short interval between single sign on events." -msgstr "Liiga lühike intervall ühekordse sisselogimise sündmuste vahel." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Tuvastasime, et sinu viimasest autentimisest selle teenusepakkujaga on möödunud ainult mõned sekundid ja seepärast arvame, et sellega teenusepakkujaga on probleeme." - -msgid "Missing cookie" -msgstr "Küpsis puudub" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Proovi uuesti" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Paistab, et sinu brauseris on küpsised keelatud. Palun kontrolli brauseri seadistusi ja proovi seejärel uuesti." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Sulge brauser ja proovi uuesti." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "küpsiste keelamisest brauseris" +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Mine tagasi eelmisele leheküljele ja proovi uuesti." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Hostitud Shibboleth 2.0 identiteedipakkuja metaandmed (automaatselt genereeritud) " + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Hostitud Shibboleth 1.3 identiteedipakkuja metaandmed (automaatselt genereeritud) " + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Kui probleem ei kao, siis teavita sellest süsteemi administraatoreid." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Kui sa oled arendaja, kes juurutab ühekordse sisselogimise lahendust, siis on probleemi põhjuseks metaandmete seadistused. Kontrolli, et metaandmed oleks seadistatud korrektselt nii identiteedipakkuja kui teenusepakkuja poolel." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Kui sa oled kasutaja, kes sai selle veateate veebilehel linki klõpsates, siis peaksid sellest tõrkest veebilehe omanikku teavitama." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Küpsis puudub" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "brauseri avamisest eelmisel kasutuskorral salvestatud kaartidega" +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Teavita sellest tõrkest" + +msgid "Retry" +msgstr "Proovi uuesti" + +msgid "Retry login" +msgstr "Proovi uuesti logida" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP näide - sisselogimine sinu Shib IdP kaudu" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Olekuinfo on kadunud" + msgid "Suggestions for resolving this problem:" msgstr "Nõuanded selle probleemi lahendamiseks:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "See tõrge võib olla põhjustatud:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Tõenäoliselt on tegemist probleemiga kas teenusepakkuja või identiteedipakkuja seadistustes." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Liiga lühike intervall ühekordse sisselogimise sündmuste vahel." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "brauseri edasi-tagasi nuppude kasutamisest" -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Kui sa oled arendaja, kes juurutab ühekordse sisselogimise lahendust, siis on probleemi põhjuseks metaandmete seadistused. Kontrolli, et metaandmed oleks seadistatud korrektselt nii identiteedipakkuja kui teenusepakkuja poolel." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Kui sa oled kasutaja, kes sai selle veateate veebilehel linki klõpsates, siis peaksid sellest tõrkest veebilehe omanikku teavitama." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Tuvastasime, et sinu viimasest autentimisest selle teenusepakkujaga on möödunud ainult mõned sekundid ja seepärast arvame, et sellega teenusepakkujaga on probleeme." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Tõenäoliselt on tegemist probleemiga kas teenusepakkuja või identiteedipakkuja seadistustes." +msgid "We were unable to locate the state information for the current request." +msgstr "Aktiivse päringu olekuinfo leidmine ei õnnestunud." msgid "Welcome" msgstr "Tere tulemast" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Kui probleem ei kao, siis teavita sellest süsteemi administraatoreid." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Hostitud Shibboleth 1.3 identiteedipakkuja metaandmed (automaatselt genereeritud) " +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Aktiivse päringu olekuinfo leidmine ei õnnestunud." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Paistab, et sinu brauseris on küpsised keelatud. Palun kontrolli brauseri seadistusi ja proovi seejärel uuesti." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP näide - sisselogimine sinu Shib IdP kaudu" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Olekuinfo on kadunud" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Hostitud Shibboleth 2.0 identiteedipakkuja metaandmed (automaatselt genereeritud) " +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Teavita sellest tõrkest" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/eu/LC_MESSAGES/core.po b/modules/core/locales/eu/LC_MESSAGES/core.po index a1ae5eb9fc..549943c3da 100644 --- a/modules/core/locales/eu/LC_MESSAGES/core.po +++ b/modules/core/locales/eu/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Saiatu berriro kautotzen" - -msgid "Too short interval between single sign on events." -msgstr "Denbora tarte oso motza saio bakarreko gertaeren artean." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Azken aldiz zerbitzu honetan kautotu zinenetik segundu gutxi batzu besterik ez direla igaro antzeman dugu, beraz ZH honekin arazoren bat dagoela hartuko dugu. " - -msgid "Missing cookie" -msgstr "Cookie-a falta da" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Saiatu berriro" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Badirudi zure nabigatzaileko cookie-ak desgaitu dituzula. Mesedez, berrikusi zure nabigatzaileko lehentasunak eta saiatu berriro." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Nabigatzailea itxi eta saiatu berriro" +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Cookie-ak desgaituta egon litezke nabigatzailean." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Itzul zaitez aurreko orrira eta saiatu berriro" +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "IdP Shibooleth 1.3ren ostatatutako metadatuak (automatikoki sortuak)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "SP Shibooleth 1.3ren ostatatutako metadatuak (automatikoki sortuak)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Arazoak bere horretan badirau, sistemaren administratzaileei berri eman diezaiekezu." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Hasiera-bakarreko sistema bat zabaltzen ari zaren garatzaile bat bazara, arazo bat duzu zure metadatuen kongigurazioarekin. Egiazta ezazu metadatuak zuzen konfiguratuak daudela identitate hornitzailean eta zerbitzu hornitzailean." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Gune bateko lotura bat jarraituz errore hau jasotzen duen erabiltzaile bat bazara, guneko jabeari eman behar diozu errorearen berri." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Cookie-a falta da" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Zure web nabigatzailea aurreko saiotik gordeta zeuden fitxekin ireki duzu." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Errore honen berri eman" + +msgid "Retry" +msgstr "Saiatu berriro" + +msgid "Retry login" +msgstr "Saiatu berriro kautotzen" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "SPren adibidea Shibboleth 1.3 erabiliz - saikera zure IdP Shibboleth erabiliz sartzen" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Egoeraren informazioa galdu da" + msgid "Suggestions for resolving this problem:" msgstr "Arazo hau konpontzeko iradokizunak:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Errore hau honek eragin dezake:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Hau ziurrenik konfigurazio arazo bat izango da zerbitzu hornitzailean edota identitate hornitzailean. " + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Denbora tarte oso motza saio bakarreko gertaeren artean." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Zure web nabigatzaileko atzera eta aurrera botoiak erabiltzen." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Hasiera-bakarreko sistema bat zabaltzen ari zaren garatzaile bat bazara, arazo bat duzu zure metadatuen kongigurazioarekin. Egiazta ezazu metadatuak zuzen konfiguratuak daudela identitate hornitzailean eta zerbitzu hornitzailean." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Gune bateko lotura bat jarraituz errore hau jasotzen duen erabiltzaile bat bazara, guneko jabeari eman behar diozu errorearen berri." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Azken aldiz zerbitzu honetan kautotu zinenetik segundu gutxi batzu besterik ez direla igaro antzeman dugu, beraz ZH honekin arazoren bat dagoela hartuko dugu. " -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Hau ziurrenik konfigurazio arazo bat izango da zerbitzu hornitzailean edota identitate hornitzailean. " +msgid "We were unable to locate the state information for the current request." +msgstr "Ez dugu aurkitu egoeraren informaziorik eskaera honentzat." msgid "Welcome" msgstr "Ongi etorri" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Arazoak bere horretan badirau, sistemaren administratzaileei berri eman diezaiekezu." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "SP Shibooleth 1.3ren ostatatutako metadatuak (automatikoki sortuak)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Ez dugu aurkitu egoeraren informaziorik eskaera honentzat." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Badirudi zure nabigatzaileko cookie-ak desgaitu dituzula. Mesedez, berrikusi zure nabigatzaileko lehentasunak eta saiatu berriro." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "SPren adibidea Shibboleth 1.3 erabiliz - saikera zure IdP Shibboleth erabiliz sartzen" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Egoeraren informazioa galdu da" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "IdP Shibooleth 1.3ren ostatatutako metadatuak (automatikoki sortuak)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Errore honen berri eman" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/fi/LC_MESSAGES/core.po b/modules/core/locales/fi/LC_MESSAGES/core.po index 6e3f0994a3..962a420d6c 100644 --- a/modules/core/locales/fi/LC_MESSAGES/core.po +++ b/modules/core/locales/fi/LC_MESSAGES/core.po @@ -1,25 +1,197 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" + +msgid "An error has occurred" +msgstr "" + +msgid "Check that the link you used to access the web site is correct." +msgstr "" + +msgid "Close the web browser, and try again." +msgstr "" + +msgid "Continue" +msgstr "" + +msgid "Cookies may be disabled in the web browser." +msgstr "" + +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + +msgid "Go back to the previous page and try again." +msgstr "" + +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Isännöidyn Shibboleth 1.3 identiteetintarjoajan Metadata (automaattisesti luotu)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Isännöidyn Shibboleth 1.3 palveluntarjoajan Metadata (automaattisesti luotu)" + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "" + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + msgid "Missing cookie" msgstr "Puuttuva eväste" +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "" + +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + msgid "Retry" msgstr "Uudestaan" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Näyttää, että olet kieltänyt evästeiden käytön selaimessasi. Ole hyvä ja salli evästeet selaimestasi ja yritä uudelleen." +msgid "Retry login" +msgstr "" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP esimerkki - testikirjautuminen Shib IdP:si kautta" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "Suggestions for resolving this problem:" +msgstr "" + +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + +msgid "This error may be caused by:" +msgstr "" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "" + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + +msgid "Using the back and forward buttons in the web browser." +msgstr "" + +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "" msgid "Welcome" msgstr "Tervetuloa" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Isännöidyn Shibboleth 1.3 palveluntarjoajan Metadata (automaattisesti luotu)" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP esimerkki - testikirjautuminen Shib IdP:si kautta" +msgid "Yes, all services" +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Isännöidyn Shibboleth 1.3 identiteetintarjoajan Metadata (automaattisesti luotu)" +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Näyttää, että olet kieltänyt evästeiden käytön selaimessasi. Ole hyvä ja salli evästeet selaimestasi ja yritä uudelleen." + +msgid "You are also logged in on these services:" +msgstr "" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" + +msgid "You are now successfully logged out from %SP%." +msgstr "" + +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/fr/LC_MESSAGES/core.po b/modules/core/locales/fr/LC_MESSAGES/core.po index 12b54d8ba6..3c6db41ac6 100644 --- a/modules/core/locales/fr/LC_MESSAGES/core.po +++ b/modules/core/locales/fr/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Ré-essayez de vous connecter" - -msgid "Too short interval between single sign on events." -msgstr "Connexions uniques trop proches dans le temps." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Il ne s'est écoulé que quelques secondes depuis votre authentification précédente, ce qui est la marque d'un dysfonctionnement de ce SP." - -msgid "Missing cookie" -msgstr "Cookie introuvable" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Ré-essayer" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Il semble que votre navigateur refuse les cookies. Merci de vérifier les réglages de votre navigateur, puis de ré-essayer." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Fermez le navigateur, essayez à nouveau." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Les cookies sont peut-être déactivés dans le navigateur." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Retournez à la page précédente et réessayez." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Métadonnées du fournisseur d'identités Shibboleth 1.3 (générées automatiquement)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Métadonnées du fournisseur de service Shibboleth 1.3 (générées automatiquement)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Si ce problème persiste, vous pouvez le remonter vers l'administrateur système." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Si vous êtes un développeur qui déploie une solution de single sign-on, vous avez un problème avec la configuration des métadonnées. Vérifiez que ces métadonnées sont correctement configurées sur le fournisseur d'identité et le fournisseur de service " + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Si vous êtes un usager qui reçoit cette erreur après avoir suivi un lien sur un site, vous devriez remonter cette erreur au propriétaire de ce site." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Cookie introuvable" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Ouvert le navigateur avec des onglets sauvegardés lors de la session précédente." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Remontez cette erreur" + +msgid "Retry" +msgstr "Ré-essayer" + +msgid "Retry login" +msgstr "Ré-essayez de vous connecter" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "SP Shibboleth 1.3 d'exemple - tester l'identification via votre IdP" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Information d'état perdue" + msgid "Suggestions for resolving this problem:" msgstr "Suggestions pour résoudre ce problème :" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Cette erreur peut être causée par :" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Cela ressemble à un problème de configuration soit du fournisseur de service ou du fournisseur d'identité." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Connexions uniques trop proches dans le temps." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Utilisation des boutons avance et retour dans le navigateur." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Si vous êtes un développeur qui déploie une solution de single sign-on, vous avez un problème avec la configuration des métadonnées. Vérifiez que ces métadonnées sont correctement configurées sur le fournisseur d'identité et le fournisseur de service " - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Si vous êtes un usager qui reçoit cette erreur après avoir suivi un lien sur un site, vous devriez remonter cette erreur au propriétaire de ce site." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Il ne s'est écoulé que quelques secondes depuis votre authentification précédente, ce qui est la marque d'un dysfonctionnement de ce SP." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Cela ressemble à un problème de configuration soit du fournisseur de service ou du fournisseur d'identité." +msgid "We were unable to locate the state information for the current request." +msgstr "Nous ne pouvons pas trouver l'information d'état pour la demande courante." msgid "Welcome" msgstr "Bienvenue" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Si ce problème persiste, vous pouvez le remonter vers l'administrateur système." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Métadonnées du fournisseur de service Shibboleth 1.3 (générées automatiquement)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Nous ne pouvons pas trouver l'information d'état pour la demande courante." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Il semble que votre navigateur refuse les cookies. Merci de vérifier les réglages de votre navigateur, puis de ré-essayer." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "SP Shibboleth 1.3 d'exemple - tester l'identification via votre IdP" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Information d'état perdue" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Métadonnées du fournisseur d'identités Shibboleth 1.3 (générées automatiquement)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Remontez cette erreur" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/he/LC_MESSAGES/core.po b/modules/core/locales/he/LC_MESSAGES/core.po index d244fb9b32..0915b21cb7 100644 --- a/modules/core/locales/he/LC_MESSAGES/core.po +++ b/modules/core/locales/he/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "נסה שוב להתחבר" - -msgid "Too short interval between single sign on events." -msgstr "פרק זמן קצר מידי בין ארועי כניסה יחידה." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "גילינו שעברו רק מספר שניות מאז שהיזדהת בפעם האחרונה עם ספק השרות הזה, ולכן אנחנו מניחים שישנה בעייה עם ס\"הש." - -msgid "Missing cookie" -msgstr "חסרה עוגייה" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "נסה שנית" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "נראה שכיבית את העוגיות בדפדפן שלךץ אנא בדוק את ההגדרות בדפדפן שלך, ונסה שנית. " +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "סגור את הדפדפן, ונסה שוב." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "תמיכה בעוגיות מבוטלת בדפדפן" +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "חזור לדף הקודם ונסה שוב." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "מטא-הנתונים של ספק השזהויות מסוג Shibboleth 1.3 המאורח (נוצר אוטומטית)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "מטא-הנתונים של ספק השירותים מסוג Shibboleth 1.3 המאורח (נוצר אוטומטית)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "אם הבעייה ממשיכה, אתה יכול לדווח עליה למנהל המערכת." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "אם אתה מפתח שפורש פיתרון התחברות יחידה, יש לך בעייה עם הגדרות המטא-מידע. בדוק שהמטא-מידע מוגדר נכון בספקי הזהות והשרות." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "אם אתה משתמש שקיבל שגיאה זו לאחר לחיצה על קישור באתר, כדי שתדווח על השגיאה לבעלי האתר." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "חסרה עוגייה" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "פתיחת הדפדפן עם לשוניות שנשמרו משימוש הקודם." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "דווח על השגיאה הנוכחית" + +msgid "Retry" +msgstr "נסה שנית" + +msgid "Retry login" +msgstr "נסה שוב להתחבר" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "דוגמא לס\"ש מסוג Shibboleth 1.3 - בוחן כניסה למערכת דרך ס\"ז מסוג - Shibboleth" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "מידע המצב אבד" + msgid "Suggestions for resolving this problem:" msgstr "הצעות לפתרון הבעייה הנוכחית:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "יכול להיות שהשגיאה נגרמה על-ידי:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "זו, ככל הנראה, בעייה בהגדרות של ספק הזהות או ספק השירות." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "פרק זמן קצר מידי בין ארועי כניסה יחידה." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "שימוש בכפתורי הבא והקודם בדפדפן." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "אם אתה מפתח שפורש פיתרון התחברות יחידה, יש לך בעייה עם הגדרות המטא-מידע. בדוק שהמטא-מידע מוגדר נכון בספקי הזהות והשרות." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "אם אתה משתמש שקיבל שגיאה זו לאחר לחיצה על קישור באתר, כדי שתדווח על השגיאה לבעלי האתר." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "גילינו שעברו רק מספר שניות מאז שהיזדהת בפעם האחרונה עם ספק השרות הזה, ולכן אנחנו מניחים שישנה בעייה עם ס\"הש." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "זו, ככל הנראה, בעייה בהגדרות של ספק הזהות או ספק השירות." +msgid "We were unable to locate the state information for the current request." +msgstr "לא הצלחנו לאתר את מידע המצב לבקשה הנוכחית." msgid "Welcome" msgstr "ברוך-הבא" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "אם הבעייה ממשיכה, אתה יכול לדווח עליה למנהל המערכת." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "מטא-הנתונים של ספק השירותים מסוג Shibboleth 1.3 המאורח (נוצר אוטומטית)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "לא הצלחנו לאתר את מידע המצב לבקשה הנוכחית." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "נראה שכיבית את העוגיות בדפדפן שלךץ אנא בדוק את ההגדרות בדפדפן שלך, ונסה שנית. " -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "דוגמא לס\"ש מסוג Shibboleth 1.3 - בוחן כניסה למערכת דרך ס\"ז מסוג - Shibboleth" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "מידע המצב אבד" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "מטא-הנתונים של ספק השזהויות מסוג Shibboleth 1.3 המאורח (נוצר אוטומטית)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "דווח על השגיאה הנוכחית" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/hr/LC_MESSAGES/core.po b/modules/core/locales/hr/LC_MESSAGES/core.po index 7a13da9d74..02292cf81c 100644 --- a/modules/core/locales/hr/LC_MESSAGES/core.po +++ b/modules/core/locales/hr/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Pokušaj se prijaviti ponovo" - -msgid "Too short interval between single sign on events." -msgstr "Prekratak interval između uzastopnih SSO prijava." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Sustav je utvrdio da je prošlo tek nekoliko sekundi otkad ste se zadnji put autentificirali za pristup ovoj aplikaciji te stoga pretpostavljamo da se javio problem kod davatelja usluge." - -msgid "Missing cookie" -msgstr "Nedostaje kolačić (cookie)" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Pokušaj ponovo" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Izgleda da ste onemogućili kolačiće (cookies) u vašem web pregledniku. Molimo provjerite postavke vašeg web preglednika i pokušajte ponovo." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Zatvorite web preglednik i pokušajte ponovno." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Moguće da je podrška za kolačiće (\"cookies\") isključena u web pregledniku." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Vratite se na prethodnu stranicu i pokušajte ponovno." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Metapodaci za lokalni Shibboleth 1.3 IdP (automatski generirani)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Metapodaci za lokalni Shibboleth 1.3 SP (automatski generirani)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Ako se ova greška bude i dalje pojavljivala, možete ju prijaviti administratorima." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Ako ste programer koji postavlja sustav jedinstvene autentifikacije (Single Sign-On sustav), tada imate problema s konfiguracijom metapodataka. Provjerite jesu li metapodaci ispravno uneseni i na strani davatelja usluge i u konfiguraciji autentifikacijskog servisa." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Ako se ova greška pojavila nakon što ste slijedili poveznicu na nekoj web stranici, onda biste grešku trebali prijaviti vlasniku navedene stranice." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Nedostaje kolačić (cookie)" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Otvaranjem web preglednika sa spremljenim stranicama od prethodne sjednice." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Prijavite ovu grešku" + +msgid "Retry" +msgstr "Pokušaj ponovo" + +msgid "Retry login" +msgstr "Pokušaj se prijaviti ponovo" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP primjer - isprobajte autentifikaciju kroz vaš Shib IdP" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Podatak o stanju je izgubljen" + msgid "Suggestions for resolving this problem:" msgstr "Preporuke za rješavanje ovog problema:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Ova greška može biti uzrokovana:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Najvjerojatnije je problem u konfiguraciji na strani davatelja usluge ili u konfiguraciji autentifikacijskog servisa." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Prekratak interval između uzastopnih SSO prijava." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Korištenjem gumba za prethodnu (back) i sljedeću (forward) stranicu u web pregledniku." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Ako ste programer koji postavlja sustav jedinstvene autentifikacije (Single Sign-On sustav), tada imate problema s konfiguracijom metapodataka. Provjerite jesu li metapodaci ispravno uneseni i na strani davatelja usluge i u konfiguraciji autentifikacijskog servisa." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Ako se ova greška pojavila nakon što ste slijedili poveznicu na nekoj web stranici, onda biste grešku trebali prijaviti vlasniku navedene stranice." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Sustav je utvrdio da je prošlo tek nekoliko sekundi otkad ste se zadnji put autentificirali za pristup ovoj aplikaciji te stoga pretpostavljamo da se javio problem kod davatelja usluge." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Najvjerojatnije je problem u konfiguraciji na strani davatelja usluge ili u konfiguraciji autentifikacijskog servisa." +msgid "We were unable to locate the state information for the current request." +msgstr "Ne možemo pronaći podatak o stanju aktualnog zahtjeva." msgid "Welcome" msgstr "Dobrodošli" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Ako se ova greška bude i dalje pojavljivala, možete ju prijaviti administratorima." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Metapodaci za lokalni Shibboleth 1.3 SP (automatski generirani)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Ne možemo pronaći podatak o stanju aktualnog zahtjeva." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Izgleda da ste onemogućili kolačiće (cookies) u vašem web pregledniku. Molimo provjerite postavke vašeg web preglednika i pokušajte ponovo." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP primjer - isprobajte autentifikaciju kroz vaš Shib IdP" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Podatak o stanju je izgubljen" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Metapodaci za lokalni Shibboleth 1.3 IdP (automatski generirani)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Prijavite ovu grešku" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/hu/LC_MESSAGES/core.po b/modules/core/locales/hu/LC_MESSAGES/core.po index a2352ebae6..7a51967b1e 100644 --- a/modules/core/locales/hu/LC_MESSAGES/core.po +++ b/modules/core/locales/hu/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Újbóli belépés" - -msgid "Too short interval between single sign on events." -msgstr "Túl kevés idő telt el a belépési kísérletek között." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Mindössze néhány másodperc telt el az SP-hez történő, legutóbbi azonosítás óta. Ez nem normális működés, úgy tűnik, valami probléma lépett fel az SP-nél." - -msgid "Missing cookie" -msgstr "Hiányzó süti (cookie)" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Újra" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Úgy tűnik, az ön böngészőjében nincsenek engedélyezve a sütik (cookie) használata. Kérjük ellenőrizze beállításait, majd próbálja újra." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Zárja be böngészőjét, majd próbálja újra." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Talán a böngészőben nincsenek engedélyezve a sütik (cookie)." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Menjen vissza az előző oldalra, majd próbálja ismét." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Ezen a gépen futó (hosted) Shibboleth 1.3 személyazonosság-szolgáltató (IdP) metaadat (automatikusan generált)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Ezen a gépen futó (hosted) Shibboleth 1.3 alkalmazásszolgáltató (SP) metaadat (automatikusan generált)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Ha a probléma állandónak tűnik, kérjük, jelezze ezt az oldal adminisztrátorának." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Ha ön az oldal üzemeltetője, úgy javasoljuk, ellenőrizze a metaadat beállításokat mint IdP-, mind SP oldalon." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Amennyiben ön, mint felhasználó keveredett erre az oldalra, úgy kérjük, a hibával keresse az oldal adminisztrátorát." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Hiányzó süti (cookie)" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "A böngésző a legutóbb bezárt füleket újranyitva indult." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "A hiba jelentése" + +msgid "Retry" +msgstr "Újra" + +msgid "Retry login" +msgstr "Újbóli belépés" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP példa - teszt bejelentkezés saját Shibboleth 1.3 IdP keresztül" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Elvezett az állapotinformácó" + msgid "Suggestions for resolving this problem:" msgstr "Javaslat a probléma elhárítására:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Az alábbi hibát okozhatta:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Valószínűleg valamilyen konfigurációs probléma okozta hiba, amely lehet akár IdP-, akár SP-oldalon." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Túl kevés idő telt el a belépési kísérletek között." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Használja a böngésző előre, ill. vissza gombjait" -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Ha ön az oldal üzemeltetője, úgy javasoljuk, ellenőrizze a metaadat beállításokat mint IdP-, mind SP oldalon." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Amennyiben ön, mint felhasználó keveredett erre az oldalra, úgy kérjük, a hibával keresse az oldal adminisztrátorát." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Mindössze néhány másodperc telt el az SP-hez történő, legutóbbi azonosítás óta. Ez nem normális működés, úgy tűnik, valami probléma lépett fel az SP-nél." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Valószínűleg valamilyen konfigurációs probléma okozta hiba, amely lehet akár IdP-, akár SP-oldalon." +msgid "We were unable to locate the state information for the current request." +msgstr "Nem lehet beazonosítani a kéréshez tartozó állapotinformációt." msgid "Welcome" msgstr "Üdvözöljük" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Ha a probléma állandónak tűnik, kérjük, jelezze ezt az oldal adminisztrátorának." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Ezen a gépen futó (hosted) Shibboleth 1.3 alkalmazásszolgáltató (SP) metaadat (automatikusan generált)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Nem lehet beazonosítani a kéréshez tartozó állapotinformációt." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Úgy tűnik, az ön böngészőjében nincsenek engedélyezve a sütik (cookie) használata. Kérjük ellenőrizze beállításait, majd próbálja újra." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP példa - teszt bejelentkezés saját Shibboleth 1.3 IdP keresztül" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Elvezett az állapotinformácó" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Ezen a gépen futó (hosted) Shibboleth 1.3 személyazonosság-szolgáltató (IdP) metaadat (automatikusan generált)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "A hiba jelentése" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/id/LC_MESSAGES/core.po b/modules/core/locales/id/LC_MESSAGES/core.po index 2e32147451..8d41c0616a 100644 --- a/modules/core/locales/id/LC_MESSAGES/core.po +++ b/modules/core/locales/id/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Coba login kembali" - -msgid "Too short interval between single sign on events." -msgstr "Interval yang terlalu pendek antara event single sign on." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Kami telah mendeteksi kalau beberapa detik yang lalu sejak autentifikasi yang anda lakukan pada service provider ini, dan oleh karena itu diasumsikan ada masalah dengan SP ini" - -msgid "Missing cookie" -msgstr "Cookie hilang" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Sebuah layanan telah meminta Anda untuk melakukan autentifikasi. Silahkan masukkan username dan password Anda pada form dibawah." -msgid "Retry" -msgstr "Coba lagi" +msgid "An error has occurred" +msgstr "Terjadi suatu kesalahan" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Anda sepertinya menonaktifkan cookie di browser anda. Silahkan periksa pengaturan pada browser anda, dan coba lagi." +msgid "Check that the link you used to access the web site is correct." +msgstr "Periksa apakah tautan yang Anda gunakan untuk mengakses situs web sudah benar." msgid "Close the web browser, and try again." -msgstr "Tutup browser, dan coba lagi." +msgstr "Tutup browser web, dan coba lagi." + +msgid "Continue" +msgstr "Lanjutkan" msgid "Cookies may be disabled in the web browser." msgstr "Cookie mungkin dinonaktifkan pada web browser ini." +msgid "Do you want to logout from all the services above?" +msgstr "Apakah Anda ingin keluar dari semua layanan di atas?" + +msgid "Enter your username and password" +msgstr "Masukkan nama pengguna dan kata sandi Anda" + +msgid "Error report sent" +msgstr "Laporan kesalahan terkirim" + msgid "Go back to the previous page and try again." msgstr "Kembali ke halaman sebelumnya dan coba lagi." +msgid "Help! I don't remember my password." +msgstr "Tolong! Saya tidak ingat password saya." + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Metadata Identity Provider Shibboleth 1.3 Hosted (secara otomatis dihasilkan)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Metadata Service Provider Shibboleth 1.3 Hosted (secara otomatis dihasilkan)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Jika masalah ini tetap terjadi, anda dapat melaporkannnya ke administrator sistem." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Jika anda adalah pengembang yang menerapkan solusi sistem masuk tunggal, anda memiliki masalah dengan konfigurasi metadata. Periksalah kalau metadata telah dikonfigurasi." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "Jika Anda seorang pengembang yang menerapkan solusi sistem masuk tunggal, Anda mencoba mencapai titik akhir menggunakan metode HTTP yang salah." + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Jika adalah pengguna yang menerima error ini setelah mengklik link pada sebuah situs, anda harus melaporkan error ini kepada pemilik situs tersebut." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "Jika Anda adalah administrator instalasi ini, silakan lihat dokumentasi SimpleSAMLphp untuk mengetahui cara mengonfigurasi dan berinteraksi dengan perangkat lunak." + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Jika Anda melaporkan kesalahan ini, laporkan juga nomor pelacakan ini yang memungkinkan untuk menemukan sesi Anda dalam log yang tersedia untuk administrator sistem:" + +msgid "Incorrect Attributes" +msgstr "Atribut yang salah" + +msgid "Logging out..." +msgstr "Keluar..." + +msgid "Login" +msgstr "Masuk" + +msgid "Logout" +msgstr "Keluar" + +msgid "Missing cookie" +msgstr "Cookie hilang" + +msgid "No" +msgstr "Tidak" + +msgid "No, only %SP%" +msgstr "Tidak, hanya %SP%" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "Satu atau beberapa atribut yang diberikan oleh penyedia identitas Anda tidak mengandung jumlah nilai yang diharapkan." + msgid "Opened the web browser with tabs saved from the previous session." -msgstr "Membuka web browser dengan tab-tab yang telah disimpan dari session sebelumnya." +msgstr "Membuka web browser dengan tab-tab yang telah disimpan dari sesi sebelumnya." + +msgid "Organization" +msgstr "Organisasi" + +msgid "Password" +msgstr "Kata Sandi" + +msgid "Processing..." +msgstr "Memproses..." + +msgid "Remember me" +msgstr "Ingat saya" + +msgid "Remember my organization" +msgstr "Ingat organisasi saya" + +msgid "Remember my username" +msgstr "Ingat nama pengguna saya" + +msgid "Report this error" +msgstr "Laporkan error ini" + +msgid "Retry" +msgstr "Coba lagi" + +msgid "Retry login" +msgstr "Coba masuk kembali" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Contoh Shibboleth 1.3 SP - Tes login melalui IdP Shib Anda" + +msgid "SimpleSAMLphp" +msgstr "SimpleSAMLphp" + +msgid "State information lost" +msgstr "Informasi kondisi/state hilang" msgid "Suggestions for resolving this problem:" msgstr "Saran untuk memperbaiki masalah ini:" +msgid "The authentication procesd has failed." +msgstr "Proses autentikasi telah gagal." + +msgid "The authorization procesd has failed." +msgstr "Proses otorisasi telah gagal." + +msgid "The error report has been sent to the administrators." +msgstr "Laporan kesalahan telah dikirim ke administrator." + +msgid "The identification procesd has failed." +msgstr "Proses identifikasi telah gagal." + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "Tautan yang digunakan untuk menuju ke sini rusak, mungkin penanda halaman." + +msgid "The problematic attribute(s) are:" +msgstr "Atribut yang bermasalah adalah:" + +msgid "There was an issue while signing you in." +msgstr "Ada masalah saat Anda masuk." + msgid "This error may be caused by:" msgstr "Error ini mungkin disebabkan oleh:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Sepertinya ini terjadi karena ada kesalahan konfigurasi baik pada service provider maupun pada identity provider." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "Ini adalah halaman depan dari perangkat lunak autentikasi SimpleSAMLphp. Tidak banyak yang bisa dilihat di sini." + +msgid "Too short interval between single sign on events." +msgstr "Interval yang terlalu pendek antara sistem masuk tunggal." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Tidak dapat keluar dari satu atau beberapa layanan. Untuk memastikan bahwa semua sesi Anda telah ditutup, Anda disarankan untuk menutup browser web Anda.." + +msgid "Username" +msgstr "Nama Pengguna" + msgid "Using the back and forward buttons in the web browser." msgstr "Menggunakan tombol back dan forward pada browser web." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Jika anda adalah pengembang yang mendeploy solusi sing-on, anda memiliki masalah dengan konfigurasi metadata. Periksalah kalau metadata telah dikonfigurasi dengan benar baik pada sisi identity provider dan pada sisi service provider." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Jika adalah user yang menerika error ini setelah mengklik link pada sebuah situs, anda harus melaporkan error ini kepada pemilik situs tersebut" +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Kami mendeteksi bahwa hanya ada beberapa detik sejak Anda terakhir kali melakukan autentikasi dengan penyedia layanan ini, dan oleh karena itu berasumsi bahwa ada masalah dengan SP ini." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Sepertinya ini terjadi karena ada kesalahan konfigurasi baik pada service provider maupun pada identity provider" +msgid "We were unable to locate the state information for the current request." +msgstr "Kita tidak dapat menemukan informasi kondisi/state dari request saat ini." msgid "Welcome" msgstr "Selamat Datang" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Jika masalah ini tetap terjadi, anda dapat melaporkannnya ke system administrator." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Tanpa nama pengguna dan kata sandi, Anda tidak dapat mengautentikasi diri Anda sendiri untuk mengakses layanan ini. Mungkin ada seseorang yang dapat membantu Anda. Konsultasikan dengan meja bantuan di organisasi Anda!" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Metadata Service Provider Shibboleth 1.3 Hosted (secara otomatis digenerate)" +msgid "Yes, all services" +msgstr "Ya, semua layanan" -msgid "We were unable to locate the state information for the current request." -msgstr "Kita tidak dapat menemukan informasi kondisi/state dari request saat ini." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Anda sepertinya menonaktifkan cookie di browser anda. Silahkan periksa pengaturan pada browser anda, dan coba lagi." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Contoh Shibboleth 1.3 SP - Tes login melalui IdP Shib Anda" +msgid "You are also logged in on these services:" +msgstr "Anda juga masuk pada layanan berikut:" -msgid "State information lost" -msgstr "Informasi kondisi/state hilang" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Anda sekarang mengakses sistem praproduksi. Pengaturan autentikasi ini hanya untuk pengujian dan verifikasi praproduksi. Jika seseorang mengirimi Anda tautan yang mengarahkan Anda ke sini, dan Anda bukan penguji, Anda mungkin mendapatkan tautan yang salah, dan seharusnya tidak berada di sini." -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Metadata Identity Provider Shibboleth 1.3 Hosted (secara otomatis digenerate)" +msgid "You are now successfully logged out from %SP%." +msgstr "Anda sekarang berhasil keluar dari %SP%." -msgid "Report this error" -msgstr "Laporkan error ini" +msgid "got %got% values, want %want%" +msgstr "mendapat %got%, menginginkan %want%" + +msgid "logout is not supported" +msgstr "keluar tidak didukung" diff --git a/modules/core/locales/it/LC_MESSAGES/core.po b/modules/core/locales/it/LC_MESSAGES/core.po index 6d5bd5a4ef..43f51ac1b9 100644 --- a/modules/core/locales/it/LC_MESSAGES/core.po +++ b/modules/core/locales/it/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Riprovare a connettersi" - -msgid "Too short interval between single sign on events." -msgstr "L'intervallo tra le autenticazioni è troppo breve." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "E' stato rilevato che sono passati solo alcuni secondi dalla tua ultima autenticazione con questo fornitore di servizio, quindi si può assumere che ci sia un problema con il Service Provider." - -msgid "Missing cookie" -msgstr "Cookie mancante" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Riprovare" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Sembra che i cookie siano disabilitati nel browser. Si prega di verificare e quindi riprovare." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Chiudere il browser web e quindi provare di nuovo." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "I cookies potrebbe essere disabilitati." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Tornare alla pagina precedente e provare di nuovo." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Metadati dell'Identity Provider Shibboleth 1.3 Locale (generati automaticamente)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Metadati del Service Provider Shibboleth 1.3 Locale (generati automaticamente)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Se questo problema persiste, è possibile segnalarlo agli amministratori di sistema." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Se sei uno sviluppatore che sta sviluppando una soluzione di single sign-on, hai un problema con la configurazione dei metadati. Verifica che siano correttamente configurati sia sull'identity provider che sul service provider." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Se sei un utente che ha ricevuto questo errore dopo aver cliccato un link su un sito, dovresti riportare questo errore al gestore di quel sito." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Cookie mancante" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Il browser web è stato aperto e le finestre (tab) sono state ripristinate dalla sessione precedente." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Riportare questo errore." + +msgid "Retry" +msgstr "Riprovare" + +msgid "Retry login" +msgstr "Riprovare a connettersi" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Esempio di Shibboleth 1.3 SP - prova l'autenticazione tramite il tuo IdP Shibboleth" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Informazioni di stato perse" + msgid "Suggestions for resolving this problem:" msgstr "Suggerimenti per risolvere questo problema:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Questo errore potrebbe essere causato da:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Questo è probabilmente un problema di configurazione del service provider o dell'identity provider." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "L'intervallo tra le autenticazioni è troppo breve." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Utilizzo i pulsanti avanti ed indietro del browser web." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Se sei uno sviluppatore che sta sviluppando una soluzione di single sign-on, hai un problema con la configurazione dei metadati. Verifica che siano correttamente configurati sia sull'identity provider che sul service provider." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Se sei un utente che ha ricevuto questo errore dopo aver cliccato un link su un sito, dovresti riportare questo errore al gestore di quel sito." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "E' stato rilevato che sono passati solo alcuni secondi dalla tua ultima autenticazione con questo fornitore di servizio, quindi si può assumere che ci sia un problema con il Service Provider." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Questo è probabilmente un problema di configurazione del service provider o dell'identity provider." +msgid "We were unable to locate the state information for the current request." +msgstr "Non è stato possibile localizzare le informazioni di stato per la richiesta corrente." msgid "Welcome" msgstr "Benvenuto" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Se questo problema persiste, è possibile segnalarlo agli amministratori di sistema." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Metadati del Service Provider Shibboleth 1.3 Locale (generati automaticamente)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Non è stato possibile localizzare le informazioni di stato per la richiesta corrente." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Sembra che i cookie siano disabilitati nel browser. Si prega di verificare e quindi riprovare." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Esempio di Shibboleth 1.3 SP - prova l'autenticazione tramite il tuo IdP Shibboleth" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Informazioni di stato perse" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Metadati dell'Identity Provider Shibboleth 1.3 Locale (generati automaticamente)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Riportare questo errore." +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/ja/LC_MESSAGES/core.po b/modules/core/locales/ja/LC_MESSAGES/core.po index 4071769c13..1487c0b9f3 100644 --- a/modules/core/locales/ja/LC_MESSAGES/core.po +++ b/modules/core/locales/ja/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "ログインを再試行" - -msgid "Too short interval between single sign on events." -msgstr "シングルサインオンイベントの間隔が短すぎます。" - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "このサービスプロバイダで最後に認証されてから数秒しか経過していないことが検出されたため、このSPに問題があると思われます。" - -msgid "Missing cookie" -msgstr "クッキーが見つかりません" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "再試行" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "ブラウザのクッキーが無効化されている可能性があります。ブラウザの設定を確認し、再度試してください。" +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "WEBブラウザを閉じて、再度試してください。" +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "このWEBブラウザではクッキーが無効化されています。" +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "前のページに戻り、再度試してください。" +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "ホスト Shibboleth 1.3 アイデンティティプロバイダメタデータ (自動生成)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "ホスト Shibboleth 1.3 サービスプロバイダメタデータ(自動生成)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "この問題が継続して起こる場合、システム管理者に報告してください。" + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "もしあなたが開発者でシングルサインオンシステムの構築者である場合、メタデータの設定に問題があります。アイデンティティプロバイダとサービスプロバイダの両方にメタデータが正しく設定されているか確認してください。" + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "もしあなたがユーザーで以下のリンクのサイトでこのエラーを受け取ったのであれば、このエラーをサイトの管理者に報告してください。" + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "クッキーが見つかりません" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "ブラウザに保存されたタブにより、以前のセッションが開かれました。" +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "このエラーをレポート" + +msgid "Retry" +msgstr "再試行" + +msgid "Retry login" +msgstr "ログインを再試行" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP example - Shib IdP経由でテストログイン" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "状態情報が無くなりました" + msgid "Suggestions for resolving this problem:" msgstr "この問題を解決する為の提案:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "このエラーの原因:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "これは恐らくサービスプロバイダかアイデンティティプロバイダの設定の問題です。" + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "シングルサインオンイベントの間隔が短すぎます。" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "WEBブラウザの戻るや次へのボタンを使用します。" -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "もしあなたが開発者でシングルサインオンシステムの構築者である場合、メタデータの設定に問題があります。アイデンティティプロバイダとサービスプロバイダの両方にメタデータが正しく設定されているか確認してください。" - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "もしあなたがユーザーで以下のリンクのサイトでこのエラーを受け取ったのであれば、このエラーをサイトの管理者に報告してください。" +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "このサービスプロバイダで最後に認証されてから数秒しか経過していないことが検出されたため、このSPに問題があると思われます。" -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "これは恐らくサービスプロバイダかアイデンティティプロバイダの設定の問題です。" +msgid "We were unable to locate the state information for the current request." +msgstr "現在のリクエストから状態情報を特定することが出来ませんでした。" msgid "Welcome" msgstr "ようこそ" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "この問題が継続して起こる場合、システム管理者に報告してください。" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "ホスト Shibboleth 1.3 サービスプロバイダメタデータ(自動生成)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "現在のリクエストから状態情報を特定することが出来ませんでした。" +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "ブラウザのクッキーが無効化されている可能性があります。ブラウザの設定を確認し、再度試してください。" -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP example - Shib IdP経由でテストログイン" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "状態情報が無くなりました" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "ホスト Shibboleth 1.3 アイデンティティプロバイダメタデータ (自動生成)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "このエラーをレポート" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/lb/LC_MESSAGES/core.po b/modules/core/locales/lb/LC_MESSAGES/core.po index 160b4fd417..e319c33a10 100644 --- a/modules/core/locales/lb/LC_MESSAGES/core.po +++ b/modules/core/locales/lb/LC_MESSAGES/core.po @@ -1,13 +1,197 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: lb\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" + +msgid "An error has occurred" +msgstr "" + +msgid "Check that the link you used to access the web site is correct." +msgstr "" + +msgid "Close the web browser, and try again." +msgstr "" + +msgid "Continue" +msgstr "" + +msgid "Cookies may be disabled in the web browser." +msgstr "" + +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + +msgid "Go back to the previous page and try again." +msgstr "" + +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Hosted Shibboleth 1.3 Identity Provider Meta Données (automatesch erstallt)" + msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" msgstr "Hosted Shibboleth 1.3 Service Provider Meta Données (automatesch erstallt)" +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "" + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "" + +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Retry" +msgstr "" + +msgid "Retry login" +msgstr "" + msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" msgstr "Shibboleth 1.3 SP Beispill - probeier dech iwer dain Shib IdP anzeloggen" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Hosted Shibboleth 1.3 Identity Provider Meta Données (automatesch erstallt)" +msgid "SimpleSAMLphp" +msgstr "" + +msgid "Suggestions for resolving this problem:" +msgstr "" + +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + +msgid "This error may be caused by:" +msgstr "" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "" + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + +msgid "Using the back and forward buttons in the web browser." +msgstr "" + +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "" + +msgid "Welcome" +msgstr "" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" + +msgid "Yes, all services" +msgstr "" + +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "" + +msgid "You are also logged in on these services:" +msgstr "" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" + +msgid "You are now successfully logged out from %SP%." +msgstr "" + +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/lt/LC_MESSAGES/core.po b/modules/core/locales/lt/LC_MESSAGES/core.po index d2a911f97a..f7fa064529 100644 --- a/modules/core/locales/lt/LC_MESSAGES/core.po +++ b/modules/core/locales/lt/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Prisijunkite iš naujo" - -msgid "Too short interval between single sign on events." -msgstr "Per trumpas intervalas tarp prisijungimų prie paslaugų." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Mes nustatėme, kad praėjo tik kelios sekundės nuo Jūsų autentiškumo patvirtimo šiam paslaugos teikėjui, dėl to manome, kad yra nesklandumų su SP." - -msgid "Missing cookie" -msgstr "Slapukas nerastas" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Bandyti dar kartą" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Atrodo Jūsų naršyklė nepalaiko slapukų. Patikrinkite naršyklės nustatymus ir bandykite dar kartą." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Uždarykite interneto naršyklę ir pabandykite dar kartą." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Interneto naršyklėje gali būti išjungti slapukai (cookies)." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Grįžkite į ankstesnį puslapį ir pabandykite dar kartą." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Vietinio Shibboleth 1.3 tapatybės teikėjo (IdP) metaduomenys (sugeneruoti automatiškai)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Vietinio Shibboleth 1.3 paslaugos teikėjo (SP) metaduomenys (sugeneruoti automatiškai)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Jei ši problema išliks, galite pranešti apie tai sistemos administratoriui." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Jei Jūs esate kūrėjas, kuris diegiate SSO sprendimą, Jums iškilo problema susijusi su metaduomenų konfigūracija. Patikrinkite, ar metaduomenys teisingai sukonfigūruoti tiek tapatybių teikėjo, tiek paslaugos teikėjo pusėse." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Jei Jūs esate naudotojas, kuris gavote šią klaidą spragtelėjęs nuorodą tinklapyje, Jūs turėtumėte informuoti tinklapio administratorių apie šią klaidą." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Slapukas nerastas" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Atidaryta interneto naršyklė su kortelėmis, išsaugotomis iš ankstesnės sesijos." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Pranešti apie šią klaidą" + +msgid "Retry" +msgstr "Bandyti dar kartą" + +msgid "Retry login" +msgstr "Prisijunkite iš naujo" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP pavyzdys - istorinių duomenų testavimas kartu su Jūsų Shib IdP" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Būsenos informacia prarasta" + msgid "Suggestions for resolving this problem:" msgstr "Pasiūlymai spręsti šią problemą:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Šią klaidą galėjo sukelti:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Tai greičiausiai konfigūracijos problema paslaugos teikėjo arba tapatybių teikėjo pusėje." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Per trumpas intervalas tarp prisijungimų prie paslaugų." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Back (Atgal) ir Forward (Pirmyn) mygtukų naudojimas interneto naršyklėje" -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Jei Jūs esate kūrėjas, kuris diegiate SSO sprendimą, Jums iškilo problema susijusi su metaduomenų konfigūracija. Patikrinkite, ar metaduomenys teisingai sukonfigūruoti tiek tapatybių teikėjo, tiek paslaugos teikėjo pusėse." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Jei Jūs esate naudotojas, kuris gavote šią klaidą spragtelėjęs nuorodą tinklapyje, Jūs turėtumėte informuoti tinklapio administratorių apie šią klaidą." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Mes nustatėme, kad praėjo tik kelios sekundės nuo Jūsų autentiškumo patvirtimo šiam paslaugos teikėjui, dėl to manome, kad yra nesklandumų su SP." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Tai greičiausiai konfigūracijos problema paslaugos teikėjo arba tapatybių teikėjo pusėje." +msgid "We were unable to locate the state information for the current request." +msgstr "Nepavyko nustatyti būsenos informacijos šiai užklausai." msgid "Welcome" msgstr "Sveiki atvykę" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Jei ši problema išliks, galite pranešti apie tai sistemos administratoriui." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Vietinio Shibboleth 1.3 paslaugos teikėjo (SP) metaduomenys (sugeneruoti automatiškai)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Nepavyko nustatyti būsenos informacijos šiai užklausai." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Atrodo Jūsų naršyklė nepalaiko slapukų. Patikrinkite naršyklės nustatymus ir bandykite dar kartą." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP pavyzdys - istorinių duomenų testavimas kartu su Jūsų Shib IdP" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Būsenos informacia prarasta" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Vietinio Shibboleth 1.3 tapatybės teikėjo (IdP) metaduomenys (sugeneruoti automatiškai)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Pranešti apie šią klaidą" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/lv/LC_MESSAGES/core.po b/modules/core/locales/lv/LC_MESSAGES/core.po index adbcea569e..851512ccbb 100644 --- a/modules/core/locales/lv/LC_MESSAGES/core.po +++ b/modules/core/locales/lv/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Mēģināt pieslēgties vēlreiz" - -msgid "Too short interval between single sign on events." -msgstr "Pārāk mazs intervāls starp pieslēgšanās notikumiem." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Pēc pēdējās autentifikācijas ir pagājušas tikai dažas sekundes, tādēļ, iespējams, ir problēma ar servisa piegādātāju." - -msgid "Missing cookie" -msgstr "Trūkst sīkdatnes" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Mēģināt vēlreiz" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Izskatās, ka Jūsu interneta pārlūkā ir aizliegtas sīkdatnes. Lūdzu pārbaudiet sava pārlūka uzstādījumus un mēģiniet vēlreiz." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Aizveriet interneta pārlūku un mēģiniet vēlreiz." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Iespējams, interneta pārlūkā ir aizliegtas sīkdatnes." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Ejiet atpakaļ uz iepriekšējo lapu un mēģiniet vēlreiz." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Hostēta Shibboleth 1.3 identitātes piegādātāja metadati (ģenerēti automātiski)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Hostēta Shibboleth 1.3 servisa piegādātāja metadati (ģenerēti automātiski)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Ja problēma atkārtojas, varat ziņot sistēmas administratoriem." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Ja Jūs esat vienotas pieslēgšanās risinājuma izstrādātājs, Jūsu metadatu konfigurācijā ir kļūda. Pārbaudiet tos gan pie identitātes piegādātāja, gan pie servisa piegādātāja." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Ja Jūs esat lietotājs un saņemat šo kļūdu, sekojot saitei kādā interneta lapā, Jums jāziņo par šo kļūdu lapas īpašniekam." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Trūkst sīkdatnes" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Interneta pārlūka atvēršana ar saglabātām cilnēm no iepriekšējās sesijas." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Ziņojiet par šo kļūdu" + +msgid "Retry" +msgstr "Mēģināt vēlreiz" + +msgid "Retry login" +msgstr "Mēģināt pieslēgties vēlreiz" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP piemērs - testa pieslēgšanās caur Jūsu Shib IDP" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Stāvokļa informācija ir pazaudēta" + msgid "Suggestions for resolving this problem:" msgstr "Ieteikumi problēmas atrisināšanai:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Kļūdu radījis:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Visticamāk šī ir konfigurācijas problēma pie servisa piegādātāja vai identitātes piegādātāja." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Pārāk mazs intervāls starp pieslēgšanās notikumiem." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Interneta pārlūka pogu Uz priekšu un Atpakaļ lietošana." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Ja Jūs esat vienotas pieslēgšanās risinājuma izstrādātājs, Jūsu metadatu konfigurācijā ir kļūda. Pārbaudiet tos gan pie identitātes piegādātāja, gan pie servisa piegādātāja." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Ja Jūs esat lietotājs un saņemat šo kļūdu, sekojot saitei kādā interneta lapā, Jums jāziņo par šo kļūdu lapas īpašniekam." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Pēc pēdējās autentifikācijas ir pagājušas tikai dažas sekundes, tādēļ, iespējams, ir problēma ar servisa piegādātāju." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Visticamāk šī ir konfigurācijas problēma pie servisa piegādātāja vai identitātes piegādātāja." +msgid "We were unable to locate the state information for the current request." +msgstr "Nav iespējams atrast stāvokļa informāciju šim pieprasījumam." msgid "Welcome" msgstr "Laipni lūdzam" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Ja problēma atkārtojas, varat ziņot sistēmas administratoriem." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Hostēta Shibboleth 1.3 servisa piegādātāja metadati (ģenerēti automātiski)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Nav iespējams atrast stāvokļa informāciju šim pieprasījumam." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Izskatās, ka Jūsu interneta pārlūkā ir aizliegtas sīkdatnes. Lūdzu pārbaudiet sava pārlūka uzstādījumus un mēģiniet vēlreiz." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP piemērs - testa pieslēgšanās caur Jūsu Shib IDP" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Stāvokļa informācija ir pazaudēta" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Hostēta Shibboleth 1.3 identitātes piegādātāja metadati (ģenerēti automātiski)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Ziņojiet par šo kļūdu" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/nb/LC_MESSAGES/core.po b/modules/core/locales/nb/LC_MESSAGES/core.po index 7b0f997bb0..ffc9abd82d 100644 --- a/modules/core/locales/nb/LC_MESSAGES/core.po +++ b/modules/core/locales/nb/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Forsøk å logge inn på nytt" - -msgid "Too short interval between single sign on events." -msgstr "For kort intervall imellom innloggingsforespørsler" - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Vi har detektert at det er bare noen få sekunder siden du sist ble autentisert på denne tjenesten, og derfor antar vi at det er et problem med oppsettet av denne tjenesten." - -msgid "Missing cookie" -msgstr "Mangler informasjonskapsel" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Prøv igjen" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Du ser ut til å ha deaktivert informasjonskapsler. Kontroller innstillingene i nettleseren din og prøv igjen." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Lukk nettleseren, og prøv på nytt." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "At informasjonskapsler ikke er aktivert i nettleseren." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Gå tilbake til forrige side og prøv på nytt." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Hosted Shibboleth 1.3 Identity Provider Metadata (automatisk generert)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Hosted Shibboleth 1.3 Service Provider Metadata (automatisk generert)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Hvis problemet vedvarer, kan du rapportere det til systemadministratorene." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Hvis du er en utvikler som setter opp en \"single sign-on\" løsning, så har du et problem med metadataoppsettet. Kontroller at metadata er riktig konfigurert hos både identitetsleverandøren og tjenesteleverandøren." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Hvis du er en bruker som fikk denne feilen etter at du fulgte en link på en nettside, så bør du rapportere denne feilen til eieren av den nettsiden." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Mangler informasjonskapsel" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Starte nettleseren med faner lagret fra forrige gang." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Rapporter denne feilen" + +msgid "Retry" +msgstr "Prøv igjen" + +msgid "Retry login" +msgstr "Forsøk å logge inn på nytt" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP eksempel - test innlogging med Shibboleth 1.3 via din IdP" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Tilstandsinformasjon tapt" + msgid "Suggestions for resolving this problem:" msgstr "Forslag for å løse dette problemet:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Denne feilen kan være forårsaket av:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Dette er sannsynligvis et konfigurasjonsproblem hos enten tjenesteleverandøren eller identitetsleverandøren." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "For kort intervall imellom innloggingsforespørsler" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Bruk av \"frem\"- og \"tilbake\"-knappene i nettleseren." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Hvis du er en utvikler som setter opp en \"single sign-on\" løsning, så har du et problem med metadataoppsettet. Kontroller at metadata er riktig konfigurert hos både identitetsleverandøren og tjenesteleverandøren." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Hvis du er en bruker som fikk denne feilen etter at du fulgte en link på en nettside, så bør du rapportere denne feilen til eieren av den nettsiden." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Vi har detektert at det er bare noen få sekunder siden du sist ble autentisert på denne tjenesten, og derfor antar vi at det er et problem med oppsettet av denne tjenesten." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Dette er sannsynligvis et konfigurasjonsproblem hos enten tjenesteleverandøren eller identitetsleverandøren." +msgid "We were unable to locate the state information for the current request." +msgstr "Vi kunne ikke finne tilstandsinformasjonen for denne forespørselen." msgid "Welcome" msgstr "Velkommen" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Hvis problemet vedvarer, kan du rapportere det til systemadministratorene." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Hosted Shibboleth 1.3 Service Provider Metadata (automatisk generert)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Vi kunne ikke finne tilstandsinformasjonen for denne forespørselen." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Du ser ut til å ha deaktivert informasjonskapsler. Kontroller innstillingene i nettleseren din og prøv igjen." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP eksempel - test innlogging med Shibboleth 1.3 via din IdP" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Tilstandsinformasjon tapt" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Hosted Shibboleth 1.3 Identity Provider Metadata (automatisk generert)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Rapporter denne feilen" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/nl/LC_MESSAGES/core.po b/modules/core/locales/nl/LC_MESSAGES/core.po index 9a920a795f..0f4b23eb34 100644 --- a/modules/core/locales/nl/LC_MESSAGES/core.po +++ b/modules/core/locales/nl/LC_MESSAGES/core.po @@ -1,82 +1,212 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Inloggen opnieuw proberen" - -msgid "Too short interval between single sign on events." -msgstr "Te kort interval tussen single sign on pogingen" - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "We hebben waargenomen dat u slechts een paar seconden geleden al aangemeld bent bij deze serviceprovider, daarom nemen we aan dat er een probleem is met deze SP." - -msgid "Missing cookie" -msgstr "Cookie ontbreekt" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Opnieuw" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Het ziet er naaruit dat cookies zijn uitgeschakeld in uw browser. Controleer de browserinstellingen en probeer het opnieuw." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Sluit de web browser, en probeer opnieuw." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Cookies kunnen uitgeschakeld zijn in de web browser." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Ga terug naar de vorige pagina, en probeer opnieuw." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Lokale Shibboleth 1.3 Identity Provider Metadata (automatisch gegenereerd)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Lokale Shibboleth 1.3 Service Provider Metadata (automatisch gegenereerd)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "If dit probleem behoud, dan kun je het melden aan de systeem beheerders." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Als u een ontwikkelaar bent die een single sign-on oplossing aan het implementeren is, heeft u een probleem met de metadataconfiguratie. Controleer of de metadata correct is geconfigureerd zowel bij de identiteitsverstrekker als bij de service provider." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Als u een eindgebruiker bent die deze foutmelding kreeg na het volgen van een link op een site, dan kunt u deze fout melden bij de eigenaar van die site." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Cookie ontbreekt" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Web browser geopend met tabs opgeslagen van de vorige sessie." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Meld deze error" + +msgid "Retry" +msgstr "Opnieuw" + +msgid "Retry login" +msgstr "Inloggen opnieuw proberen" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP voorbeeld - test inloggen via je Shibboleth 1.3 IdP" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Toestand informatie verloren" + msgid "Suggestions for resolving this problem:" msgstr "Suggesties om dit probleem op te lossen:" -msgid "This error may be caused by:" -msgstr "Deze error is waarschijnlijk veroorzaakt door:" +msgid "The authentication procesd has failed." +msgstr "" -msgid "Using the back and forward buttons in the web browser." -msgstr "Gebruik van de 'Volgende'- en 'Terug'-knoppen in de web browser." +msgid "The authorization procesd has failed." +msgstr "" -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Als u een ontwikkelaar bent die een single sign-on oplossing aan het implementeren is, heeft u een probleem met de metadataconfiguratie. Controleer of de metadata correct is geconfigureerd zowel bij de identiteitsverstrekker als bij de service provider." +msgid "The error report has been sent to the administrators." +msgstr "" -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Als u een eindgebruiker bent die deze foutmelding kreeg na het volgen van een link op een site, dan kunt u deze fout melden bij de eigenaar van die site." +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + +msgid "This error may be caused by:" +msgstr "Deze error is waarschijnlijk veroorzaakt door:" msgid "This is most likely a configuration problem on either the service provider or identity provider." msgstr "Dit is waarschijnlijk een configuratieprobleem bij ofwel de serviceprovider ofwel de identiteitsverstrekker." -msgid "Welcome" -msgstr "Welkom" +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "If dit probleem behoud, dan kun je het melden aan de systeem beheerders." +msgid "Too short interval between single sign on events." +msgstr "Te kort interval tussen single sign on pogingen" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + +msgid "Using the back and forward buttons in the web browser." +msgstr "Gebruik van de 'Volgende'- en 'Terug'-knoppen in de web browser." msgid "Warnings" msgstr "Waarschuwingen" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Lokale Shibboleth 1.3 Service Provider Metadata (automatisch gegenereerd)" +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "We hebben waargenomen dat u slechts een paar seconden geleden al aangemeld bent bij deze serviceprovider, daarom nemen we aan dat er een probleem is met deze SP." msgid "We were unable to locate the state information for the current request." msgstr "Wij waren niet in staat om de toestand informatie te vinden voor het huidige verzoek." -msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." -msgstr "Deze installatie van SimpleSAMLphp is verouderd. Het is aan te raden zo snel mogelijk te upgraden naar de meest recente versie." +msgid "Welcome" +msgstr "Welkom" -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP voorbeeld - test inloggen via je Shibboleth 1.3 IdP" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "State information lost" -msgstr "Toestand informatie verloren" +msgid "Yes, all services" +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Lokale Shibboleth 1.3 Identity Provider Metadata (automatisch gegenereerd)" +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Het ziet er naaruit dat cookies zijn uitgeschakeld in uw browser. Controleer de browserinstellingen en probeer het opnieuw." -msgid "Report this error" -msgstr "Meld deze error" +msgid "You are also logged in on these services:" +msgstr "" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" + +msgid "You are now successfully logged out from %SP%." +msgstr "" + +msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." +msgstr "Deze installatie van SimpleSAMLphp is verouderd. Het is aan te raden zo snel mogelijk te upgraden naar de meest recente versie." + +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/nn/LC_MESSAGES/core.po b/modules/core/locales/nn/LC_MESSAGES/core.po index 67e7def522..14ba80b07a 100644 --- a/modules/core/locales/nn/LC_MESSAGES/core.po +++ b/modules/core/locales/nn/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Prøv å logge inn på nytt" - -msgid "Too short interval between single sign on events." -msgstr "For kort intervall mellom innloggingsforespørslar" - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Vi har merka at det kun er nokon få sekund sidan du sist vart logga inn på denne tenesta, og derfor trur vi at det er eit problem med oppsettet av denne tjenesta." - -msgid "Missing cookie" -msgstr "Manglar informasjonskapsel" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Prøv på nytt" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Det ser ut til at informasjonskapslar er avslått i nettlesaren din. Vær vennleg og sjekk instillingane i nettlesaren din, og prøv på nytt." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Lukk nettlesaren, og prøv på nytt." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "At informasjonskapsler ikkje er aktivert i nettlesaren." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Gå tilbake til forrige side og prøv på nytt." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Hosted Shibboleth 1.3 Identity Provider Metadata (automatisk generert)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Hosted Shibboleth 1.3 Service Provider Metadata (automatisk generert)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Om problemet vedvarar, kan du rapportere det til systemadministratorane." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Om du er ein utviklar som set opp ei \"single sign-on\" løysing, så har du eit problem med metadataoppsettet. Kontroller at metadata er rett satt opp hjå både identitetsleverandøren og tenesteleverandøren." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Om du er ein brukar som mottok denne feilen etter at du følgde ei lenke på ei nettside, så bør du melde denne feilen til eigaren av den nettsida." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Manglar informasjonskapsel" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Starte nettlesaren med faner lagret fra forrige gong." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Rapporter denne feilen" + +msgid "Retry" +msgstr "Prøv på nytt" + +msgid "Retry login" +msgstr "Prøv å logge inn på nytt" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP eksempel - testinnlogging med Shibboleth 1.3 via din IdP" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Tilstandsinformasjon tapt" + msgid "Suggestions for resolving this problem:" msgstr "Forslag for å løyse dette problemet:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Denne feilen kan være forårsaket av:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Dette er sannsynlegvis eit problem med oppsettet hjå anten tenesteleverandøren eller identitetsleverandøren." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "For kort intervall mellom innloggingsforespørslar" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Bruk av \"fram\"- og \"attende\"-knappane i nettlesaren." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Om du er ein utviklar som set opp ei \"single sign-on\" løysing, så har du eit problem med metadataoppsettet. Kontroller at metadata er rett satt opp hjå både identitetsleverandøren og tenesteleverandøren." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Om du er ein brukar som mottok denne feilen etter at du følgde ei lenke på ei nettside, så bør du melde denne feilen til eigaren av den nettsida." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Vi har merka at det kun er nokon få sekund sidan du sist vart logga inn på denne tenesta, og derfor trur vi at det er eit problem med oppsettet av denne tjenesta." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Dette er sannsynlegvis eit problem med oppsettet hjå anten tenesteleverandøren eller identitetsleverandøren." +msgid "We were unable to locate the state information for the current request." +msgstr "Vi kunne ikkje finne tilstandsinformasjonen for denne forespørselen." msgid "Welcome" msgstr "Velkomen" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Om problemet vedvarar, kan du rapportere det til systemadministratorane." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Hosted Shibboleth 1.3 Service Provider Metadata (automatisk generert)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Vi kunne ikkje finne tilstandsinformasjonen for denne forespørselen." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Det ser ut til at informasjonskapslar er avslått i nettlesaren din. Vær vennleg og sjekk instillingane i nettlesaren din, og prøv på nytt." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP eksempel - testinnlogging med Shibboleth 1.3 via din IdP" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Tilstandsinformasjon tapt" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Hosted Shibboleth 1.3 Identity Provider Metadata (automatisk generert)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Rapporter denne feilen" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/pl/LC_MESSAGES/core.po b/modules/core/locales/pl/LC_MESSAGES/core.po index 200fb47c70..5bd968e474 100644 --- a/modules/core/locales/pl/LC_MESSAGES/core.po +++ b/modules/core/locales/pl/LC_MESSAGES/core.po @@ -1,16 +1,197 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Welcome" -msgstr "Witaj" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" + +msgid "An error has occurred" +msgstr "" + +msgid "Check that the link you used to access the web site is correct." +msgstr "" + +msgid "Close the web browser, and try again." +msgstr "" + +msgid "Continue" +msgstr "" + +msgid "Cookies may be disabled in the web browser." +msgstr "" + +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + +msgid "Go back to the previous page and try again." +msgstr "" + +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Metadane - Lokalny Shibboleth 1.3 Dostawca Tożsamości (generowane automatycznie)" msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" msgstr "Metadane - Lokalny Shibboleth 1.3 Dostawca Serwisu (generowane automatycznie)" +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "" + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "" + +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Retry" +msgstr "" + +msgid "Retry login" +msgstr "" + msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" msgstr "Shibboleth 1.3 SP - przykład - test logowania przez Twoje Shib IdP" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Metadane - Lokalny Shibboleth 1.3 Dostawca Tożsamości (generowane automatycznie)" +msgid "SimpleSAMLphp" +msgstr "" + +msgid "Suggestions for resolving this problem:" +msgstr "" + +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + +msgid "This error may be caused by:" +msgstr "" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "" + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + +msgid "Using the back and forward buttons in the web browser." +msgstr "" + +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "" + +msgid "Welcome" +msgstr "Witaj" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" + +msgid "Yes, all services" +msgstr "" + +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "" + +msgid "You are also logged in on these services:" +msgstr "" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" + +msgid "You are now successfully logged out from %SP%." +msgstr "" + +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/pt-br/LC_MESSAGES/core.po b/modules/core/locales/pt-br/LC_MESSAGES/core.po deleted file mode 100644 index d186451c51..0000000000 --- a/modules/core/locales/pt-br/LC_MESSAGES/core.po +++ /dev/null @@ -1,25 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"X-Domain: core\n" - -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Se você é um desenvolvedor que está implantando uma solução SSO, você tem um problema com a configuração de metadados. Verifique se os metadados estão configurados corretamente no provedor de identidade e no provedor de serviços." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Se você é um usuário que recebeu esse erro depois de seguir um link em um site, você deve relatar esse erro para o proprietário do site." - -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Isso é possivelmente um problema de configuração do provedor de serviços ou do provedor de identidade." - -msgid "Welcome" -msgstr "Seja bem-vindo(a)" - -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Hospedado Shibboleth 1.3 Service Provider Metadata (gerado automaticamente)" - -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP exemplo - efetuar login na sua Shib IDP" - -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Hospedado Shibboleth 1.3 Identity Provider Metadata (gerado automaticamente)" diff --git a/modules/core/locales/pt/LC_MESSAGES/core.po b/modules/core/locales/pt/LC_MESSAGES/core.po index 0d7df5d5ba..ef6496c7e6 100644 --- a/modules/core/locales/pt/LC_MESSAGES/core.po +++ b/modules/core/locales/pt/LC_MESSAGES/core.po @@ -1,37 +1,200 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" + +msgid "An error has occurred" +msgstr "" + +msgid "Check that the link you used to access the web site is correct." +msgstr "" + +msgid "Close the web browser, and try again." +msgstr "" + +msgid "Continue" +msgstr "" + +msgid "Cookies may be disabled in the web browser." +msgstr "" + +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + +msgid "Go back to the previous page and try again." +msgstr "" + +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Metadados do fornecedor de identidade (IdP) Shibboleth 1.3 local (gerado automaticamente)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Metadados do fornecedor de serviço (SP) Shibboleth 1.3 local (gerado automaticamente)" + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "" + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Cookie não encontrado" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "" + +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Retry" +msgstr "Tentar de novo" + msgid "Retry login" msgstr "Tentar de novo" +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Exemplo de um SP Shibboleth 1.3 - Para testes de login pelo seu IdP Shib" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "SimpleSAMLphp Advanced Features" +msgstr "Funcionalidades avançadas do SimpleSAMLphp" + +msgid "Suggestions for resolving this problem:" +msgstr "" + +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + +msgid "This error may be caused by:" +msgstr "" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "" + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + msgid "Too short interval between single sign on events." msgstr "Intervalo entre eventos de single sign on demasiado curto." +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + +msgid "Using the back and forward buttons in the web browser." +msgstr "" + msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." msgstr "Foi detectada uma repetição de autenticação neste serviço em poucos segundos. Este SP pode ter um problema." -msgid "Missing cookie" -msgstr "Cookie não encontrado" +msgid "Welcome" +msgstr "Bem vindo" -msgid "Retry" -msgstr "Tentar de novo" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" + +msgid "Yes, all services" +msgstr "" msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." msgstr "Provavelmente desligou o suporte de cookies no seu browser. Por favor verifique se tem o suporte de cookies ligado e tente de novo." -msgid "Welcome" -msgstr "Bem vindo" +msgid "You are also logged in on these services:" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Metadados do fornecedor de serviço (SP) Shibboleth 1.3 local (gerado automaticamente)" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Exemplo de um SP Shibboleth 1.3 - Para testes de login pelo seu IdP Shib" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "SimpleSAMLphp Advanced Features" -msgstr "Funcionalidades avançadas do SimpleSAMLphp" +msgid "got %got% values, want %want%" +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Metadados do fornecedor de identidade (IdP) Shibboleth 1.3 local (gerado automaticamente)" +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/pt_BR/LC_MESSAGES/core.po b/modules/core/locales/pt_BR/LC_MESSAGES/core.po new file mode 100644 index 0000000000..532b18453d --- /dev/null +++ b/modules/core/locales/pt_BR/LC_MESSAGES/core.po @@ -0,0 +1,194 @@ +msgid "" +msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" +"X-Domain: core\n" + +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" + +msgid "An error has occurred" +msgstr "" + +msgid "Check that the link you used to access the web site is correct." +msgstr "" + +msgid "Close the web browser, and try again." +msgstr "" + +msgid "Continue" +msgstr "" + +msgid "Cookies may be disabled in the web browser." +msgstr "" + +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + +msgid "Go back to the previous page and try again." +msgstr "" + +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Hospedado Shibboleth 1.3 Identity Provider Metadata (gerado automaticamente)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Hospedado Shibboleth 1.3 Service Provider Metadata (gerado automaticamente)" + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Se você é um desenvolvedor que está implantando uma solução SSO, você tem um problema com a configuração de metadados. Verifique se os metadados estão configurados corretamente no provedor de identidade e no provedor de serviços." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Se você é um usuário que recebeu esse erro depois de seguir um link em um site, você deve relatar esse erro para o proprietário do site." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "" + +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Retry" +msgstr "" + +msgid "Retry login" +msgstr "" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP exemplo - efetuar login na sua Shib IDP" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "Suggestions for resolving this problem:" +msgstr "" + +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + +msgid "This error may be caused by:" +msgstr "" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Isso é possivelmente um problema de configuração do provedor de serviços ou do provedor de identidade." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + +msgid "Using the back and forward buttons in the web browser." +msgstr "" + +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "" + +msgid "Welcome" +msgstr "Seja bem-vindo(a)" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" + +msgid "Yes, all services" +msgstr "" + +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "" + +msgid "You are also logged in on these services:" +msgstr "" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" + +msgid "You are now successfully logged out from %SP%." +msgstr "" + +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/ro/LC_MESSAGES/core.po b/modules/core/locales/ro/LC_MESSAGES/core.po index 5230dbb3f1..4fac1e071e 100644 --- a/modules/core/locales/ro/LC_MESSAGES/core.po +++ b/modules/core/locales/ro/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Încercați din nou" - -msgid "Too short interval between single sign on events." -msgstr "Interval prea scurt între evenimentele single sign-on." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "A fost detectat faptul că v-ați autentificat în urmă cu doar câteva secunde cu acest furnizor de servicii, se va considera că există o problemă cu acest furnizor de servicii." - -msgid "Missing cookie" -msgstr "Cookie lipsă" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Încearcă din nou" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Cookies au fost dezactivate în browser-ul dumneavoastră. Vă rugăm să verificați configurarea browser-ului după care încercați din nou." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Închideți browser-ul și încercați din nou." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Browser-ul are deactivate cookies." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Accesați pagina anterioară și încercați din nou." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Metadate pentru furnizorul de identitate Shibboleth 1.3 găzduit (generate automat)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Metadate pentru furnizorul de servicii Shibboleth 1.3 găzduit (generate automat)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Dacă problema persistă, anunțați administratorii de sistem." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Dacă sunteți dezvoltator care implementează o soluție single sign-on, aveți o problemă la configurarea metadatelor. Vă rugăm să verificați configurarea corectă a metadatelor, atât la furnizorul de identitate cât și la furnizorul de servicii." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Dacă sunteți un utilizator care a primit acest mesaj de eroare în urma utilizării unui link din alt sit, vă rugăm să anunțați această eroare deținătorului sitului respectiv." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Cookie lipsă" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Pornirea browser-ului cu file salvate într-o sesiune anterioară." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Vă rugăm să anunțați această eroare" + +msgid "Retry" +msgstr "Încearcă din nou" + +msgid "Retry login" +msgstr "Încercați din nou" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Exemplu furnizor de servicii Shibboleth 1.3 - testarea autentificării prin furnizorul dumneavoastră de identitate Shib" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Informațiile de stare au fost pierdute" + msgid "Suggestions for resolving this problem:" msgstr "Sugestii pentru rezolvarea acestei probleme:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Această eroare poate fi cauzată de:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Probabil există o problemă de configurare, fie la furnizorul de servicii fie la furnizorul de identitate." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Interval prea scurt între evenimentele single sign-on." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Utilizarea butoanelor \"înainte\" sau \"înapoi\" din browser." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Dacă sunteți dezvoltator care implementează o soluție single sign-on, aveți o problemă la configurarea metadatelor. Vă rugăm să verificați configurarea corectă a metadatelor, atât la furnizorul de identitate cât și la furnizorul de servicii." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Dacă sunteți un utilizator care a primit acest mesaj de eroare în urma utilizării unui link din alt sit, vă rugăm să anunțați această eroare deținătorului sitului respectiv." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "A fost detectat faptul că v-ați autentificat în urmă cu doar câteva secunde cu acest furnizor de servicii, se va considera că există o problemă cu acest furnizor de servicii." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Probabil există o problemă de configurare, fie la furnizorul de servicii fie la furnizorul de identitate." +msgid "We were unable to locate the state information for the current request." +msgstr "Nu a fost posibilă localizarea informațiilor de stare pentru cererea curentă." msgid "Welcome" msgstr "Bine ați venit" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Dacă problema persistă, anunțați administratorii de sistem." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Metadate pentru furnizorul de servicii Shibboleth 1.3 găzduit (generate automat)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Nu a fost posibilă localizarea informațiilor de stare pentru cererea curentă." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Cookies au fost dezactivate în browser-ul dumneavoastră. Vă rugăm să verificați configurarea browser-ului după care încercați din nou." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Exemplu furnizor de servicii Shibboleth 1.3 - testarea autentificării prin furnizorul dumneavoastră de identitate Shib" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Informațiile de stare au fost pierdute" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Metadate pentru furnizorul de identitate Shibboleth 1.3 găzduit (generate automat)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Vă rugăm să anunțați această eroare" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/ru/LC_MESSAGES/core.po b/modules/core/locales/ru/LC_MESSAGES/core.po index 1756b7edfb..5a8a801c38 100644 --- a/modules/core/locales/ru/LC_MESSAGES/core.po +++ b/modules/core/locales/ru/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Повторить попытку входа" - -msgid "Too short interval between single sign on events." -msgstr "Очень короткий промежуток времени между единым входом в событиях." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Мы обнаружили, что прошло только несколько секунд с момента последней аутентификации с этим поставщиком услуг, и, следовательно, предположили, что существует проблема с этим поставщиком услуг." - -msgid "Missing cookie" -msgstr "Отсутствует cookie-файл" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Повторить" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Видимо, вы отключили поддержку cookies в вашем браузере. Пожалуйста, проверьте настройки вашего браузера и повторите попытку." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Закрыть веб браузер и попробовать снова." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Возможно, в браузере отключены Cookies." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Вернуться к предыдущей странице и попробовать снова." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Метаданные Shibboleth 1.3 Провайдера подлинности (IdP) (генерируются автоматически)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Метаданные Shibboleth 1.3 Поставщика Услуг (SP) (генерируются автоматически)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Если проблема остается, сообщить об этом администратору." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Если вы разработчик внедряющий Технологию единого вход (SSO), у вас есть проблемы с метаданными конфигурации. Убедитесь, что метаданные настроены правильно на Провайдере подлинности и Поставщике услуг." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Если, перейдя по ссылке на сайт, вы увидели эту ошибку, вы должны сообщить об этом владелецу этого сайта." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Отсутствует cookie-файл" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Открыт браузер с сохраненными закладками от предыдущей сессии." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Сообщить о данной ошибке" + +msgid "Retry" +msgstr "Повторить" + +msgid "Retry login" +msgstr "Повторить попытку входа" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Пример Shibboleth 1.3 SP - тестовый вход в систему через ваш Shib IdP" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Информация о состоянии утеряна" + msgid "Suggestions for resolving this problem:" msgstr "Варианты решения проблемы:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Эта ошибка может быть вызвана:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Скорее всего, это проблема конфигурации поставщика услуг или провайдера подлинности." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Очень короткий промежуток времени между единым входом в событиях." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Используйте клавиши \"Вперед\" \"Назад\" в броузере." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Если вы разработчик внедряющий Технологию единого вход (SSO), у вас есть проблемы с метаданными конфигурации. Убедитесь, что метаданные настроены правильно на Провайдере подлинности и Поставщике услуг." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Если, перейдя по ссылке на сайт, вы увидели эту ошибку, вы должны сообщить об этом владелецу этого сайта." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Мы обнаружили, что прошло только несколько секунд с момента последней аутентификации с этим поставщиком услуг, и, следовательно, предположили, что существует проблема с этим поставщиком услуг." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Скорее всего, это проблема конфигурации поставщика услуг или провайдера подлинности." +msgid "We were unable to locate the state information for the current request." +msgstr "Не удалось определить информацию о состоянии для данного запроса." msgid "Welcome" msgstr "Добро пожаловать" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Если проблема остается, сообщить об этом администратору." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Метаданные Shibboleth 1.3 Поставщика Услуг (SP) (генерируются автоматически)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Не удалось определить информацию о состоянии для данного запроса." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Видимо, вы отключили поддержку cookies в вашем браузере. Пожалуйста, проверьте настройки вашего браузера и повторите попытку." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Пример Shibboleth 1.3 SP - тестовый вход в систему через ваш Shib IdP" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Информация о состоянии утеряна" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Метаданные Shibboleth 1.3 Провайдера подлинности (IdP) (генерируются автоматически)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Сообщить о данной ошибке" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/sk/LC_MESSAGES/core.po b/modules/core/locales/sk/LC_MESSAGES/core.po index 4f904b052c..4900fc8f21 100644 --- a/modules/core/locales/sk/LC_MESSAGES/core.po +++ b/modules/core/locales/sk/LC_MESSAGES/core.po @@ -1,58 +1,95 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Služba požaduje Vašu autentifikáciu. Zadajte, prosím, Vaše prihlasovacie meno a heslo do formulára nižšie." + +msgid "An error has occurred" +msgstr "" + +msgid "Check that the link you used to access the web site is correct." +msgstr "Skontrolujte, či je odkaz na prístup k webovej stránke správny." + +msgid "Close the web browser, and try again." +msgstr "Zatvorte prehliadač a skúste to znovu." + +msgid "Continue" +msgstr "Pokračovať" + +msgid "Cookies may be disabled in the web browser." +msgstr "Súbory cookies môžu byť vypnuté v prehliadači." + +msgid "Do you want to logout from all the services above?" +msgstr "Chcete sa odhlásiť zo všetkých služieb vyššie?" + +msgid "Enter your username and password" +msgstr "Zadajte Vaše prihlasovacie meno a heslo" + msgid "Error report sent" msgstr "Chybová správa odoslaná" -msgid "The error report has been sent to the administrators." -msgstr "Chybová správa bola odoslaná administrátorom." +msgid "Go back to the previous page and try again." +msgstr "Choďte späť na predchádzajúcu stránku a skúste to znovu." -msgid "Incorrect Attributes" -msgstr "Nesprávne atribúty" +msgid "Help! I don't remember my password." +msgstr "" -msgid "Logout" -msgstr "Odhlásenie" +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." -msgstr "Jedna alebo viacero atribútov poskytnutých od poskytovateľa identity nespĺňa očakávané množstvo hodnôt." +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Metadáta lokálne prevádzkovaného Shibboleth 1.3 Service Provider (automaticky generované)" -msgid "The problematic attribute(s) are:" -msgstr "Problémové atribúty sú:" +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Ak tento problém pretrváva, môžete odoslať hlásenie systémovým administrátorom." -msgid "got %got% values, want %want%" -msgstr "dostané %got% hodnoty, očakávané %want%" +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Ak ste vývojár a nastavujete systém jednotného prihlásenia, máte problém s konfiguráciou metadát. Skontrolujte, či sú metadáta nakonfigurované správne na oboch stranách - poskytovateľa služby a poskytovateľa identity" -msgid "Logging out..." -msgstr "Odhlasuje sa..." +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Ak ste dostali túto chybu po kliknutí na odkaz na nejakej stránky, mali by ste túto chybu nahlásiť vlastníkovi tejto stránky." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" msgstr "Ak nahlasujete túto chybu, nahláste prosím aj toto sledovacie číslo, ktoré umožní administrátorovi nájsť Vašu reláciu v logoch:" -msgid "Retry login" -msgstr "Znovu skúsiť prihlásenie" +msgid "Incorrect Attributes" +msgstr "Nesprávne atribúty" -msgid "SimpleSAMLphp" +msgid "Logging out..." +msgstr "Odhlasuje sa..." + +msgid "Login" msgstr "" -msgid "Too short interval between single sign on events." -msgstr "Moc krátky interval medzi akciami jednotného prihlásenia." +msgid "Logout" +msgstr "Odhlásenie" -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Detekovali sme, že prebehlo iba pár sekúnd od poslednej autentifikácie s týmto poskytovateľom služby, a preto predpokladáme, že je s týmto poskytovateľom služby problém." +msgid "Missing cookie" +msgstr "Chýba cookie" -msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." -msgstr "Služba požaduje Vašu autentifikáciu. Zadajte, prosím, Vaše prihlasovacie meno a heslo do formulára nižšie." +msgid "No" +msgstr "Nie" -msgid "Enter your username and password" -msgstr "Zadajte Vaše prihlasovacie meno a heslo" +msgid "No, only %SP%" +msgstr "Nie, iba %SP%" -msgid "Help! I don't remember my password." -msgstr "" +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "Jedna alebo viacero atribútov poskytnutých od poskytovateľa identity nespĺňa očakávané množstvo hodnôt." -msgid "Login" -msgstr "" +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "Otvorený prehliadač s kartami z predchádzajúcej relácie." msgid "Organization" msgstr "" @@ -72,110 +109,101 @@ msgstr "" msgid "Remember my username" msgstr "" -msgid "Username" -msgstr "" - -msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" -msgstr "Bez prihlasovacieho mena a hesla sa nemôžete autentifikovať pre prístup do služby. Kontaktujte podporu Vašej organizácie." - -msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." -msgstr "" - -msgid "Missing cookie" -msgstr "Chýba cookie" +msgid "Report this error" +msgstr "Nahlásiť túto chybu" msgid "Retry" msgstr "Opakovať" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Vyzerá to tak, že ste zablokovali súbory cookies vo Vašom prehliadači. Prosím, skontrolujte nastavenia vo Vašom prehliadači a skúste to znovu." - -msgid "Check that the link you used to access the web site is correct." -msgstr "Skontrolujte, či je odkaz na prístup k webovej stránke správny." - -msgid "Close the web browser, and try again." -msgstr "Zatvorte prehliadač a skúste to znovu." +msgid "Retry login" +msgstr "Znovu skúsiť prihlásenie" -msgid "Cookies may be disabled in the web browser." -msgstr "Súbory cookies môžu byť vypnuté v prehliadači." +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP - testovanie prihlasovania cez Shib IdP" -msgid "Go back to the previous page and try again." -msgstr "Choďte späť na predchádzajúcu stránku a skúste to znovu." +msgid "SimpleSAMLphp" +msgstr "" -msgid "Opened the web browser with tabs saved from the previous session." -msgstr "Otvorený prehliadač s kartami z predchádzajúcej relácie." +msgid "State information lost" +msgstr "Stavová informácia stratená" msgid "Suggestions for resolving this problem:" msgstr "Návrhy na vyriešenie tohto problému:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "Chybová správa bola odoslaná administrátorom." + +msgid "The identification procesd has failed." +msgstr "" + msgid "The link used to get here was bad, perhaps a bookmark." msgstr "Odkaz smerujúci sem je zlý, napríklad zo záložky." -msgid "This error may be caused by:" -msgstr "Možné dôvody tejto chyby:" +msgid "The problematic attribute(s) are:" +msgstr "Problémové atribúty sú:" -msgid "Using the back and forward buttons in the web browser." -msgstr "Použitie tlačidla späť a vpred v prehliadači." +msgid "There was an issue while signing you in." +msgstr "" -msgid "Continue" -msgstr "Pokračovať" +msgid "This error may be caused by:" +msgstr "Možné dôvody tejto chyby:" -msgid "Do you want to logout from all the services above?" -msgstr "Chcete sa odhlásiť zo všetkých služieb vyššie?" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Toto je najpravdepodobnejšie problém konfigurácie buď na strane poskytovateľa služby alebo identity." -msgid "No" -msgstr "Nie" +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" -msgid "No, only %SP%" -msgstr "Nie, iba %SP%" +msgid "Too short interval between single sign on events." +msgstr "Moc krátky interval medzi akciami jednotného prihlásenia." msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." msgstr "Nepodarilo sa odhlásiť z jednej alebo viacerých služieb. Aby ste uistili, že sú všetky relácie zatvorené, je odporúčané zatvoriť Váš prehliadač." -msgid "Yes, all services" -msgstr "Áno, všetky služby" +msgid "Username" +msgstr "" -msgid "You are also logged in on these services:" -msgstr "Ste tiež prihlásený na týchto službách:" +msgid "Using the back and forward buttons in the web browser." +msgstr "Použitie tlačidla späť a vpred v prehliadači." -msgid "You are now successfully logged out from %SP%." -msgstr "Teraz ste úspešne odhlásený z %SP%." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Detekovali sme, že prebehlo iba pár sekúnd od poslednej autentifikácie s týmto poskytovateľom služby, a preto predpokladáme, že je s týmto poskytovateľom služby problém." -msgid "logout is not supported" -msgstr "Odhlásenie sa nie je podporované" +msgid "We were unable to locate the state information for the current request." +msgstr "Nepodarilo sa nám nájsť informáciu o stave pre aktuálnu požiadavku." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Ak ste vývojár a nastavujete systém jednotného prihlásenia, máte problém s konfiguráciou metadát. Skontrolujte, či sú metadáta nakonfigurované správne na oboch stranách - poskytovateľa služby a poskytovateľa identity" +msgid "Welcome" +msgstr "Vitajte" -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Ak ste dostali túto chybu po kliknutí na odkaz na nejakej stránky, mali by ste túto chybu nahlásiť vlastníkovi tejto stránky." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Bez prihlasovacieho mena a hesla sa nemôžete autentifikovať pre prístup do služby. Kontaktujte podporu Vašej organizácie." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Toto je najpravdepodobnejšie problém konfigurácie buď na strane poskytovateľa služby alebo identity." +msgid "Yes, all services" +msgstr "Áno, všetky služby" -msgid "Welcome" -msgstr "Vitajte" +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Vyzerá to tak, že ste zablokovali súbory cookies vo Vašom prehliadači. Prosím, skontrolujte nastavenia vo Vašom prehliadači a skúste to znovu." -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Ak tento problém pretrváva, môžete odoslať hlásenie systémovým administrátorom." +msgid "You are also logged in on these services:" +msgstr "Ste tiež prihlásený na týchto službách:" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Metadáta lokálne prevádzkovaného Shibboleth 1.3 Service Provider (automaticky generované)" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Nepodarilo sa nám nájsť informáciu o stave pre aktuálnu požiadavku." +msgid "You are now successfully logged out from %SP%." +msgstr "Teraz ste úspešne odhlásený z %SP%." msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." msgstr "Máte zastaralú verziu SimpleSAMLphp. Aktualizujte prosím čo najskôr na najnovšiu verziu." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP - testovanie prihlasovania cez Shib IdP" - -msgid "State information lost" -msgstr "Stavová informácia stratená" - -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgid "got %got% values, want %want%" +msgstr "dostané %got% hodnoty, očakávané %want%" -msgid "Report this error" -msgstr "Nahlásiť túto chybu" +msgid "logout is not supported" +msgstr "Odhlásenie sa nie je podporované" diff --git a/modules/core/locales/sl/LC_MESSAGES/core.po b/modules/core/locales/sl/LC_MESSAGES/core.po index eb1e29837e..b8f66efe74 100644 --- a/modules/core/locales/sl/LC_MESSAGES/core.po +++ b/modules/core/locales/sl/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Ponovna prijava" - -msgid "Too short interval between single sign on events." -msgstr "Prekratek interval med dogodki enotne prijave." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Sistem je zaznal naslednje, od predhodnje in te prijave je poteklo le nekaj sekund, zato sklepa na težave ponudnika storitve (SP)." - -msgid "Missing cookie" -msgstr "Piškotek (\"cookie\") ne obstaja!" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Poskusi ponovno" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Vaš spletni brskalnik ima onemogočene piškotke (\"cookies\"). Omogočite to nastavitev in poskusite ponovno." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Zaprite spletni brskalnik in poskusite znova." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Spletni brskalnik ima izklopjeno podporo za piškotke." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Pojdite nazaj na prejšnjo stran in poskusite znova." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Metapodatki za Shibboleth 1.3 IdP (samodejno generirani)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Metapodatki za Shibboleth 1.3 SP (samodejno generirani)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Če se ta napaka ponavlja, jo lahko prijavite za skrbniku sistema." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Če ste razvijalec, ki razvija SSO rešitev preverite, ali so nastavitve metapodatkov ustrezne, tako na stani ponudnika identitete (IdP), kot na strani ponudnika storitve (SP)." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Če ste na to težavo naleteli po kliku povezave te spletne strani, prijavite težavo skrbniku te spletne strani." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Piškotek (\"cookie\") ne obstaja!" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Spletni brskalnik je odprl spletno stan s (poteklimi) podatki iz prejšnje seje." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Prijavite to napako" + +msgid "Retry" +msgstr "Poskusi ponovno" + +msgid "Retry login" +msgstr "Ponovna prijava" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP primer - preveri prijavo preko svojega Shib IdP" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Informacije o stanju zahtevka niso na voljo." + msgid "Suggestions for resolving this problem:" msgstr "Predloga za razrešitev nastale težave:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Vzrok za to napako je lahko:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Najverjetneje gre za težavo z nastavitvami bodisi ponudnika storitve (SP) bodisi ponudnika identitet (IdP)." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Prekratek interval med dogodki enotne prijave." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Uporaba gumbov \"nazaj\" ali \"naprej\" v spletnem brskalniku." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Če ste razvijalec, ki razvija SSO rešitev preverite, ali so nastavitve metapodatkov ustrezne, tako na stani ponudnika identitete (IdP), kot na strani ponudnika storitve (SP)." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Če ste na to težavo naleteli po kliku povezave te spletne strani, prijavite težavo skrbniku te spletne strani." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Sistem je zaznal naslednje, od predhodnje in te prijave je poteklo le nekaj sekund, zato sklepa na težave ponudnika storitve (SP)." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Najverjetneje gre za težavo z nastavitvami bodisi ponudnika storitve (SP) bodisi ponudnika identitet (IdP)." +msgid "We were unable to locate the state information for the current request." +msgstr "Informacije o stanju trenutne zahteve ni bilo moč najti." msgid "Welcome" msgstr "Dobrodošli" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Če se ta napaka ponavlja, jo lahko prijavite za skrbniku sistema." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Metapodatki za Shibboleth 1.3 SP (samodejno generirani)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Informacije o stanju trenutne zahteve ni bilo moč najti." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Vaš spletni brskalnik ima onemogočene piškotke (\"cookies\"). Omogočite to nastavitev in poskusite ponovno." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP primer - preveri prijavo preko svojega Shib IdP" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Informacije o stanju zahtevka niso na voljo." +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Metapodatki za Shibboleth 1.3 IdP (samodejno generirani)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Prijavite to napako" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/sr/LC_MESSAGES/core.po b/modules/core/locales/sr/LC_MESSAGES/core.po index 98751c7b14..f52e731307 100644 --- a/modules/core/locales/sr/LC_MESSAGES/core.po +++ b/modules/core/locales/sr/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Pokušaj se prijaviti ponovo" - -msgid "Too short interval between single sign on events." -msgstr "Prekratak interval između uzastopnih SSO prijava." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Prošlo tek nekoliko sekundi otkad ste se zadnji put autentifikovali za pristup ovoj aplikaciji te stoga pretpostavljamo da se javio problem kod davaoca servisa." - -msgid "Missing cookie" -msgstr "Nedostaje kolačić (cookie)" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Pokušaj ponovo" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Izgleda da ste onemogućili kolačiće (cookies) u vašem web pretraživaču. Molimo proverite podešavanja vašeg web pretraživača i pokušajte ponovo." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Zatvorite web pretraživač i pokušajte ponovo." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Moguće da je podrška za kolačiće (\"cookies\") isključena u web pretraživaču." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Vratite se na prethodnu stranicu i pokušajte ponovo." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Metapodaci za lokalni Shibboleth 1.3 Davalac Identiteta (automatski generisani)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Metapodaci za lokalni Shibboleth 1.3 Davalac Servisa (automatski generisani)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Ako se ova greška bude i dalje pojavljivala, možete je prijaviti administratorima." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Postoji greška sa podešavanjima metapodataka. Ukoliko ste administrator sistema, proverite da li metapodaci ispravno uneseni na strani davaoca servisa i davaoca identiteta." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Ukoliko se ova greška pojavila nakon što ste sledili link na nekoj web stranici, onda biste grešku trebali prijaviti vlasniku navedene stranice." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Nedostaje kolačić (cookie)" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Otvaranjem web pretraživača sa stranicama sačuvanim iz prethodne sesije." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Prijavite ovu grešku" + +msgid "Retry" +msgstr "Pokušaj ponovo" + +msgid "Retry login" +msgstr "Pokušaj se prijaviti ponovo" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP primer - testirajte autentifikaciju kroz vaš Shib Davalac Servisa" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Informacije o stanju su izgubljene" + msgid "Suggestions for resolving this problem:" msgstr "Preporuke za rešavanje ovog problema:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Ova greška može biti uzrokovana:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Najverojatnije je problem u podešavanjima davaoca servisa ili davaoca identiteta." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "Prekratak interval između uzastopnih SSO prijava." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Korišćenjem tastera za prethodnu (back) i sledeću (forward) stranicu u web pretraživaču." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Postoji greška sa podešavanjima metapodataka. Ukoliko ste administrator sistema, proverite da li metapodaci ispravno uneseni na strani davaoca servisa i davaoca identiteta." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Ukoliko se ova greška pojavila nakon što ste sledili link na nekoj web stranici, onda biste grešku trebali prijaviti vlasniku navedene stranice." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Prošlo tek nekoliko sekundi otkad ste se zadnji put autentifikovali za pristup ovoj aplikaciji te stoga pretpostavljamo da se javio problem kod davaoca servisa." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Najverojatnije je problem u podešavanjima davaoca servisa ili davaoca identiteta." +msgid "We were unable to locate the state information for the current request." +msgstr "Ne možemo pronaći informacije o stanju aktuelnog zahteva." msgid "Welcome" msgstr "Dobrodošli" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Ako se ova greška bude i dalje pojavljivala, možete je prijaviti administratorima." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Metapodaci za lokalni Shibboleth 1.3 Davalac Servisa (automatski generisani)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Ne možemo pronaći informacije o stanju aktuelnog zahteva." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Izgleda da ste onemogućili kolačiće (cookies) u vašem web pretraživaču. Molimo proverite podešavanja vašeg web pretraživača i pokušajte ponovo." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP primer - testirajte autentifikaciju kroz vaš Shib Davalac Servisa" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Informacije o stanju su izgubljene" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Metapodaci za lokalni Shibboleth 1.3 Davalac Identiteta (automatski generisani)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Prijavite ovu grešku" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/st/LC_MESSAGES/core.po b/modules/core/locales/st/LC_MESSAGES/core.po deleted file mode 100644 index 58794ecda5..0000000000 --- a/modules/core/locales/st/LC_MESSAGES/core.po +++ /dev/null @@ -1,68 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"X-Domain: core\n" - -msgid "Incorrect Attributes" -msgstr "Makgabane a Fosahetseng" - -msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." -msgstr "E le nngwe kapa ho feta ya makgabane a fanweng ke wena ke mofani wa boitsebiso wa hao ha e na lenane le nepahetseng la dipalo." - -msgid "The problematic attribute(s) are:" -msgstr "Makgabane a nang le mathata ke:" - -msgid "Missing cookie" -msgstr "Khukhi e siyo" - -msgid "Retry" -msgstr "Khukhi e siyo" - -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "O bonahala o kwetse dikhukhi sebading sa hao. Ka kopo hlahloba disetting sebading sa hao." - -msgid "Close the web browser, and try again." -msgstr "Kwala sebadi sa webe, ebe o leka hape." - -msgid "Cookies may be disabled in the web browser." -msgstr "Dikhuki di ka nna tsa kwalwa sebading sa webe." - -msgid "Go back to the previous page and try again." -msgstr "Kgutlela leqepheng le fetileng ebe o leka hape." - -msgid "Opened the web browser with tabs saved from the previous session." -msgstr "O butse sebadi sa webe ka di-tab tse bolokilweng sesheneng e fetileng." - -msgid "Suggestions for resolving this problem:" -msgstr "Ditlhahiso bakeng sa ho rarolla bothata bona:" - -msgid "This error may be caused by:" -msgstr "Phoso ena e ka bakwa ke:" - -msgid "Using the back and forward buttons in the web browser." -msgstr "Ho sebedisa dikonopo tsa pele le morao sebading sa webo." - -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Haeba o mohlahisi ya sebedisang tharollo ya ho saena hang, o na le bothata ka phetolo ya metadata. Netefatsa hore metadata e hlophiswe ka ho nepahala ho bobedi mofani wa boitsebiso le mofani wa tshebeletso." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Haeba o le mosebedisi ya fumaneng phoso ena kamora ho latela lehokela le setsing, o tlameha ho tlaleha phoso ena ho monga setsi." - -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Bona ke bothata bo ka kgonahalang ka ho fetisisa ho mofani wa tshebeletso kapa mofani wa tshebeletso." - -msgid "We were unable to locate the state information for the current request." -msgstr "Ha re kgone ho fumana tlhahisoleseding ka provenseng bakeng sa kopo ya ha jwale." - -#, python-format -msgid "got %GOT% values, want %WANT%" -msgstr "o fumane dipalo tse %GOT%, o batla tse %WANT%" - -msgid "Report this error" -msgstr "Tlaleha phoso ena" - -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Haeba bothata bona bo phehella, o ka bo tlaleha ho batsamaisi ba sistimi." - -msgid "State information lost" -msgstr "Tlhahisoleseding ya provense e lahlehile" diff --git a/modules/core/locales/sv/LC_MESSAGES/core.po b/modules/core/locales/sv/LC_MESSAGES/core.po index 8134a9aa09..f0036b7c7a 100644 --- a/modules/core/locales/sv/LC_MESSAGES/core.po +++ b/modules/core/locales/sv/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "Försök med inloggningen igen" - -msgid "Too short interval between single sign on events." -msgstr "För kort intervall mellan inloggningar." - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "Vi har upptäckt att det bara vara några få sekunder sedan du senast loggade in mot denna tjänst (service provider) och därför antar vi att det är ett problem med denna tjänst." - -msgid "Missing cookie" -msgstr "Saknar webbläsarkaka (cookie)" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Försök igen" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "Det verkar som om du har stängt av möjligheten till kakor (cookies) i din webbläsare. Kontrollera inställningarna i webbläsaren och försök igen." +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "Stäng din webbläsare och försök igen." +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "Webbkakor (Cookies) är avstängt i webbläsaren." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "Gå tillbaka till föregående sida och försök igen." +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Lokala Shibboleth 1.3 Identity Provider Metadata (automatiskt genererat)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Lokala Shibboleth 1.3 Service Provider Metadata (automatiskt genererat)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Om problemet kvarstår kan du rapportera det till systemadministratörerna." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Om du är en utvecklare som driftsätter en lösning med single-on har du problem med metadatakonfigurationen. Kontrollera att metadata är korrekt konfigurerade både i identitetsutgivare och tjänsteleverantören." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Om du är en användare och fick detta fel när du klickade på en länk bör du rapportera felet till den som hanterar webbplatsen med länken." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "Saknar webbläsarkaka (cookie)" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Öppnande av webbläsaren med sparade flikar från tidigare användning." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "Rapportera detta fel" + +msgid "Retry" +msgstr "Försök igen" + +msgid "Retry login" +msgstr "Försök med inloggningen igen" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP exempel - testinloggning med SAML 2.0 via din IdP" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "Tillståndsinformation är förlorad" + msgid "Suggestions for resolving this problem:" msgstr "Förslag för att åtgärda detta problem:" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Detta fel kan bero på:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Detta beror oftast på ett konfigurationsfel antingen i tjänsteleverantören eller identitetsutgivaren." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "För kort intervall mellan inloggningar." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Användning av framåt- och bakåtknappar i webbläsaren." -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "Om du är en utvecklare som driftsätter en lösning med single-on har du problem med metadatakonfigurationen. Kontrollera att metadata är korrekt konfigurerade både i identitetsutgivare och tjänsteleverantören." - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "Om du är en användare och fick detta fel när du klickade på en länk bör du rapportera felet till den som hanterar webbplatsen med länken." +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Vi har upptäckt att det bara vara några få sekunder sedan du senast loggade in mot denna tjänst (service provider) och därför antar vi att det är ett problem med denna tjänst." -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "Detta beror oftast på ett konfigurationsfel antingen i tjänsteleverantören eller identitetsutgivaren." +msgid "We were unable to locate the state information for the current request." +msgstr "Hittar inte tillståndsinformationen för aktuell förfrågan." msgid "Welcome" msgstr "Välkommen" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "Om problemet kvarstår kan du rapportera det till systemadministratörerna." +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "Lokala Shibboleth 1.3 Service Provider Metadata (automatiskt genererat)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "Hittar inte tillståndsinformationen för aktuell förfrågan." +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Det verkar som om du har stängt av möjligheten till kakor (cookies) i din webbläsare. Kontrollera inställningarna i webbläsaren och försök igen." -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP exempel - testinloggning med SAML 2.0 via din IdP" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "Tillståndsinformation är förlorad" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Lokala Shibboleth 1.3 Identity Provider Metadata (automatiskt genererat)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "Rapportera detta fel" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/th/LC_MESSAGES/core.po b/modules/core/locales/th/LC_MESSAGES/core.po new file mode 100644 index 0000000000..06fe6f3c62 --- /dev/null +++ b/modules/core/locales/th/LC_MESSAGES/core.po @@ -0,0 +1,206 @@ +msgid "" +msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" +"X-Domain: core\n" + +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "ระบบต้องการให้คุณยืนยันตัวตน กรุณากรอกชื่อผู้ใช้และรหัสผ่านด้านล่าง" + +msgid "An error has occurred" +msgstr "เกิดข้อผิดพลาด" + +msgid "Check that the link you used to access the web site is correct." +msgstr "โปรดตรวจสอบว่าลิงก์ที่คุณใช้เข้าสู่เว็บไซต์ถูกต้องหรือไม่" + +msgid "Close the web browser, and try again." +msgstr "กรุณาปิดเว็บเบราว์เซอร์และลองใหม่อีกครั้ง" + +msgid "Continue" +msgstr "ดำเนินการต่อ" + +msgid "Cookies may be disabled in the web browser." +msgstr "เบราว์เซอร์ของคุณอาจปิดการใช้งานคุกกี้อยู่" + +msgid "Do you want to logout from all the services above?" +msgstr "คุณต้องการออกจากระบบบริการทั้งหมดข้างต้นหรือไม่?" + +msgid "Enter your username and password" +msgstr "กรุณากรอกชื่อผู้ใช้และรหัสผ่านของคุณ" + +msgid "Error report sent" +msgstr "ส่งรายงานข้อผิดพลาดแล้ว" + +msgid "Go back to the previous page and try again." +msgstr "กลับไปยังหน้าก่อนหน้าแล้วลองอีกครั้ง" + +msgid "Help! I don't remember my password." +msgstr "ขอความช่วยเหลือ! ฉันจำรหัสผ่านไม่ได้" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "ข้อมูลเมตาของผู้ให้บริการข้อมูลประจำตัว Shibboleth 1.3 ที่โฮสต์ไว้ (สร้างโดยอัตโนมัติ)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "ข้อมูลเมตาของผู้ให้บริการ Shibboleth 1.3 ที่โฮสต์ไว้ (สร้างโดยอัตโนมัติ)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "หากปัญหายังคงเกิดขึ้น คุณสามารถรายงานไปยังผู้ดูแลระบบได้" + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "หากคุณเป็นนักพัฒนาที่กำลังใช้งานโซลูชันการลงชื่อเข้าใช้ครั้งเดียว คุณจะพบปัญหาเกี่ยวกับการกำหนดค่าเมตาเดตา ตรวจสอบว่าเมตาเดตาได้รับการกำหนดค่าอย่างถูกต้องทั้งในผู้ให้บริการข้อมูลประจำตัวและผู้ให้บริการ" + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "หากคุณเป็นนักพัฒนาที่กำลังใช้งานโซลูชันการลงชื่อเข้าใช้แบบครั้งเดียว อาจกำลังใช้วิธีการ HTTP ผิดสำหรับจุดสิ้นสุดนี้" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "หากคุณเป็นผู้ใช้ที่เจอข้อผิดพลาดจากลิงก์บนเว็บไซต์ โปรดแจ้งเจ้าของเว็บไซต์นั้น" + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "หากคุณเป็นผู้ดูแลระบบการติดตั้งนี้ โปรดดู เอกสาร SimpleSAMLphp เพื่อดูวิธีการกำหนดค่าและโต้ตอบกับซอฟต์แวร์" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "กรุณาแนบหมายเลขติดตามนี้เมื่อรายงานข้อผิดพลาด เพื่อให้ผู้ดูแลสามารถตรวจสอบเซสชันของคุณได้" + +msgid "Incorrect Attributes" +msgstr "คุณสมบัติไม่ถูกต้อง" + +msgid "Logging out..." +msgstr "กำลังออกจากระบบ..." + +msgid "Login" +msgstr "เข้าสู่ระบบ" + +msgid "Logout" +msgstr "ออกจากระบบ" + +msgid "Missing cookie" +msgstr "ไม่พบคุกกี้" + +msgid "No" +msgstr "ไม่" + +msgid "No, only %SP%" +msgstr "ไม่ มีเพียง %SP% เท่านั้น" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "แอตทริบิวต์หนึ่งรายการขึ้นไปที่ผู้ให้บริการข้อมูลประจำตัวของคุณจัดทำไว้ไม่มีค่าตามจำนวนที่คาดไว้" + +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "เปิดเว็บเบราว์เซอร์ด้วยแท็บที่บันทึกไว้จากเซสชันก่อนหน้า" + +msgid "Organization" +msgstr "องค์กร" + +msgid "Password" +msgstr "รหัสผ่าน" + +msgid "Processing..." +msgstr "กำลังดำเนินการ..." + +msgid "Remember me" +msgstr "จำฉันไว้" + +msgid "Remember my organization" +msgstr "จำชื่อองค์กรของฉันไว้" + +msgid "Remember my username" +msgstr "จำชื่อผู้ใช้ของฉัน" + +msgid "Report this error" +msgstr "รายงานข้อผิดพลาดนี้" + +msgid "Retry" +msgstr "ลองใหม่อีกครั้ง" + +msgid "Retry login" +msgstr "ลองเข้าสู่ระบบอีกครั้ง" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "ตัวอย่าง Shibboleth 1.3 SP - ทดสอบการเข้าสู่ระบบผ่าน Shib IdP ของคุณ" + +msgid "SimpleSAMLphp" +msgstr "SimpleSAMLphp" + +msgid "State information lost" +msgstr "ข้อมูลสถานะสูญหาย" + +msgid "Suggestions for resolving this problem:" +msgstr "คำแนะนำเพื่อแก้ไขปัญหานี้:" + +msgid "The authentication procesd has failed." +msgstr "การยืนยันตัวตนล้มเหลว" + +msgid "The authorization procesd has failed." +msgstr "การอนุญาตเข้าระบบล้มเหลว" + +msgid "The error report has been sent to the administrators." +msgstr "รายงานข้อผิดพลาดได้ถูกส่งไปยังผู้ดูแลระบบแล้ว" + +msgid "The identification procesd has failed." +msgstr "กระบวนการระบุตัวตนล้มเหลว" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "ลิงก์ที่ใช้เข้ามาอาจผิดพลาดหรือเป็นบุ๊กมาร์กเก่า" + +msgid "The problematic attribute(s) are:" +msgstr "คุณสมบัติที่เป็นปัญหามีดังนี้:" + +msgid "There was an issue while signing you in." +msgstr "มีปัญหาระหว่างขั้นตอนการเข้าสู่ระบบ" + +msgid "This error may be caused by:" +msgstr "ข้อผิดพลาดนี้อาจเกิดจาก:" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "ปัญหานี้อาจเกิดจากการกำหนดค่าของผู้ให้บริการหรือผู้ให้บริการข้อมูลประจำตัว" + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "นี่คือหน้าแรกของระบบยืนยันตัวตน SimpleSAMLphp ไม่มีข้อมูลเพิ่มเติมที่นี่" + +msgid "Too short interval between single sign on events." +msgstr "ช่วงเวลาระหว่างการเข้าสู่ระบบครั้งก่อนสั้นเกินไป" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "ไม่สามารถออกจากระบบบริการหนึ่งบริการหรือมากกว่านั้นได้ เพื่อให้แน่ใจว่าเซสชันทั้งหมดของคุณถูกปิดแล้ว เราขอแนะนำให้คุณ ปิดเว็บเบราว์เซอร์ของคุณ" + +msgid "Username" +msgstr "ชื่อผู้ใช้" + +msgid "Using the back and forward buttons in the web browser." +msgstr "การใช้ปุ่มย้อนกลับและไปข้างหน้าในเว็บเบราว์เซอร์" + +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "ระบบตรวจพบว่าคุณเพิ่งยืนยันตัวตนกับ SP นี้เมื่อไม่กี่วินาที อาจมีปัญหากับ SP" + +msgid "We were unable to locate the state information for the current request." +msgstr "ไม่พบข้อมูลสถานะของคำขอปัจจุบัน" + +msgid "Welcome" +msgstr "ยินดีต้อนรับ" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "หากไม่มีชื่อผู้ใช้และรหัสผ่าน คุณจะไม่สามารถเข้าถึงบริการได้ โปรดติดต่อเจ้าหน้าที่ช่วยเหลือขององค์กร" + +msgid "Yes, all services" +msgstr "ใช่, ออกจากทุกบริการ" + +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "เบราว์เซอร์ของคุณอาจปิดการใช้งานคุกกี้ กรุณาตรวจสอบการตั้งค่าและลองอีกครั้ง" + +msgid "You are also logged in on these services:" +msgstr "คุณยังเข้าสู่ระบบบริการเหล่านี้:" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "ขณะนี้คุณกำลังเข้าถึงระบบทดสอบ ซึ่งการตั้งค่าสำหรับการยืนยันตัวตนนี้ใช้เพื่อการทดสอบและตรวจสอบก่อนใช้งานจริงเท่านั้น หากมีใครส่งลิงก์นี้มาให้คุณ และคุณไม่ใช่ ผู้ทดสอบ แสดงว่าคุณอาจได้รับลิงก์ที่ไม่" + +msgid "You are now successfully logged out from %SP%." +msgstr "คุณออกจากระบบของ %SP% เรียบร้อยแล้ว" + +msgid "got %got% values, want %want%" +msgstr "ได้รับค่า %got% , ต้องการ %want%" + +msgid "logout is not supported" +msgstr "ไม่รองรับการออกจากระบบ" diff --git a/modules/core/locales/tr/LC_MESSAGES/core.po b/modules/core/locales/tr/LC_MESSAGES/core.po index e6f99f9b9d..ceac961da8 100644 --- a/modules/core/locales/tr/LC_MESSAGES/core.po +++ b/modules/core/locales/tr/LC_MESSAGES/core.po @@ -1,16 +1,197 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Welcome" -msgstr "Hoşgeldiniz" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" + +msgid "An error has occurred" +msgstr "" + +msgid "Check that the link you used to access the web site is correct." +msgstr "" + +msgid "Close the web browser, and try again." +msgstr "" + +msgid "Continue" +msgstr "" + +msgid "Cookies may be disabled in the web browser." +msgstr "" + +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + +msgid "Go back to the previous page and try again." +msgstr "" + +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Sunulan Shibboleth 1.3 Kimlik Sağlayıcı Üstverisi (metadata) (otomatik olarak üretilmiştir)" msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" msgstr "Sunulan Shibboleth 1.3 Servis Sağlayıcı Üstverisi (metadata) (otomatik olarak üretilmiştir)" +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "" + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "" + +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Retry" +msgstr "" + +msgid "Retry login" +msgstr "" + msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" msgstr "Shibboleth 1.3 SP örneği - Shib IdP'nizden giriş yaparak test edin" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "Sunulan Shibboleth 1.3 Kimlik Sağlayıcı Üstverisi (metadata) (otomatik olarak üretilmiştir)" +msgid "SimpleSAMLphp" +msgstr "" + +msgid "Suggestions for resolving this problem:" +msgstr "" + +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + +msgid "This error may be caused by:" +msgstr "" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "" + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + +msgid "Using the back and forward buttons in the web browser." +msgstr "" + +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "" + +msgid "Welcome" +msgstr "Hoşgeldiniz" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" + +msgid "Yes, all services" +msgstr "" + +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "" + +msgid "You are also logged in on these services:" +msgstr "" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" + +msgid "You are now successfully logged out from %SP%." +msgstr "" + +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/uk/LC_MESSAGES/core.po b/modules/core/locales/uk/LC_MESSAGES/core.po new file mode 100644 index 0000000000..4069219a4a --- /dev/null +++ b/modules/core/locales/uk/LC_MESSAGES/core.po @@ -0,0 +1,206 @@ +msgid "" +msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" +"X-Domain: core\n" + +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Сервіс запитав вас про автентифікацію. Будь ласка, введіть своє ім’я користувача та пароль у форму нижче." + +msgid "An error has occurred" +msgstr "Сталася помилка" + +msgid "Check that the link you used to access the web site is correct." +msgstr "Переконайтеся, що ви використовуєте правильне посилання для доступу до сайту." + +msgid "Close the web browser, and try again." +msgstr "Закрийте веб-браузер і спробуйте ще раз." + +msgid "Continue" +msgstr "Продовжити" + +msgid "Cookies may be disabled in the web browser." +msgstr "Можливо, у вашому браузері вимкнено файли cookie." + +msgid "Do you want to logout from all the services above?" +msgstr "Ви хочете вийти з усіх вищезазначених сервісів?" + +msgid "Enter your username and password" +msgstr "Введіть своє ім'я користувача та пароль" + +msgid "Error report sent" +msgstr "Повідомлення про помилку надіслано" + +msgid "Go back to the previous page and try again." +msgstr "Поверніться на попередню сторінку і спробуйте ще раз." + +msgid "Help! I don't remember my password." +msgstr "Допоможіть! Я не пам’ятаю свій пароль." + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Метадані постачальника ідентифікації Shibboleth 1.3 (згенеровано автоматично)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Метадані постачальника послуг Shibboleth 1.3 (згенеровано автоматично)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Якщо проблема не зникає, ви можете повідомити про це системним адміністраторам." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Якщо ви розробник, який впроваджує рішення єдиного входу (SSO), у вас виникла проблема з конфігурацією метаданих. Перевірте, чи правильно налаштовані метадані як на стороні постачальника ідентифікації, так і на стороні постачальника послуг." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "Якщо ви розробник, який впроваджує рішення єдиного входу (SSO), ви намагаєтесь звернутися до кінцевої точки, використовуючи неправильний HTTP-метод." + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Якщо ви користувач, який отримав цю помилку після переходу за посиланням на сайті, вам слід повідомити про це власнику цього сайту." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "Якщо ви адміністратор цієї інсталяції, зверніться до документації SimpleSAMLphp, щоб дізнатися, як налаштовувати та взаємодіяти з програмним забезпеченням." + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Якщо ви повідомляєте про цю помилку, будь ласка, також надайте цей ідентифікаційний номер, який дозволяє знайти вашу сесію в журналах, доступних системному адміністратору:" + +msgid "Incorrect Attributes" +msgstr "Неправильні атрибути" + +msgid "Logging out..." +msgstr "Вихід із системи..." + +msgid "Login" +msgstr "Увійти" + +msgid "Logout" +msgstr "Вийти" + +msgid "Missing cookie" +msgstr "Відсутній файл cookie" + +msgid "No" +msgstr "Ні" + +msgid "No, only %SP%" +msgstr "Ні, тільки%SP%" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "Один або кілька атрибутів, наданих вашим постачальником ідентифікації, не містили очікуваної кількості значень." + +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "Веб-браузер відкрито з вкладками, збереженими з попереднього сеансу." + +msgid "Organization" +msgstr "Організація" + +msgid "Password" +msgstr "Пароль" + +msgid "Processing..." +msgstr "Обробка..." + +msgid "Remember me" +msgstr "Запам’ятати мене" + +msgid "Remember my organization" +msgstr "Запам’ятати мою організацію" + +msgid "Remember my username" +msgstr "Запам’ятати моє ім'я користувача" + +msgid "Report this error" +msgstr "Повідомити про цю помилку" + +msgid "Retry" +msgstr "Повторити" + +msgid "Retry login" +msgstr "Повторити вхід" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Приклад Shibboleth 1.3 SP — тестування входу через ваш Shib IdP" + +msgid "SimpleSAMLphp" +msgstr "SimpleSAMLphp" + +msgid "State information lost" +msgstr "Інформацію про стан втрачено" + +msgid "Suggestions for resolving this problem:" +msgstr "Пропозиції щодо вирішення цієї проблеми:" + +msgid "The authentication procesd has failed." +msgstr "Процес автентифікації завершився невдало." + +msgid "The authorization procesd has failed." +msgstr "Процес авторизації завершився невдало." + +msgid "The error report has been sent to the administrators." +msgstr "Звіт про помилку надіслано адміністраторам." + +msgid "The identification procesd has failed." +msgstr "Процес ідентифікації завершився невдало." + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "\"Посилання, за яким ви перейшли, було некоректним — можливо, це закладка." + +msgid "The problematic attribute(s) are:" +msgstr "Проблемні атрибут(и):" + +msgid "There was an issue while signing you in." +msgstr "Виникла проблема під час входу в систему" + +msgid "This error may be caused by:" +msgstr "Ця помилка може бути спричинена наступним:" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Ймовірно, це проблема конфігурації на стороні постачальника сервісів або постачальника ідентифікації." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "Це головна сторінка програмного забезпечення автентифікації SimpleSAMLphp. Тут особливо нічого немає." + +msgid "Too short interval between single sign on events." +msgstr "Занадто короткий інтервал між подіями єдиного входу." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Не вдалося вийти з одного або кількох сервісів. Щоб переконатися, що всі ваші сесії завершено, рекомендується закрити веббраузер." + +msgid "Username" +msgstr "Ім’я користувача" + +msgid "Using the back and forward buttons in the web browser." +msgstr "Використовуйте клавіші «Назад» і «Вперед» у веббраузері." + +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Ми виявили, що з моменту вашої останньої автентифікації з цим постачальником сервісів пройшло лише кілька секунд, тому припускаємо, що виникла проблема з цим постачальником послуг SP." + +msgid "We were unable to locate the state information for the current request." +msgstr "Нам не вдалося знайти інформацію про стан для поточного запиту." + +msgid "Welcome" +msgstr "Ласкаво просимо" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Без вашого імені користувача та пароля ви не можете пройти автентифікацію для доступу до сервісу. Можливо, хтось зможе вам допомогти. Зверніться до служби підтримки у вашій організації!" + +msgid "Yes, all services" +msgstr "Так, всі сервіси" + +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Здається, ви вимкнули файли cookie у своєму браузері. Перевірте налаштування браузера та спробуйте ще раз." + +msgid "You are also logged in on these services:" +msgstr "Ви також увійшли до наступних сервісів:" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Ви зараз отримали доступ до тестової (pre-production) системи. Ця автентифікація призначена лише для тестування та попередньої перевірки. Якщо хтось надіслав вам посилання, яке привело вас сюди, і ви не тестувальник, то, ймовірно, це неправильне посилання, і вам не слід бути тут." + +msgid "You are now successfully logged out from %SP%." +msgstr "Ви успішно вийшли з системи %SP%." + +msgid "got %got% values, want %want%" +msgstr "отримано %got% значень, потрібно %want%" + +msgid "logout is not supported" +msgstr "вихід із системи не підтримується" diff --git a/modules/core/locales/vi/LC_MESSAGES/core.po b/modules/core/locales/vi/LC_MESSAGES/core.po new file mode 100644 index 0000000000..8b1ca0cb72 --- /dev/null +++ b/modules/core/locales/vi/LC_MESSAGES/core.po @@ -0,0 +1,206 @@ +msgid "" +msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" +"X-Domain: core\n" + +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "Một dịch vụ đã yêu cầu bạn xác thực. Vui lòng nhập tên người dùng và mật khẩu của bạn vào biểu mẫu bên dưới." + +msgid "An error has occurred" +msgstr "Có lỗi xảy ra" + +msgid "Check that the link you used to access the web site is correct." +msgstr "Kiểm tra xem liên kết bạn sử dụng để truy cập trang web có đúng không." + +msgid "Close the web browser, and try again." +msgstr "Đóng trình duyệt web và thử lại." + +msgid "Continue" +msgstr "Tiếp tục" + +msgid "Cookies may be disabled in the web browser." +msgstr "Cookie có thể bị vô hiệu hóa trong trình duyệt web." + +msgid "Do you want to logout from all the services above?" +msgstr "Bạn có muốn đăng xuất khỏi tất cả các dịch vụ trên không?" + +msgid "Enter your username and password" +msgstr "Nhập tên người dùng và mật khẩu của bạn" + +msgid "Error report sent" +msgstr "Đã gửi báo cáo lỗi" + +msgid "Go back to the previous page and try again." +msgstr "Quay lại trang trước và thử lại." + +msgid "Help! I don't remember my password." +msgstr "Cần trợ giúp! Tôi không nhớ mật khẩu của mình." + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "Siêu dữ liệu Nhà cung cấp danh tính Shibboleth 1.3 được lưu trữ (tự động tạo)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "Siêu dữ liệu nhà cung cấp dịch vụ Shibboleth 1.3 được lưu trữ (tự động tạo)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "Nếu vấn đề này vẫn tiếp diễn, bạn có thể báo cáo với người quản trị hệ thống." + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "Nếu bạn là nhà phát triển đang triển khai giải pháp đăng nhập một lần, bạn có vấn đề với cấu hình siêu dữ liệu. Xác minh rằng siêu dữ liệu được cấu hình đúng trên cả nhà cung cấp danh tính và nhà cung cấp dịch vụ." + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "Nếu bạn là nhà phát triển đang triển khai giải pháp đăng nhập một lần, bạn đang cố gắng truy cập điểm cuối bằng phương thức HTTP sai." + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "Nếu bạn là người dùng nhận được lỗi này sau khi nhấp vào liên kết trên một trang web, bạn nên báo cáo lỗi này cho chủ sở hữu trang web đó." + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "Nếu bạn là quản trị viên của cài đặt này, vui lòng tham khảo tài liệu SimpleSAMLphp để biết cách cấu hình và tương tác với phần mềm." + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "Nếu bạn báo cáo lỗi này, vui lòng cũng báo cáo số theo dõi này để có thể xác định vị trí phiên của bạn trong nhật ký mà quản trị viên hệ thống có thể xem:" + +msgid "Incorrect Attributes" +msgstr "Thuộc tính không chính xác" + +msgid "Logging out..." +msgstr "Đang đăng xuất..." + +msgid "Login" +msgstr "Đăng nhập" + +msgid "Logout" +msgstr "Đăng xuất" + +msgid "Missing cookie" +msgstr "Thiếu cookie" + +msgid "No" +msgstr "Không" + +msgid "No, only %SP%" +msgstr "Không, chỉ có %SP%" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "Một hoặc nhiều thuộc tính do nhà cung cấp danh tính của bạn cung cấp không chứa số lượng giá trị mong đợi." + +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "Mở trình duyệt web có các tab đã lưu từ phiên trước." + +msgid "Organization" +msgstr "Tổ chức" + +msgid "Password" +msgstr "Mật khẩu" + +msgid "Processing..." +msgstr "Đang xử lý..." + +msgid "Remember me" +msgstr "Nhớ tôi" + +msgid "Remember my organization" +msgstr "Nhớ tổ chức của tôi" + +msgid "Remember my username" +msgstr "Nhớ tên người dùng của tôi" + +msgid "Report this error" +msgstr "Báo cáo lỗi này" + +msgid "Retry" +msgstr "Thử lại" + +msgid "Retry login" +msgstr "Thử lại đăng nhập" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Ví dụ về Shibboleth 1.3 SP - kiểm tra đăng nhập thông qua Shib IdP của bạn" + +msgid "SimpleSAMLphp" +msgstr "SimpleSAMLphp" + +msgid "State information lost" +msgstr "Thông tin trạng thái bị mất" + +msgid "Suggestions for resolving this problem:" +msgstr "Gợi ý để giải quyết vấn đề này:" + +msgid "The authentication procesd has failed." +msgstr "Quá trình xác thực đã thất bại." + +msgid "The authorization procesd has failed." +msgstr "Quá trình ủy quyền đã thất bại." + +msgid "The error report has been sent to the administrators." +msgstr "Báo cáo lỗi đã được gửi tới người quản trị." + +msgid "The identification procesd has failed." +msgstr "Quá trình xác định danh tính đã thất bại." + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "Liên kết dùng để tới đây không hợp lệ, có thể là do dấu trang." + +msgid "The problematic attribute(s) are:" +msgstr "Các thuộc tính có vấn đề là:" + +msgid "There was an issue while signing you in." +msgstr "Đã xảy ra sự cố khi đăng nhập." + +msgid "This error may be caused by:" +msgstr "Lỗi này có thể do:" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "Đây rất có thể là sự cố cấu hình của nhà cung cấp dịch vụ hoặc nhà cung cấp danh tính." + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "Đây là trang đầu của phần mềm xác thực SimpleSAMLphp. Không có nhiều thứ để xem ở đây." + +msgid "Too short interval between single sign on events." +msgstr "Khoảng thời gian giữa các sự kiện đăng nhập một lần quá ngắn." + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "Không thể đăng xuất khỏi một hoặc nhiều dịch vụ. Để đảm bảo rằng tất cả các phiên của bạn đã được đóng, bạn nên đóng trình duyệt web của mình ." + +msgid "Username" +msgstr "Tên đăng nhập" + +msgid "Using the back and forward buttons in the web browser." +msgstr "Sử dụng các nút quay lại và chuyển tiếp trong trình duyệt web." + +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "Chúng tôi phát hiện chỉ có vài giây kể từ lần xác thực cuối cùng của bạn với nhà cung cấp dịch vụ này và do đó cho rằng có sự cố với SP này." + +msgid "We were unable to locate the state information for the current request." +msgstr "Chúng tôi không thể tìm thấy thông tin tiểu bang cho yêu cầu hiện tại." + +msgid "Welcome" +msgstr "Chào mừng" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "Nếu không có tên người dùng và mật khẩu, bạn không thể xác thực để truy cập vào dịch vụ. Có thể có người có thể giúp bạn. Hãy tham khảo bộ phận trợ giúp tại tổ chức của bạn!" + +msgid "Yes, all services" +msgstr "Có, tất cả các dịch vụ" + +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "Có vẻ như bạn đã tắt cookie trong trình duyệt của mình. Vui lòng kiểm tra cài đặt trong trình duyệt của bạn và thử lại." + +msgid "You are also logged in on these services:" +msgstr "Bạn cũng đã đăng nhập vào các dịch vụ sau:" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "Bây giờ bạn đang truy cập vào hệ thống tiền sản xuất. Thiết lập xác thực này chỉ dành cho mục đích thử nghiệm và xác minh tiền sản xuất. Nếu ai đó gửi cho bạn một liên kết chỉ dẫn bạn đến đây và bạn không phải là người thử nghiệm thì có thể bạn đã nhận được liên kết sai và không nên ở đây ." + +msgid "You are now successfully logged out from %SP%." +msgstr "Bây giờ bạn đã đăng xuất thành công khỏi %SP%." + +msgid "got %got% values, want %want%" +msgstr "có %got% giá trị, muốn %want%" + +msgid "logout is not supported" +msgstr "đăng xuất không được hỗ trợ" diff --git a/modules/core/locales/xh/LC_MESSAGES/core.po b/modules/core/locales/xh/LC_MESSAGES/core.po index 021417b03e..ac997082b9 100644 --- a/modules/core/locales/xh/LC_MESSAGES/core.po +++ b/modules/core/locales/xh/LC_MESSAGES/core.po @@ -1,22 +1,188 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: xh\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." -msgstr "Uphawu olunye okanye olungakumbi olunikelwe ngumboonelei wesazisi sakho aluqulethanga inani lamaxabiso alindelekileyo." +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Zama kwakhona" +msgid "An error has occurred" +msgstr "" + +msgid "Check that the link you used to access the web site is correct." +msgstr "" + +msgid "Close the web browser, and try again." +msgstr "" + +msgid "Continue" +msgstr "" msgid "Cookies may be disabled in the web browser." msgstr "Iikhuki zisenokwenziwa zingasebenzi kwibhrawuza yewebhu." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + +msgid "Go back to the previous page and try again." +msgstr "" + +msgid "Help! I don't remember my password." +msgstr "" + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "" + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "Uphawu olunye okanye olungakumbi olunikelwe ngumboonelei wesazisi sakho aluqulethanga inani lamaxabiso alindelekileyo." + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Kuvulwe ibhrawuza yewebhu ngeethebhu eziseyivwe kwiseshoni edlulileyo." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Retry" +msgstr "Zama kwakhona" + +msgid "Retry login" +msgstr "" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "Suggestions for resolving this problem:" +msgstr "" + +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Le mpazamo isenokuba ibangelwe:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "" + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Ukusebenzisa amaqhosha okuya emva naphambili kwibhrawuza yewebhu." + +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "" + +msgid "Welcome" +msgstr "" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" + +msgid "Yes, all services" +msgstr "" + +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "" + +msgid "You are also logged in on these services:" +msgstr "" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" + +msgid "You are now successfully logged out from %SP%." +msgstr "" + +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/zh-tw/LC_MESSAGES/core.po b/modules/core/locales/zh-tw/LC_MESSAGES/core.po deleted file mode 100644 index 1636a16870..0000000000 --- a/modules/core/locales/zh-tw/LC_MESSAGES/core.po +++ /dev/null @@ -1,76 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"X-Domain: core\n" - -msgid "Retry login" -msgstr "重試登入" - -msgid "Too short interval between single sign on events." -msgstr "單一簽入事件間隔過短。" - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "我們偵測到距離您最後一次驗證於這個服務提供者只有短短幾秒,而這可能是 SP 有點問題。" - -msgid "Missing cookie" -msgstr "遺失 cookie" - -msgid "Retry" -msgstr "重試" - -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "您可能關閉了瀏覽器 cookie 支援,請檢查瀏覽器設定,然後再試一次。" - -msgid "Close the web browser, and try again." -msgstr "關閉網頁瀏覽器,並再試一次。" - -msgid "Cookies may be disabled in the web browser." -msgstr "網頁瀏覽器的 Cookies 可能被關閉。" - -msgid "Go back to the previous page and try again." -msgstr "回到上一頁並再試一次。" - -msgid "Opened the web browser with tabs saved from the previous session." -msgstr "您使用網頁瀏覽器儲存標籤開啟了上一次的連線。" - -msgid "Suggestions for resolving this problem:" -msgstr "建議解決這個問題:" - -msgid "This error may be caused by:" -msgstr "這個錯誤可能是因為:" - -msgid "Using the back and forward buttons in the web browser." -msgstr "於網頁瀏覽器使用上一頁及下一頁。" - -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "若您是單一簽入程式開發人員,您的詮釋資料設定可能有問題。請確認服務提供者或驗證提供者之詮釋資料設定檔是否正確。" - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "若您是個使用者,而您於此網站收到下列連結,請反映此錯誤給此站管理員。" - -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "服務提供者或驗證提供者之設定檔可能有問題。" - -msgid "Welcome" -msgstr "歡迎" - -msgid "If this problem persists, you can report it to the system administrators." -msgstr "如果這個錯誤持續存在,您可以將它回報系統管理者。" - -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "託管 Shibboleth 1.3 服務提供者詮釋資料(自動產生)" - -msgid "We were unable to locate the state information for the current request." -msgstr "我們無法找到關於這個請求的狀態資訊。" - -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3 SP 範本 - 測試使用您的 Shib IdP 登入" - -msgid "State information lost" -msgstr "遺失狀態資訊" - -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "託管Shibboleth 1.3 驗證提供者詮釋資料(自動產生)" - -msgid "Report this error" -msgstr "回報這個錯誤" diff --git a/modules/core/locales/zh/LC_MESSAGES/core.po b/modules/core/locales/zh/LC_MESSAGES/core.po index 4081373aa7..a784df14d7 100644 --- a/modules/core/locales/zh/LC_MESSAGES/core.po +++ b/modules/core/locales/zh/LC_MESSAGES/core.po @@ -1,76 +1,206 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: zh\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "Retry login" -msgstr "重新尝试登陆" - -msgid "Too short interval between single sign on events." -msgstr "单点登录事件之间间隔太短了" - -msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." -msgstr "我们检测到从你上一次连接到该服务提供者到本次连接中间间隔仅仅数秒的时间,我们猜测该SP可能有问题" - -msgid "Missing cookie" -msgstr "cookie丢失" +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "重试" +msgid "An error has occurred" +msgstr "" -msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "你似乎禁止了你浏览器的cookie功能,请检查设置,然后重新尝试" +msgid "Check that the link you used to access the web site is correct." +msgstr "" msgid "Close the web browser, and try again." msgstr "关闭浏览器并重试" +msgid "Continue" +msgstr "" + msgid "Cookies may be disabled in the web browser." msgstr "该浏览器上的cookie可能遭禁止" +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + msgid "Go back to the previous page and try again." msgstr "返回上一页并重新尝试" +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "存储的 Shibboleth 1.3 Identity Provider Metadata(自动生成)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "存储的 Shibboleth 1.3 Service Provider Metadata(自动生成)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "如果这个错误再次出现,你可以向你的系统管理员报告" + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "如果你是部署这个单点登录系统的开发人员,那么你的配置文件存在问题,验证服务提供者和身份提供者是否配置正确" + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "如果你是点击一个网站上的链接后收到该错误的用户,你应该报告这个错误给站点所有人" + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "cookie丢失" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + msgid "Opened the web browser with tabs saved from the previous session." msgstr "从先前的session保存的选项卡打开Web浏览器" +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "报告这个错误" + +msgid "Retry" +msgstr "重试" + +msgid "Retry login" +msgstr "重新尝试登陆" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3SP样例-测试从你的Shib idP登录" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "状态信息丢失" + msgid "Suggestions for resolving this problem:" msgstr "关于解决该问题的建议" +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "该错误可能是以下原因导致的:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "这可能是服务提供者或者身份提供者的配置问题" + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "单点登录事件之间间隔太短了" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "使用浏览器中的前进后退按钮" -msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." -msgstr "如果你是部署这个单点登录系统的开发人员,那么你的配置文件存在问题,验证服务提供者和身份提供者是否配置正确" - -msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." -msgstr "如果你是点击一个网站上的链接后收到该错误的用户,你应该报告这个错误给站点所有人" +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "我们检测到从你上一次连接到该服务提供者到本次连接中间间隔仅仅数秒的时间,我们猜测该SP可能有问题" -msgid "This is most likely a configuration problem on either the service provider or identity provider." -msgstr "这可能是服务提供者或者身份提供者的配置问题" +msgid "We were unable to locate the state information for the current request." +msgstr "我们无法定位当前请求的状态信息" msgid "Welcome" msgstr "欢迎" -msgid "If this problem persists, you can report it to the system administrators." -msgstr "如果这个错误再次出现,你可以向你的系统管理员报告" +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" -msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" -msgstr "存储的 Shibboleth 1.3 Service Provider Metadata(自动生成)" +msgid "Yes, all services" +msgstr "" -msgid "We were unable to locate the state information for the current request." -msgstr "我们无法定位当前请求的状态信息" +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "你似乎禁止了你浏览器的cookie功能,请检查设置,然后重新尝试" -msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" -msgstr "Shibboleth 1.3SP样例-测试从你的Shib idP登录" +msgid "You are also logged in on these services:" +msgstr "" -msgid "State information lost" -msgstr "状态信息丢失" +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" -msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" -msgstr "存储的 Shibboleth 1.3 Identity Provider Metadata(自动生成)" +msgid "You are now successfully logged out from %SP%." +msgstr "" -msgid "Report this error" -msgstr "报告这个错误" +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/zh_TW/LC_MESSAGES/core.po b/modules/core/locales/zh_TW/LC_MESSAGES/core.po new file mode 100644 index 0000000000..4c1c6064f4 --- /dev/null +++ b/modules/core/locales/zh_TW/LC_MESSAGES/core.po @@ -0,0 +1,206 @@ +msgid "" +msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" +"X-Domain: core\n" + +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" + +msgid "An error has occurred" +msgstr "" + +msgid "Check that the link you used to access the web site is correct." +msgstr "" + +msgid "Close the web browser, and try again." +msgstr "關閉網頁瀏覽器,並再試一次。" + +msgid "Continue" +msgstr "" + +msgid "Cookies may be disabled in the web browser." +msgstr "網頁瀏覽器的 Cookies 可能被關閉。" + +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + +msgid "Go back to the previous page and try again." +msgstr "回到上一頁並再試一次。" + +msgid "Help! I don't remember my password." +msgstr "" + +msgid "Hosted Shibboleth 1.3 Identity Provider Metadata (automatically generated)" +msgstr "託管Shibboleth 1.3 驗證提供者詮釋資料(自動產生)" + +msgid "Hosted Shibboleth 1.3 Service Provider Metadata (automatically generated)" +msgstr "託管 Shibboleth 1.3 服務提供者詮釋資料(自動產生)" + +msgid "If this problem persists, you can report it to the system administrators." +msgstr "如果這個錯誤持續存在,您可以將它回報系統管理者。" + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "若您是單一簽入程式開發人員,您的詮釋資料設定可能有問題。請確認服務提供者或驗證提供者之詮釋資料設定檔是否正確。" + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "若您是個使用者,而您於此網站收到下列連結,請反映此錯誤給此站管理員。" + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "遺失 cookie" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "" + +msgid "Opened the web browser with tabs saved from the previous session." +msgstr "您使用網頁瀏覽器儲存標籤開啟了上一次的連線。" + +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Report this error" +msgstr "回報這個錯誤" + +msgid "Retry" +msgstr "重試" + +msgid "Retry login" +msgstr "重試登入" + +msgid "Shibboleth 1.3 SP example - test logging in through your Shib IdP" +msgstr "Shibboleth 1.3 SP 範本 - 測試使用您的 Shib IdP 登入" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "State information lost" +msgstr "遺失狀態資訊" + +msgid "Suggestions for resolving this problem:" +msgstr "建議解決這個問題:" + +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + +msgid "This error may be caused by:" +msgstr "這個錯誤可能是因為:" + +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "服務提供者或驗證提供者之設定檔可能有問題。" + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "單一簽入事件間隔過短。" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + +msgid "Using the back and forward buttons in the web browser." +msgstr "於網頁瀏覽器使用上一頁及下一頁。" + +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "我們偵測到距離您最後一次驗證於這個服務提供者只有短短幾秒,而這可能是 SP 有點問題。" + +msgid "We were unable to locate the state information for the current request." +msgstr "我們無法找到關於這個請求的狀態資訊。" + +msgid "Welcome" +msgstr "歡迎" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" + +msgid "Yes, all services" +msgstr "" + +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "您可能關閉了瀏覽器 cookie 支援,請檢查瀏覽器設定,然後再試一次。" + +msgid "You are also logged in on these services:" +msgstr "" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" + +msgid "You are now successfully logged out from %SP%." +msgstr "" + +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/locales/zu/LC_MESSAGES/core.po b/modules/core/locales/zu/LC_MESSAGES/core.po index b8e0b1d088..42830088db 100644 --- a/modules/core/locales/zu/LC_MESSAGES/core.po +++ b/modules/core/locales/zu/LC_MESSAGES/core.po @@ -1,22 +1,188 @@ -#, fuzzy msgid "" msgstr "" +"Content-Transfer-Encoding: 8bit\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Language: zu\n" +"MIME-Version: 1.0\n" +"Project-Id-Version: SimpleSAMLphp\n" "X-Domain: core\n" -msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." -msgstr "Isici esisodwa noma ngaphezulu esinikezwe umhlinzeki wakho kamazisi asizange siqukathe inani lezinombolo ezilindelwe." +msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." +msgstr "" -msgid "Retry" -msgstr "Zama futhi" +msgid "An error has occurred" +msgstr "" + +msgid "Check that the link you used to access the web site is correct." +msgstr "" + +msgid "Close the web browser, and try again." +msgstr "" + +msgid "Continue" +msgstr "" msgid "Cookies may be disabled in the web browser." msgstr "Amakhukhi kungenzeka ukuthi ayekisiwe kusiphequluli sewebhu." +msgid "Do you want to logout from all the services above?" +msgstr "" + +msgid "Enter your username and password" +msgstr "" + +msgid "Error report sent" +msgstr "" + +msgid "Go back to the previous page and try again." +msgstr "" + +msgid "Help! I don't remember my password." +msgstr "" + +msgid "If you are a developer who is deploying a single sign-on solution, you have a problem with the metadata configuration. Verify that metadata is configured correctly on both the identity provider and service provider." +msgstr "" + +msgid "If you are a developer who is deploying a single sign-on solution, you have are trying to reach an endpoint using the wrong HTTP-method." +msgstr "" + +msgid "If you are a user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are an user who received this error after following a link on a site, you should report this error to the owner of that site." +msgstr "" + +msgid "If you are the administrator of this installation, please refer to the SimpleSAMLphp documentation for how to configure and interact with the software." +msgstr "" + +msgid "If you report this error, please also report this tracking number which makes it possible to locate your session in the logs available to the system administrator:" +msgstr "" + +msgid "Incorrect Attributes" +msgstr "" + +msgid "Logging out..." +msgstr "" + +msgid "Login" +msgstr "" + +msgid "Logout" +msgstr "" + +msgid "Missing cookie" +msgstr "" + +msgid "No" +msgstr "" + +msgid "No, only %SP%" +msgstr "" + +msgid "One or more of the attributes supplied by your identity provider did not contain the expected number of values." +msgstr "Isici esisodwa noma ngaphezulu esinikezwe umhlinzeki wakho kamazisi asizange siqukathe inani lezinombolo ezilindelwe." + msgid "Opened the web browser with tabs saved from the previous session." msgstr "Kuvulwe isiphequluli sewebhu ngamathebhu alondolozwe kuseshini yangaphambilini." +msgid "Organization" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Processing..." +msgstr "" + +msgid "Remember me" +msgstr "" + +msgid "Remember my organization" +msgstr "" + +msgid "Remember my username" +msgstr "" + +msgid "Retry" +msgstr "Zama futhi" + +msgid "Retry login" +msgstr "" + +msgid "SimpleSAMLphp" +msgstr "" + +msgid "Suggestions for resolving this problem:" +msgstr "" + +msgid "The authentication procesd has failed." +msgstr "" + +msgid "The authorization procesd has failed." +msgstr "" + +msgid "The error report has been sent to the administrators." +msgstr "" + +msgid "The identification procesd has failed." +msgstr "" + +msgid "The link used to get here was bad, perhaps a bookmark." +msgstr "" + +msgid "The problematic attribute(s) are:" +msgstr "" + +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Leli phutha kungenzeka libangelwa ukuthi:" +msgid "This is most likely a configuration problem on either the service provider or identity provider." +msgstr "" + +msgid "This is the front page of the SimpleSAMLphp authentication software. There's not much to see here." +msgstr "" + +msgid "Too short interval between single sign on events." +msgstr "" + +msgid "Unable to log out of one or more services. To ensure that all your sessions are closed, you are encouraged to close your webbrowser." +msgstr "" + +msgid "Username" +msgstr "" + msgid "Using the back and forward buttons in the web browser." msgstr "Ukusebenzisa izinkinobho ezithi emuva naphambili kusiphequluli sewebhu." + +msgid "We have detected that there is only a few seconds since you last authenticated with this service provider, and therefore assume that there is a problem with this SP." +msgstr "" + +msgid "Welcome" +msgstr "" + +msgid "Without your username and password you cannot authenticate yourself for access to the service. There may be someone that can help you. Consult the help desk at your organization!" +msgstr "" + +msgid "Yes, all services" +msgstr "" + +msgid "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." +msgstr "" + +msgid "You are also logged in on these services:" +msgstr "" + +msgid "You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not a tester you probably got the wrong link, and should not be here." +msgstr "" + +msgid "You are now successfully logged out from %SP%." +msgstr "" + +msgid "got %got% values, want %want%" +msgstr "" + +msgid "logout is not supported" +msgstr "" diff --git a/modules/core/public/assets/js/loginuserpass.js b/modules/core/public/assets/js/loginuserpass.js index 6f83220cee..7a258b27dd 100644 --- a/modules/core/public/assets/js/loginuserpass.js +++ b/modules/core/public/assets/js/loginuserpass.js @@ -4,7 +4,7 @@ ready(function () { var replacement = document.createTextNode(button.getAttribute("data-default")); button.replaceChild(replacement, button.childNodes[0]); button.disabled = false; - } + }; var form = document.getElementById("f"); form.onsubmit = function () { @@ -12,6 +12,6 @@ ready(function () { var replacement = document.createTextNode(button.getAttribute("data-processing")); button.replaceChild(replacement, button.childNodes[0]); button.disabled = true; - } + }; }); diff --git a/modules/core/src/Auth/Process/AttributeAdd.php b/modules/core/src/Auth/Process/AttributeAdd.php index 1edcf00513..29500ffc4c 100644 --- a/modules/core/src/Auth/Process/AttributeAdd.php +++ b/modules/core/src/Auth/Process/AttributeAdd.php @@ -44,6 +44,7 @@ class AttributeAdd extends Auth\ProcessingFilter * * @param array &$config Configuration information about this filter. * @param mixed $reserved For future use. + * @throws \Exception */ public function __construct(array &$config, $reserved) { @@ -65,7 +66,7 @@ public function __construct(array &$config, $reserved) foreach ($values as $value) { if (!is_string($value)) { throw new Exception( - 'Invalid value for attribute ' . $name . ': ' . var_export($values, true) + 'Invalid value for attribute ' . $name . ': ' . var_export($values, true), ); } } diff --git a/modules/core/src/Auth/Process/AttributeAlter.php b/modules/core/src/Auth/Process/AttributeAlter.php index ead77dbbd9..22c11e9571 100644 --- a/modules/core/src/Auth/Process/AttributeAlter.php +++ b/modules/core/src/Auth/Process/AttributeAlter.php @@ -4,8 +4,9 @@ namespace SimpleSAML\Module\core\Auth\Process; -use SimpleSAML\{Auth, Error}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; +use SimpleSAML\Error; use function array_diff; use function array_key_exists; @@ -133,7 +134,7 @@ public function process(array &$state): void if (!$this->replace && !$this->remove && $this->replacement === false) { throw new Error\Exception( - "'replacement' must be set if neither '%replace' nor " . "'%remove' are set." + "'replacement' must be set if neither '%replace' nor " . "'%remove' are set.", ); } @@ -174,7 +175,7 @@ public function process(array &$state): void $value = $new_value; } elseif ($this->merge === true) { $attributes[$this->target] = array_values( - array_diff($attributes[$this->target], [$value]) + array_diff($attributes[$this->target], [$value]), ); $attributes[$this->target][] = $new_value; } else { @@ -202,16 +203,16 @@ public function process(array &$state): void $attributes[$this->target] = preg_replace( $this->pattern, $this->replacement, - $attributes[$this->subject] + $attributes[$this->subject], ); } else { $diff = array_diff( preg_replace( $this->pattern, $this->replacement, - $attributes[$this->subject] + $attributes[$this->subject], ), - $attributes[$this->subject] + $attributes[$this->subject], ); if ($this->merge === true) { diff --git a/modules/core/src/Auth/Process/AttributeCopy.php b/modules/core/src/Auth/Process/AttributeCopy.php index 0ab1d789fa..714c7026da 100644 --- a/modules/core/src/Auth/Process/AttributeCopy.php +++ b/modules/core/src/Auth/Process/AttributeCopy.php @@ -41,6 +41,7 @@ class AttributeCopy extends Auth\ProcessingFilter * * @param array &$config Configuration information about this filter. * @param mixed $reserved For future use. + * @throws \Exception */ public function __construct(array &$config, $reserved) { diff --git a/modules/core/src/Auth/Process/AttributeLimit.php b/modules/core/src/Auth/Process/AttributeLimit.php index d83d8a9ac0..1363486f00 100644 --- a/modules/core/src/Auth/Process/AttributeLimit.php +++ b/modules/core/src/Auth/Process/AttributeLimit.php @@ -4,8 +4,10 @@ namespace SimpleSAML\Module\core\Auth\Process; -use SimpleSAML\{Auth, Error, Logger}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; +use SimpleSAML\Error; +use SimpleSAML\Logger; use function array_intersect; use function array_key_exists; @@ -15,6 +17,7 @@ use function is_int; use function is_string; use function preg_match; +use function sprintf; use function var_export; /** @@ -30,6 +33,12 @@ class AttributeLimit extends Auth\ProcessingFilter */ private array $allowedAttributes = []; + /** + * List of regular expressions for attributes which this filter will allow through. + * @var array + */ + private array $allowedAttributeRegex = []; + /** * Whether the 'attributes' option in the metadata takes precedence. * @@ -48,22 +57,29 @@ class AttributeLimit extends Auth\ProcessingFilter public function __construct(array &$config, $reserved) { parent::__construct($config, $reserved); - foreach ($config as $index => $value) { if ($index === 'default') { $this->isDefault = (bool) $value; } elseif (is_int($index)) { if (!is_string($value)) { - throw new Error\Exception('AttributeLimit: Invalid attribute name: ' . - var_export($value, true)); + throw new Error\Exception(sprintf( + 'AttributeLimit: Invalid attribute name: %s', + var_export($value, true), + )); } $this->allowedAttributes[] = $value; - } else { // Can only be string since PHP only allows string|int for array keys - if (!is_array($value)) { - throw new Error\Exception('AttributeLimit: Values for ' . - var_export($index, true) . ' must be specified in an array.'); - } + } elseif (!is_array($value)) { + throw new Error\Exception(sprintf( + 'AttributeLimit: Values for %s must be specified in an array.', + var_export($index, true), + )); + } elseif (array_key_exists('nameIsRegex', $value) && (true === (bool) $value['nameIsRegex'])) { + $this->allowedAttributeRegex[$index] = $value; + unset($this->allowedAttributeRegex[$index]['nameIsRegex']); + } else { $this->allowedAttributes[$index] = $value; + // In case user sets nameIsRegex=false + unset($this->allowedAttributes[$index]['nameIsRegex']); } } } @@ -73,7 +89,7 @@ public function __construct(array &$config, $reserved) * Get list of allowed from the SP/IdP config. * * @param array &$state The current request. - * @return array|null Array with attribute names, or NULL if no limit is placed. + * @return array|null Array with attribute names, or null if no limit is placed. */ private static function getSPIdPAllowed(array &$state): ?array { @@ -89,6 +105,26 @@ private static function getSPIdPAllowed(array &$state): ?array } + /** + * Get list of regular expressions of attribute names allowed from the SP/IdP config. + * + * @param array &$state The current request. + * @return array|null Array with attribute names, or null if no limit is placed. + */ + private static function getSPIdPAllowedRegex(array &$state): ?array + { + if (array_key_exists('Destination', $state) && array_key_exists('attributesRegex', $state['Destination'])) { + // SP Config + return $state['Destination']['attributesRegex']; + } + if (array_key_exists('Source', $state) && array_key_exists('attributesRegex', $state['Source'])) { + // IdP Config + return $state['Source']['attributesRegex']; + } + return null; + } + + /** * Apply filter to remove attributes. * @@ -96,24 +132,30 @@ private static function getSPIdPAllowed(array &$state): ?array * * @param array &$state The current request * @throws \SimpleSAML\Error\Exception If invalid configuration is found. + * @throws \Exception */ public function process(array &$state): void { assert::keyExists($state, 'Attributes'); if ($this->isDefault) { - $allowedAttributes = self::getSPIdPAllowed($state); - if ($allowedAttributes === null) { - $allowedAttributes = $this->allowedAttributes; + $allowedAttributes = self::getSPIdPAllowed($state) ?? []; + $allowedAttributeRegex = self::getSPIdPAllowedRegex($state) ?? []; + if (empty($allowedAttributes) && empty($allowedAttributeRegex)) { + $allowedAttributes = $this->allowedAttributes ?? []; + $allowedAttributeRegex = $this->allowedAttributeRegex ?? []; } - } elseif (!empty($this->allowedAttributes)) { - $allowedAttributes = $this->allowedAttributes; + } elseif (!(empty($this->allowedAttributes) && empty($this->allowedAttributeRegex))) { + $allowedAttributes = $this->allowedAttributes ?? []; + $allowedAttributeRegex = $this->allowedAttributeRegex ?? []; } else { - $allowedAttributes = self::getSPIdPAllowed($state); - if ($allowedAttributes === null) { - // No limit on attributes - return; - } + $allowedAttributes = self::getSPIdPAllowed($state) ?? []; + $allowedAttributeRegex = self::getSPIdPAllowedRegex($state) ?? []; + } + + if (empty($allowedAttributes) && empty($allowedAttributeRegex)) { + // No limit on attributes + return; } $attributes = &$state['Attributes']; @@ -124,14 +166,28 @@ public function process(array &$state): void if (array_key_exists($name, $allowedAttributes)) { // but it is an index of the array if (!is_array($allowedAttributes[$name])) { - throw new Error\Exception('AttributeLimit: Values for ' . - var_export($name, true) . ' must be specified in an array.'); + throw new Error\Exception(sprintf( + 'AttributeLimit: Values for %s must be specified in an array.', + var_export($name, true), + )); } + $attributes[$name] = $this->filterAttributeValues($attributes[$name], $allowedAttributes[$name]); if (!empty($attributes[$name])) { continue; } + } elseif (($regexpMatch = self::matchAnyRegex($name, $allowedAttributeRegex)) !== null) { + if (array_key_exists($regexpMatch, $allowedAttributeRegex)) { + $attributes[$name] = $this->filterAttributeValues( + $attributes[$name], + $allowedAttributeRegex[$regexpMatch], + ); + } + if (!empty($attributes[$name])) { + continue; + } } + unset($attributes[$name]); } } @@ -143,9 +199,14 @@ public function process(array &$state): void * @param array $values The current values for a given attribute * @param array $allowedConfigValues The allowed values, and possibly configuration options. * @return array The filtered values + * @throws \Exception */ - private function filterAttributeValues(array $values, array $allowedConfigValues): array + private function filterAttributeValues(array $values, ?array $allowedConfigValues): array { + if (($allowedConfigValues === null) || empty($allowedConfigValues)) { + return $values; + } + if (array_key_exists('regex', $allowedConfigValues) && $allowedConfigValues['regex'] === true) { $matchedValues = []; foreach ($allowedConfigValues as $option => $pattern) { @@ -179,4 +240,25 @@ private function filterAttributeValues(array $values, array $allowedConfigValues return array_intersect($values, $allowedConfigValues); } + + + /** + * Check if a string matches any of the regular expressions in the array of regexps + * + * @param string $needle The string we're searching on + * @param array|null Array with regular expressions to test against. null is equivalent to an empty array. + * @return string|null Regular expression that matched, or null if no match. + */ + private static function matchAnyRegex(string $needle, ?array $regexps = null): string|null + { + if ($regexps !== null) { + foreach ($regexps as $x => $y) { + $regexp = is_int($x) ? $y : $x; + if (preg_match($regexp, $needle)) { + return $regexp; + } + } + } + return null; + } } diff --git a/modules/core/src/Auth/Process/AttributeMap.php b/modules/core/src/Auth/Process/AttributeMap.php index aca5055bae..a4b8d521a1 100644 --- a/modules/core/src/Auth/Process/AttributeMap.php +++ b/modules/core/src/Auth/Process/AttributeMap.php @@ -5,8 +5,10 @@ namespace SimpleSAML\Module\core\Auth\Process; use Exception; -use SimpleSAML\{Auth, Configuration, Module}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; +use SimpleSAML\Configuration; +use SimpleSAML\Module; use Symfony\Component\Filesystem\Filesystem; use function array_key_exists; diff --git a/modules/core/src/Auth/Process/AttributeValueMap.php b/modules/core/src/Auth/Process/AttributeValueMap.php index b348acfe77..169543cde6 100644 --- a/modules/core/src/Auth/Process/AttributeValueMap.php +++ b/modules/core/src/Auth/Process/AttributeValueMap.php @@ -4,8 +4,10 @@ namespace SimpleSAML\Module\core\Auth\Process; -use SimpleSAML\{Auth, Error, Logger}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; +use SimpleSAML\Error; +use SimpleSAML\Logger; use function array_intersect; use function array_key_exists; @@ -52,6 +54,12 @@ class AttributeValueMap extends Auth\ProcessingFilter */ private bool $replace = false; + /** + * Whether $sourceattribute values should be treated as regular expressions or not. + * @var bool + */ + private bool $regex = false; + /** * Initialize the filter. @@ -59,6 +67,7 @@ class AttributeValueMap extends Auth\ProcessingFilter * @param array &$config Configuration information about this filter. * @param mixed $reserved For future use. * @throws \SimpleSAML\Error\Exception If the configuration is not valid. + * @throws \Exception */ public function __construct(array &$config, $reserved) { @@ -72,10 +81,12 @@ public function __construct(array &$config, $reserved) $this->replace = true; } elseif ($value === '%keep') { $this->keep = true; + } elseif ($value === '%regex') { + $this->regex = true; } else { // unknown configuration option, log it and ignore the error Logger::warning( - "AttributeValueMap: unknown configuration flag '" . var_export($value, true) . "'" + "AttributeValueMap: unknown configuration flag '" . var_export($value, true) . "'", ); } continue; @@ -114,6 +125,7 @@ public function __construct(array &$config, $reserved) * Apply filter. * * @param array &$state The current request + * @throws \Exception */ public function process(array &$state): void { @@ -135,7 +147,19 @@ public function process(array &$state): void if (!is_array($values)) { $values = [$values]; } - if (count(array_intersect($values, $sourceattribute)) > 0) { + if ($this->regex) { + foreach ($sourceattribute as $sourcevalue) { + foreach ($values as $pattern) { + if (preg_match($pattern, $sourcevalue) === 1) { + Logger::debug("AttributeValueMap: regex match for '$value'"); + $targetvalues[] = $value; + // no need to check other patterns for this sourceattribute value + break 2; + } + } + } + continue; + } elseif (count(array_intersect($values, $sourceattribute)) > 0) { Logger::debug("AttributeValueMap: intersect match for '$value'"); $targetvalues[] = $value; } @@ -148,7 +172,7 @@ public function process(array &$state): void } else { $attributes[$this->targetattribute] = array_unique(array_merge( $attributes[$this->targetattribute], - $targetvalues + $targetvalues, )); } } diff --git a/modules/core/src/Auth/Process/Cardinality.php b/modules/core/src/Auth/Process/Cardinality.php index 797276647a..695ded2029 100644 --- a/modules/core/src/Auth/Process/Cardinality.php +++ b/modules/core/src/Auth/Process/Cardinality.php @@ -4,8 +4,12 @@ namespace SimpleSAML\Module\core\Auth\Process; -use SimpleSAML\{Auth, Error, Logger, Module, Utils}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; +use SimpleSAML\Error; +use SimpleSAML\Logger; +use SimpleSAML\Module; +use SimpleSAML\Utils; use function array_key_exists; use function count; @@ -38,10 +42,10 @@ class Cardinality extends Auth\ProcessingFilter * * @param array &$config Configuration information about this filter. * @param mixed $reserved For future use. - * @param \SimpleSAML\Utils\HTTP $httpUtils HTTP utility service (handles redirects). + * @param \SimpleSAML\Utils\HTTP|null $httpUtils HTTP utility service (handles redirects). * @throws \SimpleSAML\Error\Exception */ - public function __construct(array &$config, $reserved, Utils\HTTP $httpUtils = null) + public function __construct(array &$config, $reserved, ?Utils\HTTP $httpUtils = null) { parent::__construct($config, $reserved); @@ -112,6 +116,10 @@ public function __construct(array &$config, $reserved, Utils\HTTP $httpUtils = n * Process this filter * * @param array &$state The current request + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Error\CriticalConfigurationError + * @throws \Exception + * @throws \Throwable */ public function process(array &$state): void { @@ -143,13 +151,13 @@ public function process(array &$state): void $k, $entityid, $this->cardinality[$k]['min'], - count($v) - ) + count($v), + ), ); } else { $state['core:cardinality:errorAttributes'][$k] = [ count($v), - $this->cardinality[$k]['_expr'] + $this->cardinality[$k]['_expr'], ]; } continue; @@ -164,13 +172,13 @@ public function process(array &$state): void $k, $entityid, $this->cardinality[$k]['max'], - count($v) - ) + count($v), + ), ); } else { $state['core:cardinality:errorAttributes'][$k] = [ count($v), - $this->cardinality[$k]['_expr'] + $this->cardinality[$k]['_expr'], ]; } continue; @@ -186,12 +194,12 @@ public function process(array &$state): void Logger::warning(sprintf( 'Cardinality: attribute %s from %s is missing', $k, - $entityid + $entityid, )); } else { $state['core:cardinality:errorAttributes'][$k] = [ 0, - $this->cardinality[$k]['_expr'] + $this->cardinality[$k]['_expr'], ]; } } diff --git a/modules/core/src/Auth/Process/CardinalitySingle.php b/modules/core/src/Auth/Process/CardinalitySingle.php index f1f1e4b3da..c3b84bbf7a 100644 --- a/modules/core/src/Auth/Process/CardinalitySingle.php +++ b/modules/core/src/Auth/Process/CardinalitySingle.php @@ -5,7 +5,10 @@ namespace SimpleSAML\Module\core\Auth\Process; use SimpleSAML\Assert\Assert; -use SimpleSAML\{Auth, Logger, Module, Utils}; +use SimpleSAML\Auth; +use SimpleSAML\Logger; +use SimpleSAML\Module; +use SimpleSAML\Utils; use function array_key_exists; use function array_shift; @@ -48,9 +51,9 @@ class CardinalitySingle extends Auth\ProcessingFilter * * @param array &$config Configuration information about this filter. * @param mixed $reserved For future use. - * @param \SimpleSAML\Utils\HTTP $httpUtils HTTP utility service (handles redirects). + * @param \SimpleSAML\Utils\HTTP|null $httpUtils HTTP utility service (handles redirects). */ - public function __construct(array &$config, $reserved, Utils\HTTP $httpUtils = null) + public function __construct(array &$config, $reserved, ?Utils\HTTP $httpUtils = null) { parent::__construct($config, $reserved); @@ -86,6 +89,10 @@ public function __construct(array &$config, $reserved, Utils\HTTP $httpUtils = n * Process this filter * * @param array &$state The current request + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Error\CriticalConfigurationError + * @throws \Exception + * @throws \Throwable */ public function process(array &$state): void { diff --git a/modules/core/src/Auth/Process/ExtendIdPSession.php b/modules/core/src/Auth/Process/ExtendIdPSession.php index b7aae9d265..60ca50e5bd 100644 --- a/modules/core/src/Auth/Process/ExtendIdPSession.php +++ b/modules/core/src/Auth/Process/ExtendIdPSession.php @@ -4,7 +4,10 @@ namespace SimpleSAML\Module\core\Auth\Process; -use SimpleSAML\{Auth, Configuration, Session, SessionHandler}; +use SimpleSAML\Auth; +use SimpleSAML\Configuration; +use SimpleSAML\Session; +use SimpleSAML\SessionHandler; use function time; @@ -15,6 +18,8 @@ class ExtendIdPSession extends Auth\ProcessingFilter { /** * @param array &$state + * @throws \Exception + * @throws \Throwable */ public function process(array &$state): void { diff --git a/modules/core/src/Auth/Process/GenerateGroups.php b/modules/core/src/Auth/Process/GenerateGroups.php index 1ca9c80856..4140066a25 100644 --- a/modules/core/src/Auth/Process/GenerateGroups.php +++ b/modules/core/src/Auth/Process/GenerateGroups.php @@ -5,8 +5,9 @@ namespace SimpleSAML\Module\core\Auth\Process; use Exception; -use SimpleSAML\{Auth, Logger}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; +use SimpleSAML\Logger; use function array_key_exists; use function count; @@ -36,6 +37,7 @@ class GenerateGroups extends Auth\ProcessingFilter * * @param array &$config Configuration information about this filter. * @param mixed $reserved For future use. + * @throws \Exception */ public function __construct(array &$config, $reserved) { @@ -65,6 +67,7 @@ public function __construct(array &$config, $reserved) * Apply filter to add groups attribute. * * @param array &$state The current request + * @throws \Exception */ public function process(array &$state): void { @@ -153,7 +156,7 @@ private static function escapeIllegalChars(string $string): string function ($m) { return sprintf("%%%02x", ord($m[1])); }, - $string + $string, ); } } diff --git a/modules/core/src/Auth/Process/LanguageAdaptor.php b/modules/core/src/Auth/Process/LanguageAdaptor.php index 2a4fb83fd1..42903bdc78 100644 --- a/modules/core/src/Auth/Process/LanguageAdaptor.php +++ b/modules/core/src/Auth/Process/LanguageAdaptor.php @@ -4,9 +4,10 @@ namespace SimpleSAML\Module\core\Auth\Process; -use SimpleSAML\{Auth, Logger}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; use SimpleSAML\Locale\Language; +use SimpleSAML\Logger; use function array_key_exists; @@ -43,6 +44,8 @@ public function __construct(array &$config, $reserved) * Add or replace existing attributes with the configured values. * * @param array &$state The current request + * @throws \SimpleSAML\Error\CannotSetCookie + * @throws \Exception */ public function process(array &$state): void { diff --git a/modules/core/src/Auth/Process/PHP.php b/modules/core/src/Auth/Process/PHP.php index 9ccc36c83b..4a2bd27b41 100644 --- a/modules/core/src/Auth/Process/PHP.php +++ b/modules/core/src/Auth/Process/PHP.php @@ -4,8 +4,9 @@ namespace SimpleSAML\Module\core\Auth\Process; -use SimpleSAML\{Auth, Error}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; +use SimpleSAML\Error; use function strval; @@ -59,7 +60,7 @@ public function process(array &$state): void */ $function = function ( /** @scrutinizer ignore-unused */ array &$attributes, - /** @scrutinizer ignore-unused */ array &$state + /** @scrutinizer ignore-unused */ array &$state, ): void { eval($this->code); }; diff --git a/modules/core/src/Auth/Process/ScopeAttribute.php b/modules/core/src/Auth/Process/ScopeAttribute.php index e90c248617..b247ca3871 100644 --- a/modules/core/src/Auth/Process/ScopeAttribute.php +++ b/modules/core/src/Auth/Process/ScopeAttribute.php @@ -4,8 +4,9 @@ namespace SimpleSAML\Module\core\Auth\Process; -use SimpleSAML\{Auth, Configuration}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; +use SimpleSAML\Configuration; use function count; use function explode; @@ -54,6 +55,7 @@ class ScopeAttribute extends Auth\ProcessingFilter * * @param array &$config Configuration information about this filter. * @param mixed $reserved For future use. + * @throws \SimpleSAML\Assert\AssertionFailedException */ public function __construct(array &$config, $reserved) { diff --git a/modules/core/src/Auth/Process/ScopeFromAttribute.php b/modules/core/src/Auth/Process/ScopeFromAttribute.php index 09a71a8d05..04661a28b7 100644 --- a/modules/core/src/Auth/Process/ScopeFromAttribute.php +++ b/modules/core/src/Auth/Process/ScopeFromAttribute.php @@ -4,8 +4,10 @@ namespace SimpleSAML\Module\core\Auth\Process; -use SimpleSAML\{Auth, Configuration, Logger}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; +use SimpleSAML\Configuration; +use SimpleSAML\Logger; use function strpos; use function substr; @@ -48,6 +50,7 @@ class ScopeFromAttribute extends Auth\ProcessingFilter * * @param array &$config Configuration information about this filter. * @param mixed $reserved For future use. + * @throws \SimpleSAML\Assert\AssertionFailedException */ public function __construct(array &$config, $reserved) { @@ -63,6 +66,8 @@ public function __construct(array &$config, $reserved) * Apply this filter. * * @param array &$state The current request + * @throws \Exception + * @throws \SimpleSAML\Assert\AssertionFailedException */ public function process(array &$state): void { @@ -90,7 +95,7 @@ public function process(array &$state): void $scope = substr($sourceAttrVal, $scopeIndex + 1); $attributes[$this->targetAttribute][] = $scope; Logger::debug( - 'ScopeFromAttribute: Inserted new attribute ' . $this->targetAttribute . ', with scope ' . $scope + 'ScopeFromAttribute: Inserted new attribute ' . $this->targetAttribute . ', with scope ' . $scope, ); } else { Logger::warning('ScopeFromAttribute: The configured source attribute ' . $this->sourceAttribute diff --git a/modules/core/src/Auth/Process/TargetedID.php b/modules/core/src/Auth/Process/TargetedID.php index 697e67cfdb..bc71be5540 100644 --- a/modules/core/src/Auth/Process/TargetedID.php +++ b/modules/core/src/Auth/Process/TargetedID.php @@ -5,10 +5,12 @@ namespace SimpleSAML\Module\core\Auth\Process; use Exception; -use SimpleSAML\{Auth, Logger, Utils}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; +use SimpleSAML\Logger; use SimpleSAML\SAML2\Constants as C; use SimpleSAML\SAML2\XML\saml\NameID; +use SimpleSAML\Utils; use function array_key_exists; use function hash; @@ -62,6 +64,7 @@ class TargetedID extends Auth\ProcessingFilter * * @param array &$config Configuration information about this filter. * @param mixed $reserved For future use. + * @throws \Exception */ public function __construct(array &$config, $reserved) { @@ -70,7 +73,7 @@ public function __construct(array &$config, $reserved) Assert::keyExists($config, 'identifyingAttribute', "Missing mandatory 'identifyingAttribute' config setting."); Assert::stringNotEmpty( $config['identifyingAttribute'], - "TargetedID: 'identifyingAttribute' must be a non-empty string." + "TargetedID: 'identifyingAttribute' must be a non-empty string.", ); $this->identifyingAttribute = $config['identifyingAttribute']; @@ -101,6 +104,8 @@ public function setConfigUtils(Utils\Config $configUtils): void * Apply filter to add the targeted ID. * * @param array &$state The current state. + * @throws \SimpleSAML\Error\CriticalConfigurationError + * @throws \Exception */ public function process(array &$state): void { @@ -109,8 +114,8 @@ public function process(array &$state): void Logger::warning( sprintf( "core:TargetedID: Missing attribute '%s', which is needed to generate the TargetedID.", - $this->identifyingAttribute - ) + $this->identifyingAttribute, + ), ); return; diff --git a/modules/core/src/Auth/Process/WarnShortSSOInterval.php b/modules/core/src/Auth/Process/WarnShortSSOInterval.php index 7d39ecadc0..31b3c31f02 100644 --- a/modules/core/src/Auth/Process/WarnShortSSOInterval.php +++ b/modules/core/src/Auth/Process/WarnShortSSOInterval.php @@ -4,7 +4,10 @@ namespace SimpleSAML\Module\core\Auth\Process; -use SimpleSAML\{Auth, Logger, Module, Utils}; +use SimpleSAML\Auth; +use SimpleSAML\Logger; +use SimpleSAML\Module; +use SimpleSAML\Utils; use function array_key_exists; use function time; @@ -24,6 +27,10 @@ class WarnShortSSOInterval extends Auth\ProcessingFilter * If it is to short a while since, we will show a warning to the user. * * @param array $state The state of the response. + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Error\CriticalConfigurationError + * @throws \Exception + * @throws \Throwable */ public function process(array &$state): void { diff --git a/modules/core/src/Auth/Source/AbstractSourceSelector.php b/modules/core/src/Auth/Source/AbstractSourceSelector.php index d60add0e21..de4067a93f 100644 --- a/modules/core/src/Auth/Source/AbstractSourceSelector.php +++ b/modules/core/src/Auth/Source/AbstractSourceSelector.php @@ -5,8 +5,11 @@ namespace SimpleSAML\Module\core\Auth\Source; use Exception; -use SimpleSAML\{Auth, Configuration, Error, Session}; -use Symfony\Component\HttpFoundation\{Request, Response}; +use SimpleSAML\Auth; +use SimpleSAML\Configuration; +use SimpleSAML\Error; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpFoundation\Response; use function in_array; @@ -29,6 +32,7 @@ abstract class AbstractSourceSelector extends Auth\Source * * @param array $info Information about this authentication source. * @param array $config Configuration. + * @throws \Exception */ public function __construct(array $info, array $config) { @@ -54,6 +58,9 @@ public function __construct(array $info, array $config) * * @param \Symfony\Component\HttpFoundation\Request $request The current request * @param array &$state Information about the current authentication. + * @throws \Exception + * @throws \SimpleSAML\Error\Exception + * @throws \Throwable */ public function authenticate(Request $request, array &$state): ?Response { @@ -72,8 +79,11 @@ public function authenticate(Request $request, array &$state): ?Response * @param \Symfony\Component\HttpFoundation\Request $request * @param \SimpleSAML\Auth\Source $as * @param array $state + * @throws \SimpleSAML\Error\Exception + * @throws \Exception + * @throws \Throwable */ - public static function doAuthentication(Request $request, Auth\Source $as, array $state): ?Response + public static function doAuthentication(Request $request, Auth\Source $as, array &$state): ?Response { try { $response = $as->authenticate($request, $state); diff --git a/modules/core/src/Auth/Source/AdminPassword.php b/modules/core/src/Auth/Source/AdminPassword.php index 46ce6850f4..66da019d58 100644 --- a/modules/core/src/Auth/Source/AdminPassword.php +++ b/modules/core/src/Auth/Source/AdminPassword.php @@ -4,8 +4,10 @@ namespace SimpleSAML\Module\core\Auth\Source; -use SimpleSAML\{Configuration, Error, Utils}; +use SimpleSAML\Configuration; +use SimpleSAML\Error; use SimpleSAML\Module\core\Auth\UserPassBase; +use Symfony\Component\PasswordHasher\Hasher\NativePasswordHasher; /** * Authentication source which verifies the password against @@ -21,6 +23,7 @@ class AdminPassword extends UserPassBase * * @param array $info Information about this authentication source. * @param array $config Configuration. + * @throws \Exception */ public function __construct(array $info, array $config) { @@ -43,9 +46,14 @@ public function __construct(array $info, array $config) * @param string $username The username the user wrote. * @param string $password The password the user wrote. * @return array Associative array with the users attributes. + * @throws \SimpleSAML\Error\Error + * @throws \Exception */ - protected function login(string $username, string $password): array - { + protected function login( + string $username, + #[\SensitiveParameter] + string $password, + ): array { $config = Configuration::getInstance(); $adminPassword = $config->getString('auth.adminpassword'); if ($adminPassword === '123') { @@ -57,8 +65,13 @@ protected function login(string $username, string $password): array throw new Error\Error(Error\ErrorCodes::WRONGUSERPASS); } - $cryptoUtils = new Utils\Crypto(); - if (!$cryptoUtils->pwValid($adminPassword, $password)) { + $pwinfo = password_get_info($adminPassword); + if ($pwinfo['algo'] === null) { + throw new Error\Error(Error\ErrorCodes::ADMINNOTHASHED); + } + + $hasher = new NativePasswordHasher(); + if (!$hasher->verify($adminPassword, $password)) { throw new Error\Error(Error\ErrorCodes::WRONGUSERPASS); } return ['user' => ['admin']]; diff --git a/modules/core/src/Auth/Source/RequestedAuthnContextSelector.php b/modules/core/src/Auth/Source/RequestedAuthnContextSelector.php index 213c9b3c39..978d8f8d96 100644 --- a/modules/core/src/Auth/Source/RequestedAuthnContextSelector.php +++ b/modules/core/src/Auth/Source/RequestedAuthnContextSelector.php @@ -68,6 +68,8 @@ class RequestedAuthnContextSelector extends AbstractSourceSelector * * @param array $info Information about this authentication source. * @param array $config Configuration. + * @throws \SimpleSAML\Error\Exception + * @throws \Exception */ public function __construct(array $info, array $config) { @@ -104,17 +106,19 @@ public function __construct(array $info, array $config) * * @param array &$state Information about the current authentication. * @return string + * @throws \SimpleSAML\Error\Exception + * @throws \Exception */ protected function selectAuthSource(array &$state): string { - $requestedContexts = $state['saml:RequestedAuthnContext']; + $requestedContexts = $state['saml:RequestedAuthnContext'] ?? null; if ( $requestedContexts === null || !array_key_exists('AuthnContextClassRef', $requestedContexts) || $requestedContexts['AuthnContextClassRef'] === null ) { Logger::info( - "core:RequestedAuthnContextSelector: no RequestedAuthnContext provided; selecting default authsource" + "core:RequestedAuthnContextSelector: no RequestedAuthnContext provided; selecting default authsource", ); if (array_key_exists('default', $this->contexts)) { @@ -142,7 +146,7 @@ protected function selectAuthSource(array &$state): string return $context['source']; } } - break 2; + break 1; case 'minimum': case 'maximum': case 'better': diff --git a/modules/core/src/Auth/Source/SourceIPSelector.php b/modules/core/src/Auth/Source/SourceIPSelector.php index a06f47e23d..28bbce58ae 100644 --- a/modules/core/src/Auth/Source/SourceIPSelector.php +++ b/modules/core/src/Auth/Source/SourceIPSelector.php @@ -4,8 +4,11 @@ namespace SimpleSAML\Module\core\Auth\Source; -use SimpleSAML\{Error, Logger, Utils}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Error; +use SimpleSAML\Logger; +use Symfony\Component\HttpFoundation\IpUtils; +use Symfony\Component\HttpFoundation\Request; use function array_key_exists; use function sprintf; @@ -33,6 +36,7 @@ class SourceIPSelector extends AbstractSourceSelector */ public const SOURCESID = '\SimpleSAML\Module\core\Auth\Source\SourceIPSelector.SourceId'; + /** * @param string|null The default authentication source to use when none of the zones match */ @@ -51,6 +55,8 @@ class SourceIPSelector extends AbstractSourceSelector * * @param array $info Information about this authentication source. * @param array $config Configuration. + * @throws \SimpleSAML\Error\Exception + * @throws \Exception */ public function __construct(array $info, array $config) { @@ -68,11 +74,11 @@ public function __construct(array $info, array $config) foreach ($zones as $key => $zone) { if (!array_key_exists('source', $zone)) { throw new Error\Exception( - sprintf("Incomplete zone-configuration '%s' due to missing `source` key.", $key) + sprintf("Incomplete zone-configuration '%s' due to missing `source` key.", $key), ); } elseif (!array_key_exists('subnet', $zone)) { throw new Error\Exception( - sprintf("Incomplete zone-configuration '%s' due to missing `subnet` key.", $key) + sprintf("Incomplete zone-configuration '%s' due to missing `subnet` key.", $key), ); } else { $this->zones[$key] = $zone; @@ -86,21 +92,24 @@ public function __construct(array $info, array $config) * * @param array &$state Information about the current authentication. * @return string + * @throws \SimpleSAML\Error\NotFound + * @throws \Exception */ protected function selectAuthSource(/** @scrutinizer ignore-unused */ array &$state): string { - $netUtils = new Utils\Net(); - $ip = $_SERVER['REMOTE_ADDR']; + $ip = Request::createFromGlobals()->getClientIp(); + Assert::notNull($ip, "Unable to determine client IP."); + $state['sourceIPSelector:zone'] = 'default'; $source = $this->defaultSource; foreach ($this->zones as $name => $zone) { foreach ($zone['subnet'] as $subnet) { - if ($netUtils->ipCIDRcheck($subnet, $ip)) { + if (IpUtils::checkIp($ip, $subnet)) { // Client's IP is in one of the ranges for the secondary auth source Logger::info(sprintf( "core:SourceIPSelector: Selecting zone `%s` based on client IP %s", $name, - $ip + $ip, )); $source = $zone['source']; break; diff --git a/modules/core/src/Auth/UserPassBase.php b/modules/core/src/Auth/UserPassBase.php index 98a4e97fbe..645ca69ec1 100644 --- a/modules/core/src/Auth/UserPassBase.php +++ b/modules/core/src/Auth/UserPassBase.php @@ -5,10 +5,16 @@ namespace SimpleSAML\Module\core\Auth; use Exception; -use SimpleSAML\{Auth, Configuration, Error, Logger, Module, Utils}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Auth; +use SimpleSAML\Configuration; +use SimpleSAML\Error; +use SimpleSAML\Logger; +use SimpleSAML\Module; use SimpleSAML\SAML2\Constants as C; -use Symfony\Component\HttpFoundation\{Request, Response}; +use SimpleSAML\Utils; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpFoundation\Response; /** * Helper class for username/password authentication. @@ -30,6 +36,7 @@ abstract class UserPassBase extends Auth\Source */ public const AUTHID = '\SimpleSAML\Module\core\Auth\UserPassBase.AuthId'; + /** * Username we should force. * @@ -95,6 +102,7 @@ abstract class UserPassBase extends Auth\Source * * @param array $info Information about this authentication source. * @param array &$config Configuration for this authentication source. + * @throws \Exception */ public function __construct(array $info, array &$config) { @@ -133,6 +141,7 @@ public function setForcedUsername(?string $forcedUsername): void $this->forcedUsername = $forcedUsername; } + /** * Return login links from configuration * @return string[] @@ -191,6 +200,10 @@ public function isRememberMeChecked(): bool * * @param \Symfony\Component\HttpFoundation\Request $request The current request * @param array &$state Information about the current authentication. + * @throws \SimpleSAML\Error\Error + * @throws \SimpleSAML\Error\Exception + * @throws \Exception + * @throws \Throwable */ public function authenticate(Request $request, array &$state): ?Response { @@ -263,7 +276,7 @@ public function authenticate(Request $request, array &$state): ?Response * @param string $password The password the user wrote. * @return array Associative array with the user's attributes. */ - abstract protected function login(string $username, string $password): array; + abstract protected function login(string $username, #[\SensitiveParameter] string $password): array; /** @@ -276,9 +289,17 @@ abstract protected function login(string $username, string $password): array; * @param string $authStateId The identifier of the authentication state. * @param string $username The username the user wrote. * @param string $password The password the user wrote. + * @throws \Exception + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Error\NoState + * @throws \Throwable */ - public static function handleLogin(string $authStateId, string $username, string $password): Response - { + public static function handleLogin( + string $authStateId, + string $username, + #[\SensitiveParameter] + string $password, + ): Response { // Here we retrieve the state array we saved in the authenticate-function. $state = Auth\State::loadState($authStateId, self::STAGEID); diff --git a/modules/core/src/Auth/UserPassOrgBase.php b/modules/core/src/Auth/UserPassOrgBase.php index 9378508e8d..308a1ce01c 100644 --- a/modules/core/src/Auth/UserPassOrgBase.php +++ b/modules/core/src/Auth/UserPassOrgBase.php @@ -5,9 +5,14 @@ namespace SimpleSAML\Module\core\Auth; use Exception; -use SimpleSAML\{Auth, Error, Logger, Module, Utils}; use SimpleSAML\Assert\Assert; -use Symfony\Component\HttpFoundation\{Request, Response}; +use SimpleSAML\Auth; +use SimpleSAML\Error; +use SimpleSAML\Logger; +use SimpleSAML\Module; +use SimpleSAML\Utils; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpFoundation\Response; use function count; use function explode; @@ -39,6 +44,7 @@ abstract class UserPassOrgBase extends Auth\Source */ public const ORGID = '\SimpleSAML\Module\core\Auth\UserPassOrgBase.SelectedOrg'; + /** * What way do we handle the organization as part of the username. * Three values: @@ -208,6 +214,10 @@ public function getRememberOrganizationChecked(): bool * * @param \Symfony\Component\HttpFoundation\Request $request The current request * @param array &$state Information about the current authentication. + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Error\CriticalConfigurationError + * @throws \Exception + * @throws \Throwable */ public function authenticate(Request $request, array &$state): ?Response { @@ -238,7 +248,12 @@ public function authenticate(Request $request, array &$state): ?Response * @param string $organization The id of the organization the user chose. * @return array Associative array with the user's attributes. */ - abstract protected function login(string $username, string $password, string $organization): array; + abstract protected function login( + string $username, + #[\SensitiveParameter] + string $password, + string $organization, + ): array; /** @@ -265,12 +280,18 @@ abstract protected function getOrganizations(): array; * @param string $username The username the user wrote. * @param string $password The password the user wrote. * @param string $organization The id of the organization the user chose. + * @throws \Exception + * @throws \SimpleSAML\Error\Error + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Error\NoState + * @throws \Throwable */ public static function handleLogin( string $authStateId, string $username, + #[\SensitiveParameter] string $password, - string $organization + string $organization, ): Response { /* Retrieve the authentication state. */ $state = Auth\State::loadState($authStateId, self::STAGEID); @@ -308,7 +329,7 @@ public static function handleLogin( Logger::stats( 'User \'' . $username . '\' at \'' . $organization - . '\' successfully authenticated from ' . $_SERVER['REMOTE_ADDR'] + . '\' successfully authenticated from ' . $_SERVER['REMOTE_ADDR'], ); // Add the selected Org to the state @@ -328,6 +349,10 @@ public static function handleLogin( * @param string $authStateId The identifier of the authentication state. * @return array|null Array of organizations. NULL if the user must enter the * organization as part of the username. + * @throws \Exception + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Error\NoState + * @throws \Throwable */ public static function listOrganizations(string $authStateId): ?array { diff --git a/modules/core/src/Controller/ErrorReport.php b/modules/core/src/Controller/ErrorReport.php index 1ff5ee0243..cc38ab4924 100644 --- a/modules/core/src/Controller/ErrorReport.php +++ b/modules/core/src/Controller/ErrorReport.php @@ -5,9 +5,14 @@ namespace SimpleSAML\Module\core\Controller; use Exception as BuiltinException; -use SimpleSAML\{Configuration, Error, Logger, Session, Utils}; +use SimpleSAML\Configuration; +use SimpleSAML\Error; +use SimpleSAML\Logger; +use SimpleSAML\Session; +use SimpleSAML\Utils; use SimpleSAML\XHTML\Template; -use Symfony\Component\HttpFoundation\{RedirectResponse, Request, Response}; +use Symfony\Component\HttpFoundation\RedirectResponse; +use Symfony\Component\HttpFoundation\Request; use function dirname; use function filter_var; @@ -34,7 +39,7 @@ class ErrorReport */ public function __construct( protected Configuration $config, - protected Session $session + protected Session $session, ) { } @@ -42,6 +47,10 @@ public function __construct( /** * @param \Symfony\Component\HttpFoundation\Request $request * @return \SimpleSAML\XHTML\Template|\Symfony\Component\HttpFoundation\RedirectResponse + * @throws \PHPMailer\PHPMailer\Exception + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \Exception */ public function main(Request $request): RedirectResponse|Template { diff --git a/modules/core/src/Controller/Exception.php b/modules/core/src/Controller/Exception.php index d17ca07141..900c8b6367 100644 --- a/modules/core/src/Controller/Exception.php +++ b/modules/core/src/Controller/Exception.php @@ -6,9 +6,17 @@ use DateTimeInterface; use SimpleSAML\Assert\Assert; -use SimpleSAML\{Auth, Configuration, Error, Logger, Module, Session, Utils}; +use SimpleSAML\Auth; +use SimpleSAML\Configuration; +use SimpleSAML\Error; +use SimpleSAML\Logger; +use SimpleSAML\Module; +use SimpleSAML\Session; +use SimpleSAML\Utils; use SimpleSAML\XHTML\Template; -use Symfony\Component\HttpFoundation\{RedirectResponse, Request, Response}; +use Symfony\Component\HttpFoundation\RedirectResponse; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpFoundation\Response; use function array_keys; use function date; @@ -34,14 +42,14 @@ class Exception * * It initializes the global configuration and auth source configuration for the controllers implemented here. * - * @param \SimpleSAML\Configuration $config The configuration to use by the controllers. - * @param \SimpleSAML\Session $session The session to use by the controllers. + * @param \SimpleSAML\Configuration $config The configuration to use by the controllers. + * @param \SimpleSAML\Session $session The session to use by the controllers. * * @throws \Exception */ public function __construct( protected Configuration $config, - protected Session $session + protected Session $session, ) { } @@ -49,9 +57,11 @@ public function __construct( /** * Show Service Provider error. * - * @param Request $request The request that lead to this login operation. + * @param \Symfony\Component\HttpFoundation\Request $request The request that lead to this login operation. * @param string $code The error code * @return \SimpleSAML\XHTML\Template An HTML template + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \Exception */ public function error(Request $request, string $code): Response { @@ -108,9 +118,13 @@ public function error(Request $request, string $code): Response /** * Show cardinality error. * - * @param Request $request The request that lead to this login operation. - * @throws \SimpleSAML\Error\BadRequest + * @param \Symfony\Component\HttpFoundation\Request $request The request that lead to this login operation. * @return \SimpleSAML\XHTML\Template An HTML template + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \SimpleSAML\Error\BadRequest + * @throws \SimpleSAML\Error\NoState + * @throws \Exception + * @throws \Throwable */ public function cardinality(Request $request): Response { @@ -122,14 +136,14 @@ public function cardinality(Request $request): Response $state = Auth\State::loadState($stateId, 'core:cardinality'); Logger::stats( 'core:cardinality:error ' . $state['Destination']['entityid'] . ' ' . $state['saml:sp:IdP'] . - ' ' . implode(',', array_keys($state['core:cardinality:errorAttributes'])) + ' ' . implode(',', array_keys($state['core:cardinality:errorAttributes'])), ); $t = new Template($this->config, 'core:cardinality_error.twig'); $t->data['cardinalityErrorAttributes'] = $state['core:cardinality:errorAttributes']; if (isset($state['Source']['auth'])) { $t->data['LogoutURL'] = Module::getModuleURL( - 'saml/sp/login/' . urlencode($state['Source']['auth']) + 'saml/sp/login/' . urlencode($state['Source']['auth']), ); } @@ -141,9 +155,13 @@ public function cardinality(Request $request): Response /** * Show missing cookie error. * - * @param Request $request The request that lead to this login operation. + * @param \Symfony\Component\HttpFoundation\Request $request The request that lead to this login operation. * @return \SimpleSAML\XHTML\Template|\Symfony\Component\HttpFoundation\RedirectResponse * An HTML template or a redirection if we are not authenticated. + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \SimpleSAML\Error\Exception + * @throws \InvalidArgumentException + * @throws \Exception */ public function nocookie(Request $request): Template|RedirectResponse { @@ -164,12 +182,19 @@ public function nocookie(Request $request): Template|RedirectResponse * Show a warning to an user about the SP requesting SSO a short time after * doing it previously. * - * @param Request $request The request that lead to this login operation. + * @param \Symfony\Component\HttpFoundation\Request $request The request that lead to this login operation. * - * @return \SimpleSAML\XHTML\Template|\Symfony\Component\HttpFoundation\Response - * An HTML template, a redirect or a "runnable" response. + * @return ( + * \SimpleSAML\XHTML\Template| + * \SimpleSAML\HTTP\RunnableResponse| + * \Symfony\Component\HttpFoundation\RedirectResponse + * ) An HTML template, a redirect or a "runnable" response. * * @throws \SimpleSAML\Error\BadRequest + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \SimpleSAML\Error\NoState + * @throws \SimpleSAML\Error\Exception + * @throws \Throwable */ public function shortSsoInterval(Request $request): Template|Response { diff --git a/modules/core/src/Controller/Login.php b/modules/core/src/Controller/Login.php index 6233ba8604..9a1eb22b25 100644 --- a/modules/core/src/Controller/Login.php +++ b/modules/core/src/Controller/Login.php @@ -4,15 +4,23 @@ namespace SimpleSAML\Module\core\Controller; -use Exception as BuiltinException; -use SimpleSAML\{Auth, Configuration, Error, Module, Utils}; -use SimpleSAML\Module\core\Auth\{UserPassBase, UserPassOrgBase}; +use SimpleSAML\Auth; +use SimpleSAML\Configuration; +use SimpleSAML\Error; +use SimpleSAML\Error\ErrorCodes; +use SimpleSAML\Module; +use SimpleSAML\Module\core\Auth\UserPassBase; +use SimpleSAML\Module\core\Auth\UserPassOrgBase; +use SimpleSAML\Utils; use SimpleSAML\XHTML\Template; -use Symfony\Component\HttpFoundation\{Cookie, RedirectResponse, Request, Response}; +use Symfony\Component\HttpFoundation\Cookie; +use Symfony\Component\HttpFoundation\RedirectResponse; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpFoundation\Response; use function array_key_exists; -use function substr; use function strval; +use function substr; use function time; use function trim; @@ -37,18 +45,23 @@ class Login */ protected $authState = Auth\State::class; + /** + * These are all the subclass instances of ErrorCodes which have been created + */ + protected static array $registeredErrorCodeClasses = []; + /** * Controller constructor. * * It initializes the global configuration for the controllers implemented here. * - * @param \SimpleSAML\Configuration $config The configuration to use by the controllers. + * @param \SimpleSAML\Configuration $config The configuration to use by the controllers. * * @throws \Exception */ public function __construct( - protected Configuration $config + protected Configuration $config, ) { } @@ -77,6 +90,8 @@ public function setAuthState(Auth\State $authState): void /** * @return \SimpleSAML\XHTML\Template + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \Exception */ public function welcome(): Template { @@ -91,6 +106,11 @@ public function welcome(): Template * * @param \Symfony\Component\HttpFoundation\Request $request * @return \Symfony\Component\HttpFoundation\Response + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Error\NoState + * @throws \Exception + * @throws \SimpleSAML\Error\BadRequest + * @throws \Throwable */ public function loginuserpass(Request $request): Response { @@ -106,8 +126,8 @@ public function loginuserpass(Request $request): Response /** @var \SimpleSAML\Module\core\Auth\UserPassBase|null $source */ $source = $this->authSource::getById($state[UserPassBase::AUTHID]); if ($source === null) { - throw new BuiltinException( - 'Could not find authentication source with id ' . $state[UserPassBase::AUTHID] + throw new Error\Exception( + 'Could not find authentication source with id ' . $state[UserPassBase::AUTHID], ); } @@ -115,6 +135,22 @@ public function loginuserpass(Request $request): Response } + /** + * Called by the constructor in ErrorCode to register subclasses with us + * so we can track which subclasses are valid names in order to limit + * which classes we might recreate + * + * @para object ecc an instance of an ErrorCode or subclass + */ + public static function registerErrorCodeClass(ErrorCodes $ecc): void + { + if (is_subclass_of($ecc, ErrorCodes::class, false)) { + $className = get_class($ecc); + self::$registeredErrorCodeClasses[] = $className; + } + } + + /** * This method handles the generic part for both loginuserpass and loginuserpassorg * @@ -122,6 +158,10 @@ public function loginuserpass(Request $request): Response * @param \SimpleSAML\Module\core\Auth\UserPassBase|\SimpleSAML\Module\core\Auth\UserPassOrgBase $source * @param array $state * @return \Symfony\Component\HttpFoundation\Response + * @throws \SimpleSAML\Error\Exception + * @throws \Exception + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \Throwable */ private function handleLogin(Request $request, UserPassBase|UserPassOrgBase $source, array $state): Response { @@ -139,10 +179,12 @@ private function handleLogin(Request $request, UserPassBase|UserPassOrgBase $sou $errorCode = null; $errorParams = null; + $codeClass = ''; if (isset($state['error'])) { $errorCode = $state['error']['code']; $errorParams = $state['error']['params']; + $codeClass = $state['error']['codeclass']; } if ($organizations === null || $organization !== '') { @@ -225,9 +267,12 @@ private function handleLogin(Request $request, UserPassBase|UserPassOrgBase $sou // Login failed. Extract error code and parameters, to display the error $errorCode = $e->getErrorCode(); $errorParams = $e->getParameters(); + $codeClass = get_class($e->getErrorCodes()); + $state['error'] = [ 'code' => $errorCode, - 'params' => $errorParams + 'params' => $errorParams, + 'codeclass' => $codeClass, ]; $authStateId = Auth\State::saveState($state, $source::STAGEID); } @@ -239,10 +284,9 @@ private function handleLogin(Request $request, UserPassBase|UserPassOrgBase $sou } $t = new Template($this->config, 'core:loginuserpass.twig'); - $t->data['AuthState'] = $authStateId; if ($source instanceof UserPassOrgBase) { - $t->data['username'] = $username; + $t->data['username'] = $state['core:username'] ?? ''; $t->data['forceUsername'] = false; $t->data['rememberUsernameEnabled'] = $source->getRememberUsernameEnabled(); $t->data['rememberUsernameChecked'] = $source->getRememberUsernameChecked(); @@ -256,7 +300,7 @@ private function handleLogin(Request $request, UserPassBase|UserPassOrgBase $sou $t->data['rememberMeEnabled'] = $source->isRememberMeEnabled(); $t->data['rememberMeChecked'] = $source->isRememberMeChecked(); } else { - $t->data['username'] = $username; + $t->data['username'] = $state['core:username'] ?? ''; $t->data['forceUsername'] = false; $t->data['rememberUsernameEnabled'] = $source->getRememberUsernameEnabled(); $t->data['rememberUsernameChecked'] = $source->getRememberUsernameChecked(); @@ -269,6 +313,7 @@ private function handleLogin(Request $request, UserPassBase|UserPassOrgBase $sou } if ($source instanceof UserPassOrgBase) { + $t->data['formURL'] = Module::getModuleURL('core/loginuserpassorg', ['AuthState' => $authStateId]); if ($request->request->has($source->getAuthId() . '-username')) { $t->data['rememberUsernameChecked'] = true; } @@ -285,13 +330,39 @@ private function handleLogin(Request $request, UserPassBase|UserPassOrgBase $sou $t->data['organizations'] = $organizations; } } else { + $t->data['formURL'] = Module::getModuleURL('core/loginuserpass', ['AuthState' => $authStateId]); $t->data['loginpage_links'] = $source->getLoginLinks(); } $t->data['errorcode'] = $errorCode; - $t->data['errorcodes'] = Error\ErrorCodes::getAllErrorCodeMessages(); + $t->data['errorcodes'] = (new Error\ErrorCodes())->getAllMessages(); $t->data['errorparams'] = $errorParams; + $className = $codeClass; + if ($className) { + if (in_array($className, self::$registeredErrorCodeClasses)) { + if (!class_exists($className)) { + throw new Error\Exception("Could not resolve error class. no class named '$className'."); + } + + if (!is_subclass_of($className, ErrorCodes::class)) { + throw new Error\Exception( + 'Could not resolve error class: The class \'' . $className + . '\' isn\'t a subclass of \'' . ErrorCodes::class . '\'.', + ); + } + + $obj = Module::createObject($className, ErrorCodes::class); + $t->data['errorcodes'] = $obj->getAllMessages(); + } else { + if ($className != ErrorCodes::class) { + throw new Error\Exception( + 'The desired error code class is not found or of the wrong type ' . $className, + ); + } + } + } + if (isset($state['SPMetadata'])) { $t->data['SPMetadata'] = $state['SPMetadata']; } else { @@ -309,6 +380,11 @@ private function handleLogin(Request $request, UserPassBase|UserPassOrgBase $sou * * @param \Symfony\Component\HttpFoundation\Request $request * @return \Symfony\Component\HttpFoundation\Response + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Error\NoState + * @throws \Exception + * @throws \SimpleSAML\Error\BadRequest + * @throws \Throwable */ public function loginuserpassorg(Request $request): Response { @@ -324,8 +400,8 @@ public function loginuserpassorg(Request $request): Response /** @var \SimpleSAML\Module\core\Auth\UserPassOrgBase $source */ $source = $this->authSource::getById($state[UserPassOrgBase::AUTHID]); if ($source === null) { - throw new BuiltinException( - 'Could not find authentication source with id ' . $state[UserPassOrgBase::AUTHID] + throw new Error\Exception( + 'Could not find authentication source with id ' . $state[UserPassOrgBase::AUTHID], ); } @@ -344,6 +420,7 @@ public function loginuserpassorg(Request $request): Response * @param bool $raw Whether this cookie must be sent without urlencoding * @param string $sameSite The value for the sameSite-flag * @return \Symfony\Component\HttpFoundation\Cookie + * @throws \InvalidArgumentException */ private function renderCookie( string $name, @@ -354,7 +431,7 @@ private function renderCookie( ?bool $secure = null, bool $httponly = true, bool $raw = false, - ?string $sameSite = 'none' + ?string $sameSite = 'none', ): Cookie { return new Cookie($name, $value, $expire, $path, $domain, $secure, $httponly, $raw, $sameSite); } @@ -379,8 +456,6 @@ private function getUsernameFromRequest(Request $request, Auth\Source $source, a && $request->cookies->has($source->getAuthId() . '-username') ) { $username = $request->cookies->get($source->getAuthId() . '-username'); - } elseif (isset($state['core:username'])) { - $username = strval($state['core:username']); } return $username; @@ -435,6 +510,10 @@ private function getOrganizationFromRequest(Request $request, Auth\Source $sourc /** * Searches for a valid and allowed ReturnTo URL parameter, * otherwise give the base installation page as a return point. + * @throws \SimpleSAML\Error\CriticalConfigurationError + * @throws \SimpleSAML\Error\Exception + * @throws \InvalidArgumentException + * @throws \Exception */ private function getReturnPath(Request $request): string { @@ -454,7 +533,13 @@ private function getReturnPath(Request $request): string /** * This clears the user's IdP discovery choices. * - * @param Request $request The request that lead to this login operation. + * @param \Symfony\Component\HttpFoundation\Request $request The request that lead to this login operation. + * @throws \SimpleSAML\Error\CannotSetCookie + * @throws \SimpleSAML\Error\CriticalConfigurationError + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Assert\AssertionFailedException + * @throws \InvalidArgumentException + * @throws \Exception */ public function cleardiscochoices(Request $request): RedirectResponse { diff --git a/modules/core/src/Controller/Logout.php b/modules/core/src/Controller/Logout.php index d76356ceaa..756b1fb98f 100644 --- a/modules/core/src/Controller/Logout.php +++ b/modules/core/src/Controller/Logout.php @@ -5,14 +5,21 @@ namespace SimpleSAML\Module\core\Controller; use Exception as BuiltinException; -use SimpleSAML\{Auth, Configuration, Error, IdP, Logger, Stats, Utils}; +use SimpleSAML\Auth; +use SimpleSAML\Configuration; +use SimpleSAML\Error; +use SimpleSAML\IdP; +use SimpleSAML\Logger; use SimpleSAML\Metadata\MetaDataStorageHandler; use SimpleSAML\Module\saml\Message; use SimpleSAML\SAML2\Binding; use SimpleSAML\SAML2\Constants as C; +use SimpleSAML\Stats; +use SimpleSAML\Utils; use SimpleSAML\XHTML\Template; use Symfony\Bridge\PsrHttpMessage\Factory\HttpFoundationFactory; -use Symfony\Component\HttpFoundation\{Request, Response}; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpFoundation\Response; use function call_user_func; use function in_array; @@ -47,7 +54,7 @@ class Logout * @param \SimpleSAML\Configuration $config The configuration to use by the controllers. */ public function __construct( - protected Configuration $config + protected Configuration $config, ) { } @@ -66,12 +73,15 @@ public function setAuthState(Auth\State $authState): void /** * Log the user out of a given authentication source. * - * @param Request $request The request that lead to this logout operation. + * @param \Symfony\Components\HttpFoundation\Request $request The request that lead to this logout operation. * @param string $as The name of the auth source. * * @return \Symfony\Component\HttpFoundation\Response * * @throws \SimpleSAML\Error\CriticalConfigurationError + * @throws \SimpleSAML\Error\Exception + * @throws \Exception + * @throws \Throwable */ public function logout(Request $request, string $as): Response { @@ -84,6 +94,11 @@ public function logout(Request $request, string $as): Response /** * Searches for a valid and allowed ReturnTo URL parameter, * otherwise give the base installation page as a return point. + * @throws \SimpleSAML\Error\CriticalConfigurationError + * @throws \SimpleSAML\Error\Exception + * @throws \InvalidArgumentException + * @throws \Exception + * @throws \SimpleSAML\Assert\AssertionFailedException */ private function getReturnPath(Request $request): string { @@ -103,8 +118,12 @@ private function getReturnPath(Request $request): string /** - * @param Request $request The request that lead to this logout operation. + * @param \Symfony\Component\HttpFoundation\Request $request The request that lead to this logout operation. * @return \Symfony\Component\HttpFoundation\Response + * @throws \SimpleSAML\Error\NoState + * @throws \SimpleSAML\Error\BadRequest + * @throws \Exception + * @throws \Throwable */ public function logoutIframeDone(Request $request): Response { @@ -172,6 +191,11 @@ public function logoutIframeDone(Request $request): Response /** * @param \Symfony\Component\HttpFoundation\Request $request The request that lead to this logout operation. * @return \Symfony\Component\HttpFoundation\Response + * @throws \Exception + * @throws \SimpleSAML\Error\Exception + * @throws \SimpleSAML\Error\MetadataNotFound + * @throws \SimpleSAML\Error\BadRequest + * @throws \Throwable */ public function logoutIframePost(Request $request): Response { @@ -238,8 +262,14 @@ public function logoutIframePost(Request $request): Response /** - * @param Request $request The request that lead to this logout operation. + * @param \Symfony\Component\HttpFoundation\Request $request The request that lead to this logout operation. * @return \SimpleSAML\XHTML\Template + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \SimpleSAML\Error\MetadataNotFound + * @throws \SimpleSAML\Error\NoState + * @throws \SimpleSAML\Error\BadRequest + * @throws \Exception + * @throws \Throwable */ public function logoutIframe(Request $request): Template { @@ -384,7 +414,12 @@ public function logoutIframe(Request $request): Template /** - * @param Request $request The request that lead to this logout operation. + * @param \Symfony\Component\HttpFoundation\Request $request The request that lead to this logout operation. + * @return \Symfony\Component\HttpFoundation\Response + * @throws \Exception + * @throws \SimpleSAML\Error\NoState + * @throws \SimpleSAML\Error\BadRequest + * @throws \Throwable */ public function resumeLogout(Request $request): Response { diff --git a/modules/core/src/Controller/Redirection.php b/modules/core/src/Controller/Redirection.php index 54ae86f98f..99896b5a6f 100644 --- a/modules/core/src/Controller/Redirection.php +++ b/modules/core/src/Controller/Redirection.php @@ -5,10 +5,17 @@ namespace SimpleSAML\Module\core\Controller; use Exception; -use SimpleSAML\{Auth, Configuration, Error, Logger, Module, Session, Utils}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Configuration; +use SimpleSAML\Error; +use SimpleSAML\Session; +use SimpleSAML\Utils; use SimpleSAML\XHTML\Template; -use Symfony\Component\HttpFoundation\{Request, Response}; +use SimpleSAML\XMLSecurity\Alg\Encryption\AES; +use SimpleSAML\XMLSecurity\Constants as C; +use SimpleSAML\XMLSecurity\Key\SymmetricKey; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpFoundation\Response; use function base64_decode; use function explode; @@ -22,10 +29,6 @@ */ class Redirection { - /** @var \SimpleSAML\Utils\Crypto */ - protected Utils\Crypto $cryptoUtils; - - /** * Controller constructor. * @@ -38,19 +41,22 @@ class Redirection */ public function __construct( protected Configuration $config, - protected Session $session + protected Session $session, ) { - $this->cryptoUtils = new Utils\Crypto(); } /** * This controller provides a way to create a redirect to a POST request * - * @param Request $request The request that lead to this login operation. - * @throws \SimpleSAML\Error\BadRequest + * @param \Symfony\Component\HttpFoundation\Request $request The request that lead to this login operation. * @return \SimpleSAML\XHTML\Template|\Symfony\Component\HttpFoundation\RedirectResponse * An HTML template or a redirection if we are not authenticated. + * + * @throws \SimpleSAML\Error\BadRequest + * @throws \SimpleSAML\Error\ConfigurationError + * @throws \SimpleSAML\Error\Exception + * @throws \Exception */ public function postredirect(Request $request): Response { @@ -59,13 +65,16 @@ public function postredirect(Request $request): Response if ($redirId !== false) { $postId = $redirId; } elseif ($redirInfo !== false) { - $encData = base64_decode($redirInfo); + $encData = base64_decode($redirInfo, true); if (empty($encData)) { throw new Error\BadRequest('Invalid RedirInfo data.'); } - list($sessionId, $postId) = explode(':', $this->cryptoUtils->aesDecrypt($encData)); + $key = new SymmetricKey((new Utils\Config())->getSecretSalt()); + $decryptor = new AES($key, C::BLOCK_ENC_AES256_GCM); + + list($sessionId, $postId) = explode(':', $decryptor->decrypt($encData)); if (empty($sessionId) || empty($postId)) { throw new Error\BadRequest('Invalid session info data.'); diff --git a/modules/core/src/Stats/Output/File.php b/modules/core/src/Stats/Output/File.php index bb7d05e635..280606a4c9 100644 --- a/modules/core/src/Stats/Output/File.php +++ b/modules/core/src/Stats/Output/File.php @@ -5,8 +5,10 @@ namespace SimpleSAML\Module\core\Stats\Output; use Exception; -use SimpleSAML\{Configuration, Error, Stats}; use SimpleSAML\Assert\Assert; +use SimpleSAML\Configuration; +use SimpleSAML\Error; +use SimpleSAML\Stats; use function fclose; use function fopen; @@ -50,6 +52,7 @@ class File extends Stats\Output * Initialize the output. * * @param \SimpleSAML\Configuration $config The configuration for this output. + * @throws \Exception */ public function __construct(Configuration $config) { @@ -68,6 +71,7 @@ public function __construct(Configuration $config) * Open a log file. * * @param string $date The date for the log file. + * @throws \SimpleSAML\Error\Exception */ private function openLog(string $date): void { @@ -94,6 +98,7 @@ private function openLog(string $date): void * Write a stats event. * * @param array $data The event. + * @throws \SimpleSAML\Error\Exception */ public function emit(array $data): void { diff --git a/modules/core/src/Stats/Output/Log.php b/modules/core/src/Stats/Output/Log.php index ed15c38b06..565062a170 100644 --- a/modules/core/src/Stats/Output/Log.php +++ b/modules/core/src/Stats/Output/Log.php @@ -5,7 +5,8 @@ namespace SimpleSAML\Module\core\Stats\Output; use Exception; -use SimpleSAML\{Configuration, Logger}; +use SimpleSAML\Configuration; +use SimpleSAML\Logger; use function call_user_func; use function is_callable; diff --git a/modules/core/src/Storage/SQLPermanentStorage.php b/modules/core/src/Storage/SQLPermanentStorage.php index 24641f2fe5..6cb0d56643 100644 --- a/modules/core/src/Storage/SQLPermanentStorage.php +++ b/modules/core/src/Storage/SQLPermanentStorage.php @@ -41,7 +41,7 @@ class SQLPermanentStorage * @param \SimpleSAML\Configuration|null $config * @throws \Exception */ - public function __construct(string $name, Configuration $config = null) + public function __construct(string $name, ?Configuration $config = null) { if (is_null($config)) { $config = Configuration::getInstance(); @@ -65,6 +65,8 @@ public function __construct(string $name, Configuration $config = null) $this->db = new PDO($dbfile); if ($this->db) { $this->db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT); + $this->db->setAttribute(PDO::ATTR_EMULATE_PREPARES, false); + $q = @$this->db->query('SELECT key1 FROM data LIMIT 1'); if ($q === false) { $this->db->exec(' @@ -93,7 +95,7 @@ public function __construct(string $name, Configuration $config = null) * @param string $value * @param int|null $duration */ - public function set(string $type, string $key1, string $key2, string $value, int $duration = null): void + public function set(string $type, string $key1, string $key2, string $value, ?int $duration = null): void { if ($this->exists($type, $key1, $key2)) { $this->update($type, $key1, $key2, $value, $duration); @@ -111,7 +113,7 @@ public function set(string $type, string $key1, string $key2, string $value, int * @param int|null $duration * @return array */ - private function insert(string $type, string $key1, string $key2, string $value, int $duration = null): array + private function insert(string $type, string $key1, string $key2, string $value, ?int $duration = null): array { $expire = is_null($duration) ? null : (time() + $duration); @@ -121,7 +123,7 @@ private function insert(string $type, string $key1, string $key2, string $value, $data = [':key1' => $key1, ':key2' => $key2, ':type' => $type, ':created' => time(), ':updated' => time(), ':expire' => $expire, - ':value' => serialize($value) + ':value' => serialize($value), ]; $prepared->execute($data); $results = $prepared->fetchAll(PDO::FETCH_ASSOC); @@ -137,7 +139,7 @@ private function insert(string $type, string $key1, string $key2, string $value, * @param int|null $duration * @return array */ - private function update(string $type, string $key1, string $key2, string $value, int $duration = null): array + private function update(string $type, string $key1, string $key2, string $value, ?int $duration = null): array { $expire = is_null($duration) ? null : (time() + $duration); @@ -146,7 +148,7 @@ private function update(string $type, string $key1, string $key2, string $value, $prepared = $this->db->prepare($query); $data = [':key1' => $key1, ':key2' => $key2, ':type' => $type, ':updated' => time(), - ':expire' => $expire, ':value' => serialize($value) + ':expire' => $expire, ':value' => serialize($value), ]; $prepared->execute($data); $results = $prepared->fetchAll(PDO::FETCH_ASSOC); @@ -160,7 +162,7 @@ private function update(string $type, string $key1, string $key2, string $value, * @param string|null $key2 * @return array|null */ - public function get(string $type = null, string $key1 = null, string $key2 = null): ?array + public function get(?string $type = null, ?string $key1 = null, ?string $key2 = null): ?array { $conditions = $this->getCondition($type, $key1, $key2); $query = 'SELECT * FROM data WHERE ' . $conditions; @@ -177,6 +179,7 @@ public function get(string $type = null, string $key1 = null, string $key2 = nul return $res; } + /** * Return the value directly (not in a container) * @@ -185,7 +188,7 @@ public function get(string $type = null, string $key1 = null, string $key2 = nul * @param string|null $key2 * @return string|null */ - public function getValue(string $type = null, string $key1 = null, string $key2 = null): ?string + public function getValue(?string $type = null, ?string $key1 = null, ?string $key2 = null): ?string { $res = $this->get($type, $key1, $key2); if ($res === null) { @@ -218,7 +221,7 @@ public function exists(string $type, string $key1, string $key2): bool * @param string|null $key2 * @return array|false */ - public function getList(string $type = null, string $key1 = null, string $key2 = null) + public function getList(?string $type = null, ?string $key1 = null, ?string $key2 = null): array|false { $conditions = $this->getCondition($type, $key1, $key2); $query = 'SELECT * FROM data WHERE ' . $conditions; @@ -246,10 +249,10 @@ public function getList(string $type = null, string $key1 = null, string $key2 = * @return array|null */ public function getKeys( - string $type = null, - string $key1 = null, - string $key2 = null, - string $whichKey = 'type' + ?string $type = null, + ?string $key1 = null, + ?string $key2 = null, + string $whichKey = 'type', ): ?array { if (!in_array($whichKey, ['key1', 'key2', 'type'], true)) { throw new Exception('Invalid key type'); @@ -303,6 +306,7 @@ public function removeExpired(): int return $prepared->rowCount(); } + /** * Create a SQL condition statement based on parameters * @@ -311,7 +315,7 @@ public function removeExpired(): int * @param string|null $key2 * @return string */ - private function getCondition(string $type = null, string $key1 = null, string $key2 = null): string + private function getCondition(?string $type = null, ?string $key1 = null, ?string $key2 = null): string { $conditions = []; if (!is_null($type)) { diff --git a/modules/core/templates/loginuserpass.twig b/modules/core/templates/loginuserpass.twig index 7df58fb576..f3304a4e16 100644 --- a/modules/core/templates/loginuserpass.twig +++ b/modules/core/templates/loginuserpass.twig @@ -37,11 +37,10 @@

{{ 'A service has requested you to authenticate yourself. Please enter your username and password in the form below.'|trans }}