diff --git a/.gitattributes b/.gitattributes index b265272a54..42cc7243f5 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 export-ignore diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 9e6459bfce..79e72a1409 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -6,6 +6,13 @@ about: Create a report to help us improve # **Help us to keep this issue-tracker clean! For questions or support, please refer to our [mailing lists](https://simplesamlphp.org/lists)** +**Specifics of your environment** +1. Are you acting as SP/IdP/proxy? +2. SimpleSAMLphp: What version are you using? +3. PHP: What version are you using? +4. Platform: unix or Windows? +5. Webserver: Apache/Nginx/ISS? + **Describe the bug** A clear and concise description of what the bug is. diff --git a/.github/build/full.json b/.github/build/full.json index 3449c9cb9d..f9c96cb9f0 100644 --- a/.github/build/full.json +++ b/.github/build/full.json @@ -2,39 +2,35 @@ "modules": { "authorize": { "repository": "simplesamlphp/simplesamlphp-module-authorize", - "version": "^1.4" + "version": "~1.8.0" }, "consent": { "repository": "simplesamlphp/simplesamlphp-module-consent", - "version": "^1.3" + "version": "~1.5.0" }, "consentadmin": { "repository": "simplesamlphp/simplesamlphp-module-consentadmin", - "version": "^1.0" + "version": "~1.2.1" }, "discopower": { "repository": "simplesamlphp/simplesamlphp-module-discopower", - "version": "^1.4" + "version": "~1.6.0" }, "ldap": { "repository": "simplesamlphp/simplesamlphp-module-ldap", - "version": "^2.3" + "version": "~2.5.2" }, "metarefresh": { "repository": "simplesamlphp/simplesamlphp-module-metarefresh", - "version": "^1.2" + "version": "~1.3.1" }, "radius": { "repository": "simplesamlphp/simplesamlphp-module-radius", - "version": "^2.0" - }, - "statistics": { - "repository": "simplesamlphp/simplesamlphp-module-statistics", - "version": "^1.2" + "version": "~2.1.1" }, "sqlauth": { "repository": "simplesamlphp/simplesamlphp-module-sqlauth", - "version": "^1.0" + "version": "~1.4.0" } } } diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 934e168b5c..8fb4dfc33c 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -23,7 +23,7 @@ jobs: uses: shivammathur/setup-php@v2 with: # Should match the minimum required version for SimpleSAMLphp - php-version: '8.1' + php-version: '8.3' tools: composer:v2, phive extensions: mbstring, xml coverage: none @@ -31,7 +31,7 @@ jobs: - name: Setup problem matchers for PHP run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 # Store the version, stripping any v-prefix - name: Write release version @@ -88,7 +88,7 @@ jobs: rm -rf "simplesamlphp-$VERSION" - name: Save tarball - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: release-${{ matrix.version }} path: "/tmp/simplesamlphp-${{ env.VERSION }}-${{ matrix.version }}.tar.gz" @@ -97,6 +97,13 @@ jobs: - name: Calculate SHA checksum (${{ matrix.version }}) run: sha256sum "/tmp/simplesamlphp-$VERSION-${{ matrix.version }}.tar.gz" + website: + name: Build website + runs-on: [ubuntu-latest] + strategy: + fail-fast: false + + steps: - name: Run website build if: | startsWith(github.ref, 'refs/tags/v') && diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index fb6e2c5760..1c626b3558 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@v6 - name: Lint markdown files uses: nosborn/github-action-markdown-cli@v3 diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 14289a6482..2a7d065803 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -13,262 +13,328 @@ on: # yamllint disable-line rule:truthy - '**.md' jobs: + phplinter: + name: 'PHP-Linter' + strategy: + fail-fast: false + matrix: + php-version: ['8.3', '8.4', '8.5'] + + uses: simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_phplinter.yml@v1.11.5 + with: + php-version: ${{ matrix.php-version }} + linter: - name: Linter - runs-on: ['ubuntu-latest'] + name: 'Linter' + strategy: + fail-fast: false - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Lint Code Base - uses: super-linter/super-linter/slim@v6 - env: - # To report GitHub Actions status checks - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - 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 + uses: simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_linter.yml@v1.11.5 + with: + enable_eslinter: true + enable_jsonlinter: true + enable_stylelinter: true + enable_yamllinter: true - quality: - name: Quality control - runs-on: [ubuntu-latest] + 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.3', '8.4', '8.5'] steps: - name: Setup PHP, with composer and extensions - id: setup-php # https://github.com/shivammathur/setup-php uses: shivammathur/setup-php@v2 with: - php-version: '8.3' - tools: composer, phpcs, psalm - extensions: mbstring, xml - coverage: none + php-version: ${{ matrix.php-versions }} + extensions: intl, mbstring, mysql, pdo, pdo_sqlite, soap, sodium, xml + tools: composer:v2 + ini-values: error_reporting=E_ALL, pcov.directory=${{ github.workspace }} + coverage: pcov - name: Setup problem matchers for PHP run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" - - uses: actions/checkout@v4 + - 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@v6 + + - 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: Get COMPOSER_ROOT_VERSION from composer.json branch alias + run: | + ROOT_VERSION=$(composer config extra.branch-alias.dev-master) + if [ -z "$ROOT_VERSION" ]; then + echo "Could not read extra.branch-alias.dev-master from composer.json" >&2 + exit 1 + fi + echo "COMPOSER_ROOT_VERSION=$ROOT_VERSION" >> "$GITHUB_ENV" + - name: Cache composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: - path: $COMPOSER_CACHE + path: ${{ env.COMPOSER_CACHE }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- - - name: Validate composer.json and composer.lock - run: composer validate - - name: Install Composer dependencies run: composer install --no-progress --prefer-dist --optimize-autoloader - - name: PHP Code Sniffer - run: phpcs - - - name: Psalm - continue-on-error: true - run: | - psalm \ - -c psalm.xml \ - --show-info=true \ - --shepherd \ - --php-version=${{ steps.setup-php.outputs.php-version }} + - name: Run unit tests with coverage + if: ${{ matrix.php-versions == '8.5' }} + run: vendor/bin/phpunit - - name: Psalm (testsuite) - run: | - psalm \ - -c psalm-dev.xml \ - --show-info=true \ - --shepherd \ - --php-version=${{ steps.setup-php.outputs.php-version }} + - name: Run unit tests (no coverage) + if: ${{ matrix.php-versions != '8.5' }} + run: vendor/bin/phpunit --no-coverage - - name: Psalter - run: | - psalm --alter \ - --issues=UnnecessaryVarAnnotation \ - --dry-run \ - --php-version=${{ steps.setup-php.outputs.php-version }} + - name: Save coverage data + if: ${{ matrix.php-versions == '8.5' }} + uses: actions/upload-artifact@v7 + with: + name: coverage-data + path: ${{ github.workspace }}/build - - name: Check for unused translations - continue-on-error: true - run: composer translations:unused + 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.3', '8.4', '8.5'] - security: - name: Security checks - runs-on: [ubuntu-latest] steps: - name: Setup PHP, with composer and extensions # https://github.com/shivammathur/setup-php uses: shivammathur/setup-php@v2 with: - php-version: '8.1' - extensions: mbstring, xml + php-version: ${{ matrix.php-versions }} + extensions: fileinfo, 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" - - uses: actions/checkout@v4 + - 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@v6 - name: Get composer cache directory - run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" + run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV" + + - name: Get COMPOSER_ROOT_VERSION from composer.json branch alias + shell: bash + run: | + ROOT_VERSION=$(composer config extra.branch-alias.dev-master) + if [ -z "$ROOT_VERSION" ]; then + echo "Could not read extra.branch-alias.dev-master from composer.json" >&2 + exit 1 + fi + echo "COMPOSER_ROOT_VERSION=$ROOT_VERSION" >> "$env:GITHUB_ENV" - name: Cache composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: - path: $COMPOSER_CACHE - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + 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: Security check for locked dependencies - run: composer audit - - - name: Update Composer dependencies - run: composer update --no-progress --prefer-dist --optimize-autoloader + run: composer install --no-progress --prefer-dist --optimize-autoloader --no-scripts - - name: Security check for updated dependencies - run: composer audit + - name: Run unit tests + run: ./vendor/bin/phpunit --no-coverage - unit-tests-linux: - name: "Syntax and 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'] + quality: + name: Quality control + needs: [unit-tests-linux] + runs-on: [ubuntu-latest] steps: - name: Setup PHP, with composer and extensions + id: setup-php # https://github.com/shivammathur/setup-php uses: shivammathur/setup-php@v2 with: - php-version: ${{ matrix.php-versions }} - extensions: intl, mbstring, mysql, pdo, pdo_sqlite, xml - tools: composer:v2 - ini-values: error_reporting=E_ALL - coverage: xdebug + php-version: '8.5' + tools: composer, composer-require-checker, composer-unused + extensions: mbstring, soap, xml + 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" + - uses: actions/checkout@v6 - - name: Set git to use LF - run: | - git config --global core.autocrlf false - git config --global core.eol lf + - name: Copy config.php.dist to config.php + run: cp config/config.php.dist config/config.php - - uses: actions/checkout@v4 + - 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: Get COMPOSER_ROOT_VERSION from composer.json branch alias + run: | + ROOT_VERSION=$(composer config extra.branch-alias.dev-master) + if [ -z "$ROOT_VERSION" ]; then + echo "Could not read extra.branch-alias.dev-master from composer.json" >&2 + exit 1 + fi + echo "COMPOSER_ROOT_VERSION=$ROOT_VERSION" >> "$GITHUB_ENV" + - name: Cache composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: - path: $COMPOSER_CACHE + path: ${{ env.COMPOSER_CACHE }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- + - name: Validate composer.json and composer.lock + run: composer validate + - name: Install Composer dependencies run: composer install --no-progress --prefer-dist --optimize-autoloader - - name: Run unit tests with coverage - if: ${{ matrix.php-versions == '8.1' }} - run: ./vendor/bin/phpunit + - name: Check code for hard dependencies missing in composer.json + run: composer-require-checker check --config-file=tools/composer-require-checker.json composer.json - - name: Run unit tests (no coverage) - if: ${{ matrix.php-versions != '8.1' }} - run: ./vendor/bin/phpunit --no-coverage + - name: Check code for unused dependencies in composer.json + run: | + composer-unused \ + --excludePackage=simplesamlphp/composer-module-installer \ + --excludePackage=simplesamlphp/simplesamlphp-assets-base \ + --excludePackage=symfony/expression-language \ + --excludePackage=symfony/polyfill-intl-icu \ + --excludePackage=symfony/yaml - - name: Save coverage data - if: ${{ matrix.php-versions == '8.1' }} - uses: actions/upload-artifact@v4 - with: - name: coverage-data - path: ${{ github.workspace }}/build + - name: PHP Code Sniffer + run: vendor/bin/phpcs - unit-tests-windows: - name: "Syntax and 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'] + - name: PHPStan + run: vendor/bin/phpstan analyze -c phpstan.neon + + - name: PHPStan (testsuite) + run: vendor/bin/phpstan analyze -c phpstan-dev.neon + - name: Check for unused translations + continue-on-error: true + run: composer translations:unused + + security: + name: Security checks + needs: [unit-tests-linux] + runs-on: [ubuntu-latest] 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, xml + php-version: '8.3' + extensions: mbstring, soap, 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" + - uses: actions/checkout@v6 - - name: Set git to use LF - run: | - git config --global core.autocrlf false - git config --global core.eol lf + - name: Copy config.php.dist to config.php + run: cp config/config.php.dist config/config.php - - uses: actions/checkout@v4 + - 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)" >> "$env:GITHUB_ENV" + run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" + + - name: Get COMPOSER_ROOT_VERSION from composer.json branch alias + run: | + ROOT_VERSION=$(composer config extra.branch-alias.dev-master) + if [ -z "$ROOT_VERSION" ]; then + echo "Could not read extra.branch-alias.dev-master from composer.json" >&2 + exit 1 + fi + echo "COMPOSER_ROOT_VERSION=$ROOT_VERSION" >> "$GITHUB_ENV" - name: Cache composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: - path: $COMPOSER_CACHE + 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 - run: ./vendor/bin/phpunit --no-coverage + - name: Security check for locked dependencies + run: composer audit + + - name: Update Composer dependencies + run: composer update --no-progress --prefer-dist --optimize-autoloader + + - name: Security check for updated dependencies + run: composer audit coverage: name: Code coverage runs-on: [ubuntu-latest] needs: [unit-tests-linux] steps: - - uses: actions/download-artifact@v4 + - uses: actions/checkout@v6 + + - uses: actions/download-artifact@v8 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 verbose: true + + cleanup: + name: Cleanup artifacts + needs: [unit-tests-linux, coverage] + runs-on: [ubuntu-latest] + if: | + always() && + needs.coverage.result == 'success' || + (needs.unit-tests-linux.result == 'success' && needs.coverage.result == 'skipped') + + steps: + - uses: geekyeggo/delete-artifact@v6 + with: + name: coverage-data diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml index c38204f4a1..6deafb9f32 100644 --- a/.github/workflows/translations.yml +++ b/.github/workflows/translations.yml @@ -1,8 +1,11 @@ --- + name: Build translations on: # yamllint disable-line rule:truthy push: + tags-ignore: + - '**' paths: - '**.po' - '**.php' @@ -10,28 +13,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 }} @@ -43,14 +28,16 @@ jobs: uses: shivammathur/setup-php@v2 with: # Should be the higest supported version, so we can use the newest tools - php-version: '8.2' + php-version: '8.5' coverage: none - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: - token: ${{ secrets.PAT_TOKEN }} + # token: ${{ secrets.PAT_TOKEN }} repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} + persist-credentials: false + fetch-depth: 0 - name: Install Composer dependencies run: composer install --no-progress --prefer-dist --optimize-autoloader @@ -81,7 +68,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@v7 if: steps.changes.outputs.files_changed == 'true' || steps.changes.outputs.packages_changed with: name: build @@ -95,7 +82,7 @@ jobs: runs-on: [ubuntu-latest] steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: name: build @@ -110,6 +97,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 @@ -130,6 +119,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] @@ -140,7 +135,7 @@ jobs: (needs.build.result == 'success' && needs.commit.result == 'skipped') steps: - - uses: geekyeggo/delete-artifact@v4 + - uses: geekyeggo/delete-artifact@v6 with: name: | build diff --git a/.gitignore b/.gitignore index cf6571b554..7264898ed0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +1 +2 +3 cert/* config/* metadata/* @@ -7,6 +10,7 @@ metadata/* !/metadata/*.dist !/public/assets/.gitkeep /public/assets/* +.phplint.cache/ .phpunit.cache/ .phpunit.result.cache phpunit.xml.bak @@ -234,3 +238,4 @@ typings/ # dotenv environment variables file .env +cache diff --git a/COPYING b/COPYING index b83b1c411c..f1d41affca 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright 2007-2020 UNINETT AS, 2021-2023 SimpleSAMLphp +Copyright 2007-2020 UNINETT AS, 2021-2024 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..33f04bcfa8 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,10 @@ [![Type coverage](https://shepherd.dev/github/simplesamlphp/simplesamlphp/coverage.svg)](https://shepherd.dev/github/simplesamlphp/simplesamlphp) [![BrowserStack Status](https://automate.browserstack.com/badge.svg?badge_key=LzlCL29sZEVDRXJpdGtxZUdITFA3YjYyUFBBYkVVZDVDcG1YZXRaN2pvTT0tLVhCNzkwVUNGVFVjVFVicUg0R1BNR0E9PQ==--f9efb6f330bd98dd6e3c7b816ac2f0982275a872)](https://automate.browserstack.com/public-build/LzlCL29sZEVDRXJpdGtxZUdITFA3YjYyUFBBYkVVZDVDcG1YZXRaN2pvTT0tLVhCNzkwVUNGVFVjVFVicUg0R1BNR0E9PQ==--f9efb6f330bd98dd6e3c7b816ac2f0982275a872) +## Developed using JetBrains IDEs + +[![JetBrains logo.](https://resources.jetbrains.com/storage/products/company/brand/logos/jetbrains.svg)](https://jb.gg/OpenSource) + This is the official repository of the SimpleSAMLphp software. * [SimpleSAMLphp homepage](https://simplesamlphp.org) 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 4beaed864a..74816335eb 100755 --- a/bin/console +++ b/bin/console @@ -13,7 +13,7 @@ set_time_limit(0); require __DIR__.'/../vendor/autoload.php'; $input = new ArgvInput(); -$module = $input->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/initMDSPdo.php b/bin/initMDSPdo.php index dec7e53326..e68dfadf39 100755 --- a/bin/initMDSPdo.php +++ b/bin/initMDSPdo.php @@ -8,7 +8,11 @@ // Add library autoloader and configuration 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'; echo "Initializing Metadata Database..." . PHP_EOL; 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 e4614791f9..61bf89c91e 100755 --- a/bin/translations +++ b/bin/translations @@ -8,7 +8,11 @@ use Symfony\Component\Console\Application; umask(000); set_time_limit(0); -require __DIR__.'/../vendor/autoload.php'; +if (str_ends_with(__DIR__, '/vendor/simplesamlphp/simplesamlphp/bin')) { + require __DIR__.'/../../../autoload.php'; +} else { + require __DIR__.'/../vendor/autoload.php'; +} $application = new Application(); $application->add(new UnusedTranslatableStringsCommand()); diff --git a/composer.json b/composer.json index 1e338b1285..a10aaf9097 100644 --- a/composer.json +++ b/composer.json @@ -25,6 +25,7 @@ "SimpleSAML\\Module\\admin\\": "modules/admin/src", "SimpleSAML\\Module\\core\\": "modules/core/src", "SimpleSAML\\Module\\cron\\": "modules/cron/src", + "SimpleSAML\\Module\\debugsp\\": "modules/debugsp/src", "SimpleSAML\\Module\\exampleauth\\": "modules/exampleauth/src", "SimpleSAML\\Module\\multiauth\\": "modules/multiauth/src", "SimpleSAML\\Module\\saml\\": "modules/saml/src" @@ -37,6 +38,7 @@ "SimpleSAML\\Test\\Module\\admin\\": ["tests//modules/admin/src"], "SimpleSAML\\Test\\Module\\core\\": ["tests/modules/core/src"], "SimpleSAML\\Test\\Module\\cron\\": ["tests/modules/cron/src"], + "SimpleSAML\\Test\\Module\\debugsp\\": ["tests/modules/debugsp/src"], "SimpleSAML\\Test\\Module\\exampleauth\\": ["tests/modules/exampleauth/src"], "SimpleSAML\\Test\\Module\\multiauth\\": ["tests/modules/multiauth/src"], "SimpleSAML\\Test\\Module\\saml\\": ["tests/modules/saml/src"] @@ -44,11 +46,14 @@ "files": ["tests/_autoload_modules.php"] }, "require": { - "php": "^8.1", + "php": "^8.3", "ext-date": "*", "ext-dom": "*", + "ext-fileinfo": "*", + "ext-filter": "*", "ext-hash": "*", "ext-json": "*", + "ext-libxml": "*", "ext-mbstring": "*", "ext-openssl": "*", "ext-pcre": "*", @@ -57,44 +62,53 @@ "ext-SPL": "*", "ext-zlib": "*", - "gettext/gettext": "^5.7", - "gettext/translator": "^1.1", - "phpmailer/phpmailer": "^6.8", - "psr/log": "^3.0", - "simplesamlphp/assert": "^1.0.0", - "simplesamlphp/composer-module-installer": "^1.3", - "simplesamlphp/saml2": "^4.6", - "simplesamlphp/simplesamlphp-assets-base": "~2.1.5", - "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/routing": "^6.4", - "symfony/translation-contracts": "^3.0", - "symfony/twig-bridge": "^6.4", - "symfony/var-exporter": "^6.4", - "symfony/yaml": "^6.4", - "twig/intl-extra": "^3.7", - "twig/twig": "^3.5" + "composer-runtime-api": "^2.2", + "gettext/gettext": "~5.7", + "gettext/php-scanner": "^2.0", + "gettext/translator": "~1.2", + "phpmailer/phpmailer": "~6.10 || ~7.0", + "psr/event-dispatcher": "~1.0", + "psr/log": "~3.0", + "robrichards/xmlseclibs": "^3.1.5", + "simplesamlphp/assert": "~2.0", + "simplesamlphp/composer-module-installer": "~1.7", + "simplesamlphp/saml2": "~6.1", + "simplesamlphp/saml2-legacy": "~4.20", + "simplesamlphp/simplesamlphp-assets-base": "~2.5.0", + "simplesamlphp/xml-common": "~2.7", + "simplesamlphp/xml-security": "~2.3", + "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-client": "~7.4", + "symfony/http-client-contracts": "~3.5", + "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/routing": "~7.4", + "symfony/translation": "~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.21", + "twig/twig": "~3.21" }, "require-dev": { "ext-curl": "*", "ext-pdo_sqlite": "*", - "gettext/php-scanner": "1.3.1", "mikey179/vfsstream": "~1.6", - "predis/predis": "^2.2", - "simplesamlphp/simplesamlphp-module-adfs": "^2.1", - "simplesamlphp/simplesamlphp-test-framework": "^1.5.4", - "simplesamlphp/xml-security": "^1.6.0", - "symfony/translation": "^6.4" + "predis/predis": "~3.3", + "simplesamlphp/simplesamlphp-test-framework": "~1.11.5 || dev-master" }, "suggest": { "predis/predis": "Needed if a Redis server is used to store session information", @@ -113,18 +127,31 @@ "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": { "branch-alias": { - "dev-master": "2.2.x-dev" + "dev-master": "2.5.x-dev", + "dev-simplesamlphp-2.5": "2.5.x-dev" } }, "scripts": { - "translations:unused": "php bin/translations translations:unused", - "translations:update:translatable": "php bin/translations translations:update:translatable" + "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": [ + "echo 'Post-update tasks completed!'" + ], + "post-install-cmd": [ + "echo 'Post-install tasks completed!'" + ] } } diff --git a/composer.lock b/composer.lock index 3a5dd48bc8..c65a42b8be 100644 --- a/composer.lock +++ b/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c6b07fa01951c1bc1afb5b69059b11c3", + "content-hash": "dd74def800ca59ced894e5550a73997c", "packages": [ { "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": { @@ -62,7 +62,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": [ { @@ -78,20 +78,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.2", "source": { "type": "git", "url": "https://github.com/php-gettext/Languages.git", - "reference": "4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab" + "reference": "079d6f4842cbcbf5673a70d8e93169a684e7aadd" }, "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/079d6f4842cbcbf5673a70d8e93169a684e7aadd", + "reference": "079d6f4842cbcbf5673a70d8e93169a684e7aadd", "shasum": "" }, "require": { @@ -101,7 +101,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": { @@ -140,7 +141,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.2" }, "funding": [ { @@ -152,20 +153,79 @@ "type": "github" } ], - "time": "2022-10-18T15:00:10+00:00" + "time": "2026-02-23T14:05:50+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": "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": { @@ -210,7 +270,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": [ { @@ -226,20 +286,273 @@ "type": "patreon" } ], - "time": "2023-11-06T15:42:03+00:00" + "time": "2025-01-09T09:20:22+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.9.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/7d0ed42f28e42d61352a7a79de682e5e67fec884", + "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884", + "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", + "jshttp/mime-db": "1.54.0.1", + "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.9.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": "2026-03-10T16:41:02+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": "nyholm/psr7", + "version": "1.8.2", + "source": { + "type": "git", + "url": "https://github.com/Nyholm/psr7.git", + "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3", + "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0" + }, + "provide": { + "php-http/message-factory-implementation": "1.0", + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "http-interop/http-factory-tests": "^0.9", + "php-http/message-factory": "^1.0", + "php-http/psr7-integration-tests": "^1.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4", + "symfony/error-handler": "^4.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.8-dev" + } + }, + "autoload": { + "psr-4": { + "Nyholm\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com" + }, + { + "name": "Martijn van der Ven", + "email": "martijn@vanderven.se" + } + ], + "description": "A fast PHP7 implementation of PSR-7", + "homepage": "https://tnyholm.se", + "keywords": [ + "psr-17", + "psr-7" + ], + "support": { + "issues": "https://github.com/Nyholm/psr7/issues", + "source": "https://github.com/Nyholm/psr7/tree/1.8.2" + }, + "funding": [ + { + "url": "https://github.com/Zegnat", + "type": "github" + }, + { + "url": "https://github.com/nyholm", + "type": "github" + } + ], + "time": "2024-09-09T07:06:30+00:00" }, { "name": "phpmailer/phpmailer", - "version": "v6.9.1", + "version": "v7.0.2", "source": { "type": "git", "url": "https://github.com/PHPMailer/PHPMailer.git", - "reference": "039de174cd9c17a8389754d3b877a2ed22743e18" + "reference": "ebf1655bd5b99b3f97e1a3ec0a69e5f4cd7ea088" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/039de174cd9c17a8389754d3b877a2ed22743e18", - "reference": "039de174cd9c17a8389754d3b877a2ed22743e18", + "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/ebf1655bd5b99b3f97e1a3ec0a69e5f4cd7ea088", + "reference": "ebf1655bd5b99b3f97e1a3ec0a69e5f4cd7ea088", "shasum": "" }, "require": { @@ -253,13 +566,14 @@ "doctrine/annotations": "^1.2.6 || ^1.13.3", "php-parallel-lint/php-console-highlighter": "^1.0.0", "php-parallel-lint/php-parallel-lint": "^1.3.2", - "phpcompatibility/php-compatibility": "^9.3.5", - "roave/security-advisories": "dev-latest", - "squizlabs/php_codesniffer": "^3.7.2", + "phpcompatibility/php-compatibility": "^10.0.0@dev", + "squizlabs/php_codesniffer": "^3.13.5", "yoast/phpunit-polyfills": "^1.0.4" }, "suggest": { "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication", + "directorytree/imapengine": "For uploading sent messages via IMAP, see gmail example", + "ext-imap": "Needed to support advanced email address parsing according to RFC822", "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses", "ext-openssl": "Needed for secure SMTP sending and DKIM signing", "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication", @@ -299,7 +613,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/v7.0.2" }, "funding": [ { @@ -307,7 +621,7 @@ "type": "github" } ], - "time": "2023-11-25T22:23:28+00:00" + "time": "2026-01-09T18:02:33+00:00" }, { "name": "psr/cache", @@ -358,6 +672,54 @@ }, "time": "2021-02-03T23:26:27+00:00" }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "support": { + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" + }, + "time": "2022-11-25T14:36:26+00:00" + }, { "name": "psr/container", "version": "2.0.2", @@ -462,31 +824,32 @@ "time": "2019-01-08T18:20:26+00:00" }, { - "name": "psr/log", - "version": "3.0.0", + "name": "psr/http-factory", + "version": "1.1.0", "source": { "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" + "url": "https://github.com/php-fig/http-factory.git", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", - "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", "shasum": "" }, "require": { - "php": ">=8.0.0" + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Log\\": "src" + "Psr\\Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -499,35 +862,186 @@ "homepage": "https://www.php-fig.org/" } ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", "keywords": [ - "log", + "factory", + "http", + "message", "psr", - "psr-3" + "psr-17", + "psr-7", + "request", + "response" ], "support": { - "source": "https://github.com/php-fig/log/tree/3.0.0" + "source": "https://github.com/php-fig/http-factory" }, - "time": "2021-07-14T16:46:02+00:00" + "time": "2024-04-15T12:06:14+00:00" }, { - "name": "robrichards/xmlseclibs", - "version": "3.1.1", + "name": "psr/http-message", + "version": "2.0", "source": { "type": "git", - "url": "https://github.com/robrichards/xmlseclibs.git", - "reference": "f8f19e58f26cdb42c54b214ff8a820760292f8df" + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/robrichards/xmlseclibs/zipball/f8f19e58f26cdb42c54b214ff8a820760292f8df", - "reference": "f8f19e58f26cdb42c54b214ff8a820760292f8df", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", "shasum": "" }, "require": { - "ext-openssl": "*", - "php": ">= 5.4" + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "psr/log", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "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": "2019-03-08T08:55:37+00:00" + }, + { + "name": "robrichards/xmlseclibs", + "version": "3.1.5", + "source": { + "type": "git", + "url": "https://github.com/robrichards/xmlseclibs.git", + "reference": "03062be78178cbb5e8f605cd255dc32a14981f92" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/robrichards/xmlseclibs/zipball/03062be78178cbb5e8f605cd255dc32a14981f92", + "reference": "03062be78178cbb5e8f605cd255dc32a14981f92", + "shasum": "" + }, + "require": { + "ext-openssl": "*", + "php": ">= 5.4" }, "type": "library", "autoload": { @@ -549,22 +1063,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.5" }, - "time": "2020-09-05T13:00:25+00:00" + "time": "2026-03-13T10:31:56+00:00" }, { "name": "simplesamlphp/assert", - "version": "v1.0.5", + "version": "v2.0.2", "source": { "type": "git", "url": "https://github.com/simplesamlphp/assert.git", - "reference": "014d722cd2fc316e458a982648f10e17ab498c92" + "reference": "9e08dc5525a2259d75e6f6d0ae6754a7b4c13470" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/assert/zipball/014d722cd2fc316e458a982648f10e17ab498c92", - "reference": "014d722cd2fc316e458a982648f10e17ab498c92", + "url": "https://api.github.com/repos/simplesamlphp/assert/zipball/9e08dc5525a2259d75e6f6d0ae6754a7b4c13470", + "reference": "9e08dc5525a2259d75e6f6d0ae6754a7b4c13470", "shasum": "" }, "require": { @@ -572,16 +1086,18 @@ "ext-filter": "*", "ext-pcre": "*", "ext-spl": "*", - "php": "^8.0", - "webmozart/assert": "^1.11" + "guzzlehttp/psr7": "~2.8", + "php": "^8.3", + "webmozart/assert": "~2.1" }, "require-dev": { - "simplesamlphp/simplesamlphp-test-framework": "^1.5.1" + "ext-intl": "*", + "simplesamlphp/simplesamlphp-test-framework": "~1.11" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "v1.1.x-dev" + "dev-master": "v1.10.x-dev" } }, "autoload": { @@ -606,32 +1122,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.0.5" + "source": "https://github.com/simplesamlphp/assert/tree/v2.0.2" }, - "time": "2023-08-15T15:00:10+00:00" + "time": "2026-03-06T18:04:32+00:00" }, { "name": "simplesamlphp/composer-module-installer", - "version": "v1.3.4", + "version": "v1.7.0", "source": { "type": "git", "url": "https://github.com/simplesamlphp/composer-module-installer.git", - "reference": "36508ed9580a30c4d5ab0bb3c25c00d0b5d42946" + "reference": "7560ebd48e74001329a0c2ba44cc467c2e823368" }, "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/7560ebd48e74001329a0c2ba44cc467c2e823368", + "reference": "7560ebd48e74001329a0c2ba44cc467c2e823368", "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", + "ext-mbstring": "*", + "php": "^8.3", + "simplesamlphp/assert": "~2.0" }, "require-dev": { - "composer/composer": "^2.4", - "simplesamlphp/simplesamlphp-test-framework": "^1.2.1" + "composer/composer": "~2.9", + "simplesamlphp/simplesamlphp-test-framework": "~1.11" }, "type": "composer-plugin", "extra": { @@ -649,39 +1166,158 @@ "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.7.0" + }, + "time": "2026-02-19T23:36:00+00:00" + }, + { + "name": "simplesamlphp/composer-xmlprovider-installer", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/simplesamlphp/composer-xmlprovider-installer.git", + "reference": "80a2d6a30c730a5fd90358f4875b94140114c643" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/simplesamlphp/composer-xmlprovider-installer/zipball/80a2d6a30c730a5fd90358f4875b94140114c643", + "reference": "80a2d6a30c730a5fd90358f4875b94140114c643", + "shasum": "" + }, + "require": { + "composer-plugin-api": "~2.9", + "php": "^8.3" + }, + "require-dev": { + "composer/composer": "~2.9", + "simplesamlphp/simplesamlphp-test-framework": "~1.11" + }, + "type": "composer-plugin", + "extra": { + "class": "SimpleSAML\\Composer\\XMLProvider\\XMLProviderInstallerPlugin" + }, + "autoload": { + "psr-4": { + "SimpleSAML\\Composer\\XMLProvider\\": "src/" + } }, - "time": "2023-03-08T20:58:22+00:00" + "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.3.0" + }, + "time": "2026-02-19T23:34:51+00:00" }, { "name": "simplesamlphp/saml2", - "version": "v4.6.10", + "version": "v6.1.5", "source": { "type": "git", "url": "https://github.com/simplesamlphp/saml2.git", - "reference": "a6c46e8134df2686da9ad44bc9b8f85443c03440" + "reference": "939564f276598b71e5162243dae9deaacbe5440e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/simplesamlphp/saml2/zipball/939564f276598b71e5162243dae9deaacbe5440e", + "reference": "939564f276598b71e5162243dae9deaacbe5440e", + "shasum": "" + }, + "require": { + "ext-date": "*", + "ext-dom": "*", + "ext-filter": "*", + "ext-openssl": "*", + "ext-pcre": "*", + "ext-zlib": "*", + "nyholm/psr7": "~1.8", + "php": "^8.3", + "psr/clock": "~1.0", + "psr/http-message": "~2.0", + "psr/log": "~3.0", + "simplesamlphp/assert": "~2.0", + "simplesamlphp/xml-common": "~2.7", + "simplesamlphp/xml-security": "~2.3", + "simplesamlphp/xml-soap": "~2.3" + }, + "require-dev": { + "beste/clock": "~3.0", + "ext-intl": "*", + "mockery/mockery": "~1.6", + "simplesamlphp/simplesamlphp-test-framework": "~1.11" + }, + "suggest": { + "ext-soap": "*" + }, + "type": "simplesamlphp-xmlprovider", + "extra": { + "branch-alias": { + "dev-master": "v6.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "SimpleSAML\\SAML2\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1-or-later" + ], + "authors": [ + { + "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/v6.1.5" + }, + "time": "2026-04-10T11:04:51+00:00" + }, + { + "name": "simplesamlphp/saml2-legacy", + "version": "v4.20.1", + "source": { + "type": "git", + "url": "https://github.com/simplesamlphp/saml2-legacy.git", + "reference": "ac325057307cc8765e190fae20f7721d5f7b9f69" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/saml2/zipball/a6c46e8134df2686da9ad44bc9b8f85443c03440", - "reference": "a6c46e8134df2686da9ad44bc9b8f85443c03440", + "url": "https://api.github.com/repos/simplesamlphp/saml2-legacy/zipball/ac325057307cc8765e190fae20f7721d5f7b9f69", + "reference": "ac325057307cc8765e190fae20f7721d5f7b9f69", "shasum": "" }, "require": { "ext-dom": "*", "ext-openssl": "*", "ext-zlib": "*", - "php": ">=7.1 || ^8.0", - "psr/log": "~1.1 || ^2.0 || ^3.0", - "robrichards/xmlseclibs": "^3.1.1", - "webmozart/assert": "^1.9" + "php": "^8.3", + "psr/log": "^2.0 || ^3.0", + "robrichards/xmlseclibs": "^3.1.5", + "simplesamlphp/xml-common": "^2.7", + "webmozart/assert": "^2.0" + }, + "conflict": { + "robrichards/xmlseclibs": "3.1.2" }, "require-dev": { - "mockery/mockery": "^1.3", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "sebastian/phpcpd": "~4.1 || ^5.0 || ^6.0", - "simplesamlphp/simplesamlphp-test-framework": "~0.1.0", - "squizlabs/php_codesniffer": "~3.5" + "mockery/mockery": "~1.6", + "simplesamlphp/simplesamlphp-test-framework": "~1.11" }, "type": "library", "extra": { @@ -706,28 +1342,27 @@ ], "description": "SAML2 PHP library from SimpleSAMLphp", "support": { - "issues": "https://github.com/simplesamlphp/saml2/issues", - "source": "https://github.com/simplesamlphp/saml2/tree/v4.6.10" + "source": "https://github.com/simplesamlphp/saml2-legacy/tree/v4.20.1" }, - "time": "2023-05-31T16:03:51+00:00" + "time": "2026-03-13T12:39:43+00:00" }, { "name": "simplesamlphp/simplesamlphp-assets-base", - "version": "v2.1.9", + "version": "v2.5.14", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-assets-base.git", - "reference": "df9073ea42a6d9b64e1e35350910bf9f16cc0049" + "reference": "0b9185712983e55ac461dc433172bc8efbbc2782" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-assets-base/zipball/df9073ea42a6d9b64e1e35350910bf9f16cc0049", - "reference": "df9073ea42a6d9b64e1e35350910bf9f16cc0049", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-assets-base/zipball/0b9185712983e55ac461dc433172bc8efbbc2782", + "reference": "0b9185712983e55ac461dc433172bc8efbbc2782", "shasum": "" }, "require": { - "php": ">=7.4 || ^8.0", - "simplesamlphp/composer-module-installer": "^1.3.2" + "php": "^8.3", + "simplesamlphp/composer-module-installer": "~1.7" }, "type": "simplesamlphp-module", "notification-url": "https://packagist.org/downloads/", @@ -743,118 +1378,315 @@ "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.9" + "source": "https://github.com/simplesamlphp/simplesamlphp-assets-base/tree/v2.5.14" }, - "time": "2024-01-16T23:19:02+00:00" + "time": "2026-03-29T02:09:37+00:00" }, { - "name": "symfony/cache", - "version": "v6.4.2", + "name": "simplesamlphp/xml-common", + "version": "v2.8.0", "source": { "type": "git", - "url": "https://github.com/symfony/cache.git", - "reference": "14a75869bbb41cb35bc5d9d322473928c6f3f978" + "url": "https://github.com/simplesamlphp/xml-common.git", + "reference": "d3207b41e0e042ccbdfd0d0620f631e94c39d4ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/14a75869bbb41cb35bc5d9d322473928c6f3f978", - "reference": "14a75869bbb41cb35bc5d9d322473928c6f3f978", + "url": "https://api.github.com/repos/simplesamlphp/xml-common/zipball/d3207b41e0e042ccbdfd0d0620f631e94c39d4ba", + "reference": "d3207b41e0e042ccbdfd0d0620f631e94c39d4ba", "shasum": "" }, "require": { - "php": ">=8.1", - "psr/cache": "^2.0|^3.0", - "psr/log": "^1.1|^2|^3", - "symfony/cache-contracts": "^2.5|^3", - "symfony/service-contracts": "^2.5|^3", - "symfony/var-exporter": "^6.3.6|^7.0" - }, - "conflict": { - "doctrine/dbal": "<2.13.1", - "symfony/dependency-injection": "<5.4", - "symfony/http-kernel": "<5.4", - "symfony/var-dumper": "<5.4" - }, - "provide": { - "psr/cache-implementation": "2.0|3.0", - "psr/simple-cache-implementation": "1.0|2.0|3.0", - "symfony/cache-implementation": "1.1|2.0|3.0" + "ext-bcmath": "*", + "ext-date": "*", + "ext-dom": "*", + "ext-filter": "*", + "ext-libxml": "*", + "ext-pcre": "*", + "ext-spl": "*", + "guzzlehttp/psr7": "~2.8", + "php": "^8.3", + "psr/clock": "~1.0", + "simplesamlphp/assert": "~2.0", + "simplesamlphp/composer-xmlprovider-installer": "~1.3" }, "require-dev": { - "cache/integration-tests": "dev-master", - "doctrine/dbal": "^2.13.1|^3|^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" + "simplesamlphp/simplesamlphp-test-framework": "~1.11" + }, + "type": "simplesamlphp-xmlprovider", + "extra": { + "branch-alias": { + "dev-master": "v2.7.x-dev" + } }, - "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Cache\\": "" - }, - "classmap": [ - "Traits/ValueWrapper.php" - ], - "exclude-from-classmap": [ - "/Tests/" - ] + "SimpleSAML\\XML\\": "src/XML/", + "SimpleSAML\\XPath\\": "src/XPath/", + "SimpleSAML\\XMLSchema\\": "src/XMLSchema/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "LGPL-2.1-or-later" ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Jaime Perez", + "email": "jaime.perez@uninett.no" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Tim van Dijen", + "email": "tvdijen@gmail.com" } ], - "description": "Provides extended PSR-6, PSR-16 (and tags) implementations", - "homepage": "https://symfony.com", + "description": "A library with classes and utilities for handling XML structures.", + "homepage": "http://simplesamlphp.org", "keywords": [ - "caching", - "psr6" + "Xpath", + "schema", + "xml", + "xsd" ], "support": { - "source": "https://github.com/symfony/cache/tree/v6.4.2" + "issues": "https://github.com/simplesamlphp/xml-common/issues", + "source": "https://github.com/simplesamlphp/xml-common" }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" + "time": "2026-04-13T20:34:07+00:00" + }, + { + "name": "simplesamlphp/xml-security", + "version": "v2.3.1", + "source": { + "type": "git", + "url": "https://github.com/simplesamlphp/xml-security.git", + "reference": "ded07df15a53ee87a179e8bff79870ffea31e716" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/simplesamlphp/xml-security/zipball/ded07df15a53ee87a179e8bff79870ffea31e716", + "reference": "ded07df15a53ee87a179e8bff79870ffea31e716", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-hash": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-pcre": "*", + "ext-spl": "*", + "php": "^8.3", + "simplesamlphp/assert": "~2.0", + "simplesamlphp/xml-common": "~2.7" + }, + "require-dev": { + "simplesamlphp/simplesamlphp-test-framework": "~1.11" + }, + "type": "simplesamlphp-xmlprovider", + "autoload": { + "psr-4": { + "SimpleSAML\\XMLSecurity\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1-or-later" + ], + "authors": [ + { + "name": "Jaime Perez Crespo", + "email": "jaime.perez@uninett.no", + "role": "Maintainer" + }, + { + "name": "Tim van Dijen", + "email": "tvdijen@gmail.com", + "role": "Maintainer" + } + ], + "description": "SimpleSAMLphp library for XML Security", + "homepage": "https://github.com/simplesamlphp/xml-security", + "keywords": [ + "security", + "signature", + "xml", + "xmldsig" + ], + "support": { + "issues": "https://github.com/simplesamlphp/xml-security/issues", + "source": "https://github.com/simplesamlphp/xml-security/tree/v2.3.1" + }, + "time": "2026-03-13T16:57:53+00:00" + }, + { + "name": "simplesamlphp/xml-soap", + "version": "v2.3.0", + "source": { + "type": "git", + "url": "https://github.com/simplesamlphp/xml-soap.git", + "reference": "014a0846d3b3a1a29f8d39c5bf75a827de216501" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/simplesamlphp/xml-soap/zipball/014a0846d3b3a1a29f8d39c5bf75a827de216501", + "reference": "014a0846d3b3a1a29f8d39c5bf75a827de216501", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-pcre": "*", + "php": "^8.3", + "simplesamlphp/assert": "~2.0", + "simplesamlphp/xml-common": "~2.7" + }, + "require-dev": { + "simplesamlphp/simplesamlphp-test-framework": "~1.11" + }, + "type": "simplesamlphp-xmlprovider", + "extra": { + "branch-alias": { + "dev-master": "v2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "SimpleSAML\\SOAP11\\": "src/SOAP11/", + "SimpleSAML\\SOAP12\\": "src/SOAP12/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1-or-later" + ], + "authors": [ + { + "name": "Tim van Dijen", + "email": "tvdijen@gmail.com" + } + ], + "description": "SimpleSAMLphp library for XML SOAP", + "support": { + "issues": "https://github.com/simplesamlphp/xml-soap/issues", + "source": "https://github.com/simplesamlphp/xml-soap/tree/v2.3.0" + }, + "time": "2026-02-17T20:22:50+00:00" + }, + { + "name": "symfony/cache", + "version": "v7.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/cache.git", + "reference": "467464da294734b0fb17e853e5712abc8470f819" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/cache/zipball/467464da294734b0fb17e853e5712abc8470f819", + "reference": "467464da294734b0fb17e853e5712abc8470f819", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/cache": "^2.0|^3.0", + "psr/log": "^1.1|^2|^3", + "symfony/cache-contracts": "^3.6", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/service-contracts": "^2.5|^3", + "symfony/var-exporter": "^6.4|^7.0|^8.0" + }, + "conflict": { + "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", + "psr/simple-cache-implementation": "1.0|2.0|3.0", + "symfony/cache-implementation": "1.1|2.0|3.0" + }, + "require-dev": { + "cache/integration-tests": "dev-master", + "doctrine/dbal": "^3.6|^4", + "predis/predis": "^1.1|^2.0", + "psr/simple-cache": "^1.0|^2.0|^3.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": { + "psr-4": { + "Symfony\\Component\\Cache\\": "" + }, + "classmap": [ + "Traits/ValueWrapper.php" + ], + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides extended PSR-6, PSR-16 (and tags) implementations", + "homepage": "https://symfony.com", + "keywords": [ + "caching", + "psr6" + ], + "support": { + "source": "https://github.com/symfony/cache/tree/v7.4.8" + }, + "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": "2023-12-29T15:34:34+00:00" + "time": "2026-03-30T15:15:47+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": { @@ -863,12 +1695,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": { @@ -901,7 +1733,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": [ { @@ -917,38 +1749,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.0", + "version": "v7.4.8", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "5d33e0fb707d603330e0edfd4691803a1253572e" + "reference": "2d19dde43fa2ff720b9a40763ace7226594f503b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/5d33e0fb707d603330e0edfd4691803a1253572e", - "reference": "5d33e0fb707d603330e0edfd4691803a1253572e", + "url": "https://api.github.com/repos/symfony/config/zipball/2d19dde43fa2ff720b9a40763ace7226594f503b", + "reference": "2d19dde43fa2ff720b9a40763ace7226594f503b", "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": { @@ -976,7 +1808,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.0" + "source": "https://github.com/symfony/config/tree/v7.4.8" }, "funding": [ { @@ -987,56 +1819,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": "2023-11-09T08:28:32+00:00" + "time": "2026-03-24T13:12:05+00:00" }, { "name": "symfony/console", - "version": "v6.4.2", + "version": "v7.4.8", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "0254811a143e6bc6c8deea08b589a7e68a37f625" + "reference": "1e92e39c51f95b88e3d66fa2d9f06d1fb45dd707" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/0254811a143e6bc6c8deea08b589a7e68a37f625", - "reference": "0254811a143e6bc6c8deea08b589a7e68a37f625", + "url": "https://api.github.com/repos/symfony/console/zipball/1e92e39c51f95b88e3d66fa2d9f06d1fb45dd707", + "reference": "1e92e39c51f95b88e3d66fa2d9f06d1fb45dd707", "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": { @@ -1070,7 +1906,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.4.2" + "source": "https://github.com/symfony/console/tree/v7.4.8" }, "funding": [ { @@ -1081,49 +1917,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": "2023-12-10T16:15:48+00:00" + "time": "2026-03-30T13:54:39+00:00" }, { "name": "symfony/dependency-injection", - "version": "v6.4.2", + "version": "v7.4.8", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "226ea431b1eda6f0d9f5a4b278757171960bb195" + "reference": "f7025fd7b687c240426562f86ada06a93b1e771d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/226ea431b1eda6f0d9f5a4b278757171960bb195", - "reference": "226ea431b1eda6f0d9f5a4b278757171960bb195", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f7025fd7b687c240426562f86ada06a93b1e771d", + "reference": "f7025fd7b687c240426562f86ada06a93b1e771d", "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": { @@ -1151,7 +1990,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.2" + "source": "https://github.com/symfony/dependency-injection/tree/v7.4.8" }, "funding": [ { @@ -1162,25 +2001,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": "2023-12-28T19:16:56+00:00" + "time": "2026-03-31T06:50:29+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": { @@ -1188,12 +2031,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": { @@ -1218,7 +2061,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": [ { @@ -1234,35 +2077,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.0", + "version": "v7.4.8", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "c873490a1c97b3a0a4838afc36ff36c112d02788" + "reference": "8dd79d8af777ee6cba2fd4d98da6ffb839f3c0fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/c873490a1c97b3a0a4838afc36ff36c112d02788", - "reference": "c873490a1c97b3a0a4838afc36ff36c112d02788", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/8dd79d8af777ee6cba2fd4d98da6ffb839f3c0fa", + "reference": "8dd79d8af777ee6cba2fd4d98da6ffb839f3c0fa", "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" @@ -1293,7 +2139,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.0" + "source": "https://github.com/symfony/error-handler/tree/v7.4.8" }, "funding": [ { @@ -1304,33 +2150,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": "2023-10-18T09:43:34+00:00" + "time": "2026-03-24T13:12:05+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v6.4.2", + "version": "v7.4.8", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "e95216850555cd55e71b857eb9d6c2674124603a" + "reference": "f57b899fa736fd71121168ef268f23c206083f0a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e95216850555cd55e71b857eb9d6c2674124603a", - "reference": "e95216850555cd55e71b857eb9d6c2674124603a", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f57b899fa736fd71121168ef268f23c206083f0a", + "reference": "f57b899fa736fd71121168ef268f23c206083f0a", "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": { @@ -1339,13 +2189,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": { @@ -1373,7 +2224,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.2" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.8" }, "funding": [ { @@ -1384,25 +2235,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": "2023-12-27T22:16:42+00:00" + "time": "2026-03-30T13:54:39+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": { @@ -1411,12 +2266,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": { @@ -1449,7 +2304,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": [ { @@ -1465,31 +2320,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.0", + "name": "symfony/expression-language", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "952a8cb588c3bc6ce76f6023000fb932f16a6e59" + "url": "https://github.com/symfony/expression-language.git", + "reference": "87ff95687748f4af65e4d5a6e917d448ec52aa83" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/952a8cb588c3bc6ce76f6023000fb932f16a6e59", - "reference": "952a8cb588c3bc6ce76f6023000fb932f16a6e59", + "url": "https://api.github.com/repos/symfony/expression-language/zipball/87ff95687748f4af65e4d5a6e917d448ec52aa83", + "reference": "87ff95687748f4af65e4d5a6e917d448ec52aa83", "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/" @@ -1509,10 +2365,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.0" + "source": "https://github.com/symfony/expression-language/tree/v7.4.8" }, "funding": [ { @@ -1523,37 +2379,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": "2023-07-26T17:27:13+00:00" + "time": "2026-03-24T13:12:05+00:00" }, { - "name": "symfony/finder", - "version": "v6.4.0", + "name": "symfony/filesystem", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/finder.git", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce" + "url": "https://github.com/symfony/filesystem.git", + "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/58b9790d12f9670b7f53a1c1738febd3108970a5", + "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5", "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/" @@ -1573,10 +2435,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.8" }, "funding": [ { @@ -1587,121 +2449,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": "2023-10-31T17:30:12+00:00" + "time": "2026-03-24T13:12:05+00:00" }, { - "name": "symfony/framework-bundle", - "version": "v6.4.2", + "name": "symfony/finder", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/framework-bundle.git", - "reference": "c26a221e0462027d1f9d4a802ed63f8ab07a43d0" + "url": "https://github.com/symfony/finder.git", + "reference": "e0be088d22278583a82da281886e8c3592fbf149" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/c26a221e0462027d1f9d4a802ed63f8ab07a43d0", - "reference": "c26a221e0462027d1f9d4a802ed63f8ab07a43d0", + "url": "https://api.github.com/repos/symfony/finder/zipball/e0be088d22278583a82da281886e8c3592fbf149", + "reference": "e0be088d22278583a82da281886e8c3592fbf149", "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", - "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/polyfill-mbstring": "~1.0", - "symfony/routing": "^6.4|^7.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-mapper": "<6.4", - "symfony/clock": "<6.3", - "symfony/console": "<5.4|>=7.0", - "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/mime": "<6.4", - "symfony/property-access": "<5.4", - "symfony/property-info": "<5.4", - "symfony/scheduler": "<6.4", - "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/validator": "<6.4", - "symfony/web-profiler-bundle": "<6.4", - "symfony/workflow": "<6.4" + "php": ">=8.2" }, "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/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|^7.0", - "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/filesystem": "^6.4|^7.0|^8.0" }, - "type": "symfony-bundle", + "type": "library", "autoload": { "psr-4": { - "Symfony\\Bundle\\FrameworkBundle\\": "" + "Symfony\\Component\\Finder\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -1721,10 +2503,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework", + "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/framework-bundle/tree/v6.4.2" + "source": "https://github.com/symfony/finder/tree/v7.4.8" }, "funding": [ { @@ -1735,50 +2517,131 @@ "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-29T15:34:34+00:00" + "time": "2026-03-24T13:12:05+00:00" }, { - "name": "symfony/http-foundation", - "version": "v6.4.2", + "name": "symfony/framework-bundle", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/http-foundation.git", - "reference": "172d807f9ef3fc3fbed8377cc57c20d389269271" + "url": "https://github.com/symfony/framework-bundle.git", + "reference": "180533cfbac2144349044267db31d5d3df9957cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/172d807f9ef3fc3fbed8377cc57c20d389269271", - "reference": "172d807f9ef3fc3fbed8377cc57c20d389269271", + "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/180533cfbac2144349044267db31d5d3df9957cb", + "reference": "180533cfbac2144349044267db31d5d3df9957cb", "shasum": "" }, "require": { - "php": ">=8.1", + "composer-runtime-api": ">=2.1", + "ext-xml": "*", + "php": ">=8.2", + "symfony/cache": "^6.4.12|^7.0|^8.0", + "symfony/config": "^7.4.4|^8.0.4", + "symfony/dependency-injection": "^7.4.4|^8.0.4", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-mbstring": "~1.1", - "symfony/polyfill-php83": "^1.27" + "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/polyfill-php85": "^1.32", + "symfony/routing": "^7.4|^8.0" }, "conflict": { - "symfony/cache": "<6.3" + "doctrine/persistence": "<1.3", + "phpdocumentor/reflection-docblock": "<5.2|>=7", + "phpdocumentor/type-resolver": "<1.5.1", + "symfony/asset": "<6.4", + "symfony/asset-mapper": "<6.4", + "symfony/clock": "<6.4", + "symfony/console": "<6.4", + "symfony/dom-crawler": "<6.4", + "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": "<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/webhook": "<7.2", + "symfony/workflow": "<7.4" }, "require-dev": { - "doctrine/dbal": "^2.13.1|^3|^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" + "doctrine/persistence": "^1.3|^2|^3", + "dragonmantank/cron-expression": "^3.1", + "phpdocumentor/reflection-docblock": "^5.2|^6.0", + "seld/jsonlint": "^1.10", + "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": "^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": "library", + "type": "symfony-bundle", "autoload": { "psr-4": { - "Symfony\\Component\\HttpFoundation\\": "" + "Symfony\\Bundle\\FrameworkBundle\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -1798,10 +2661,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Defines an object-oriented layer for the HTTP specification", + "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.4.2" + "source": "https://github.com/symfony/framework-bundle/tree/v7.4.8" }, "funding": [ { @@ -1812,86 +2675,71 @@ "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-27T22:16:42+00:00" + "time": "2026-03-30T12:55:43+00:00" }, { - "name": "symfony/http-kernel", - "version": "v6.4.2", + "name": "symfony/http-client", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/http-kernel.git", - "reference": "13e8387320b5942d0dc408440c888e2d526efef4" + "url": "https://github.com/symfony/http-client.git", + "reference": "01933e626c3de76bea1e22641e205e78f6a34342" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/13e8387320b5942d0dc408440c888e2d526efef4", - "reference": "13e8387320b5942d0dc408440c888e2d526efef4", + "url": "https://api.github.com/repos/symfony/http-client/zipball/01933e626c3de76bea1e22641e205e78f6a34342", + "reference": "01933e626c3de76bea1e22641e205e78f6a34342", "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/polyfill-ctype": "^1.8" + "symfony/http-client-contracts": "~3.4.4|^3.5.2", + "symfony/polyfill-php83": "^1.29", + "symfony/service-contracts": "^2.5|^3" }, "conflict": { - "symfony/browser-kit": "<5.4", - "symfony/cache": "<5.4", - "symfony/config": "<6.1", - "symfony/console": "<5.4", - "symfony/dependency-injection": "<6.4", - "symfony/doctrine-bridge": "<5.4", - "symfony/form": "<5.4", - "symfony/http-client": "<5.4", - "symfony/http-client-contracts": "<2.5", - "symfony/mailer": "<5.4", - "symfony/messenger": "<5.4", - "symfony/translation": "<5.4", - "symfony/translation-contracts": "<2.5", - "symfony/twig-bridge": "<5.4", - "symfony/validator": "<6.4", - "symfony/var-dumper": "<6.3", - "twig/twig": "<2.13" + "amphp/amp": "<2.5", + "amphp/socket": "<1.1", + "php-http/discovery": "<1.15", + "symfony/http-foundation": "<6.4" }, "provide": { - "psr/log-implementation": "1.0|2.0|3.0" + "php-http/async-client-implementation": "*", + "php-http/client-implementation": "*", + "psr/http-client-implementation": "1.0", + "symfony/http-client-implementation": "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/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/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" + "amphp/http-client": "^4.2.1|^5.0", + "amphp/http-tunnel": "^1.0|^2.0", + "guzzlehttp/promises": "^1.4|^2.0", + "nyholm/psr7": "^1.0", + "php-http/httplug": "^1.0|^2.0", + "psr/http-client": "^1.0", + "symfony/amphp-http-client-meta": "^1.0|^2.0", + "symfony/cache": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/messenger": "^6.4|^7.0|^8.0", + "symfony/process": "^6.4|^7.0|^8.0", + "symfony/rate-limiter": "^6.4|^7.0|^8.0", + "symfony/stopwatch": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\HttpKernel\\": "" + "Symfony\\Component\\HttpClient\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -1903,18 +2751,21 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Provides a structured process for converting a Request into a Response", + "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously", "homepage": "https://symfony.com", + "keywords": [ + "http" + ], "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.4.2" + "source": "https://github.com/symfony/http-client/tree/v7.4.8" }, "funding": [ { @@ -1925,42 +2776,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": "2023-12-30T15:31:44+00:00" + "time": "2026-03-30T12:55:43+00:00" }, { - "name": "symfony/intl", - "version": "v6.4.2", + "name": "symfony/http-client-contracts", + "version": "v3.6.0", "source": { "type": "git", - "url": "https://github.com/symfony/intl.git", - "reference": "4f45148f7eb984ef12b1f7e123205ab904828839" + "url": "https://github.com/symfony/http-client-contracts.git", + "reference": "75d7043853a42837e68111812f4d964b01e5101c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/intl/zipball/4f45148f7eb984ef12b1f7e123205ab904828839", - "reference": "4f45148f7eb984ef12b1f7e123205ab904828839", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c", + "reference": "75d7043853a42837e68111812f4d964b01e5101c", "shasum": "" }, "require": { "php": ">=8.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" - }, "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, "autoload": { "psr-4": { - "Symfony\\Component\\Intl\\": "" + "Symfony\\Contracts\\HttpClient\\": "" }, "exclude-from-classmap": [ - "/Tests/" + "/Test/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -1969,34 +2828,26 @@ ], "authors": [ { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - }, - { - "name": "Eriksen Costa", - "email": "eriksen.costa@infranology.com.br" - }, - { - "name": "Igor Wiedler", - "email": "igor@wiedler.ch" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Provides access to the localization data of the ICU library", + "description": "Generic abstractions related to HTTP clients", "homepage": "https://symfony.com", "keywords": [ - "i18n", - "icu", - "internationalization", - "intl", - "l10n", - "localization" + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" ], "support": { - "source": "https://github.com/symfony/intl/tree/v6.4.2" + "source": "https://github.com/symfony/http-client-contracts/tree/v3.6.0" }, "funding": [ { @@ -2012,48 +2863,50 @@ "type": "tidelift" } ], - "time": "2023-12-26T18:38:00+00:00" + "time": "2025-04-29T11:18:49+00:00" }, { - "name": "symfony/polyfill-ctype", - "version": "v1.28.0", + "name": "symfony/http-foundation", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" + "url": "https://github.com/symfony/http-foundation.git", + "reference": "9381209597ec66c25be154cbf2289076e64d1eab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", - "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9381209597ec66c25be154cbf2289076e64d1eab", + "reference": "9381209597ec66c25be154cbf2289076e64d1eab", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "^1.1" }, - "provide": { - "ext-ctype": "*" + "conflict": { + "doctrine/dbal": "<3.6", + "symfony/cache": "<6.4.12|>=7.0,<7.1.5" }, - "suggest": { - "ext-ctype": "For best performance" + "require-dev": { + "doctrine/dbal": "^3.6|^4", + "predis/predis": "^1.1|^2.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", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" - } + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -2061,24 +2914,18 @@ ], "authors": [ { - "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for ctype functions", + "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "ctype", - "polyfill", - "portable" - ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0" + "source": "https://github.com/symfony/http-foundation/tree/v7.4.8" }, "funding": [ { @@ -2089,50 +2936,96 @@ "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": "2026-03-24T13:12:05+00:00" }, { - "name": "symfony/polyfill-intl-grapheme", - "version": "v1.28.0", + "name": "symfony/http-kernel", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "875e90aeea2777b6f135677f618529449334a612" + "url": "https://github.com/symfony/http-kernel.git", + "reference": "017e76ad089bac281553389269e259e155935e1a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", - "reference": "875e90aeea2777b6f135677f618529449334a612", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/017e76ad089bac281553389269e259e155935e1a", + "reference": "017e76ad089bac281553389269e259e155935e1a", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", + "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" }, - "suggest": { - "ext-intl": "For best performance" + "conflict": { + "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": "<6.4", + "symfony/flex": "<2.10", + "symfony/form": "<6.4", + "symfony/http-client": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<6.4", + "symfony/messenger": "<6.4", + "symfony/translation": "<6.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<6.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.4", + "twig/twig": "<3.12" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.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.1|^7.0.1|^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": "^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": "^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": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Intl\\Grapheme\\": "" - } + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -2140,26 +3033,18 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for intl's grapheme_* functions", + "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "grapheme", - "intl", - "polyfill", - "portable", - "shim" - ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0" + "source": "https://github.com/symfony/http-kernel/tree/v7.4.8" }, "funding": [ { @@ -2170,55 +3055,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": "2023-01-26T09:26:14+00:00" + "time": "2026-03-31T20:57:01+00:00" }, { - "name": "symfony/polyfill-intl-icu", - "version": "v1.28.0", + "name": "symfony/intl", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-icu.git", - "reference": "e46b4da57951a16053cd751f63f4a24292788157" + "url": "https://github.com/symfony/intl.git", + "reference": "7cfb7792d580dea833647420afd5f2f98df8457b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e46b4da57951a16053cd751f63f4a24292788157", - "reference": "e46b4da57951a16053cd751f63f4a24292788157", + "url": "https://api.github.com/repos/symfony/intl/zipball/7cfb7792d580dea833647420afd5f2f98df8457b", + "reference": "7cfb7792d580dea833647420afd5f2f98df8457b", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" }, - "suggest": { - "ext-intl": "For best performance and support of other locales than \"en\"" + "conflict": { + "symfony/string": "<7.1" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } + "require-dev": { + "symfony/filesystem": "^6.4|^7.0|^8.0", + "symfony/var-exporter": "^6.4|^7.0|^8.0" }, + "type": "library", "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Intl\\Icu\\": "" + "Symfony\\Component\\Intl\\": "" }, - "classmap": [ - "Resources/stubs" - ], "exclude-from-classmap": [ - "/Tests/" + "/Tests/", + "/Resources/data/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -2227,26 +3107,34 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + }, + { + "name": "Eriksen Costa", + "email": "eriksen.costa@infranology.com.br" + }, + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for intl's ICU-related data and classes", + "description": "Provides access to the localization data of the ICU library", "homepage": "https://symfony.com", "keywords": [ - "compatibility", + "i18n", "icu", + "internationalization", "intl", - "polyfill", - "portable", - "shim" + "l10n", + "localization" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.28.0" + "source": "https://github.com/symfony/intl/tree/v7.4.8" }, "funding": [ { @@ -2257,52 +3145,48 @@ "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-03-21T17:27:24+00:00" + "time": "2026-03-30T12:55:43+00:00" }, { - "name": "symfony/polyfill-intl-normalizer", - "version": "v1.28.0", + "name": "symfony/password-hasher", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" + "url": "https://github.com/symfony/password-hasher.git", + "reference": "18a7d92126c95962f7efbcc9e421ba710a366847" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", - "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "url": "https://api.github.com/repos/symfony/password-hasher/zipball/18a7d92126c95962f7efbcc9e421ba710a366847", + "reference": "18a7d92126c95962f7efbcc9e421ba710a366847", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=8.2" }, - "suggest": { - "ext-intl": "For best performance" + "conflict": { + "symfony/security-core": "<6.4" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } + "require-dev": { + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/security-core": "^6.4|^7.0|^8.0" }, + "type": "library", "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + "Symfony\\Component\\PasswordHasher\\": "" }, - "classmap": [ - "Resources/stubs" + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -2311,26 +3195,22 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Robin Chalas", + "email": "robin.chalas@gmail.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for intl's Normalizer class and related functions", + "description": "Provides password hashing utilities", "homepage": "https://symfony.com", "keywords": [ - "compatibility", - "intl", - "normalizer", - "polyfill", - "portable", - "shim" + "hashing", + "password" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0" + "source": "https://github.com/symfony/password-hasher/tree/v7.4.8" }, "funding": [ { @@ -2341,44 +3221,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": "2023-01-26T09:26:14+00:00" + "time": "2026-03-24T13:12:05+00:00" }, { - "name": "symfony/polyfill-mbstring", - "version": "v1.28.0", + "name": "symfony/polyfill-ctype", + "version": "v1.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "42292d99c55abe617799667f454222c54c60e229" + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "141046a8f9477948ff284fa65be2095baafb94f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", - "reference": "42292d99c55abe617799667f454222c54c60e229", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/141046a8f9477948ff284fa65be2095baafb94f2", + "reference": "141046a8f9477948ff284fa65be2095baafb94f2", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "provide": { - "ext-mbstring": "*" + "ext-ctype": "*" }, "suggest": { - "ext-mbstring": "For best performance" + "ext-ctype": "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": { @@ -2386,7 +3267,7 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" + "Symfony\\Polyfill\\Ctype\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -2395,25 +3276,24 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill for the Mbstring extension", + "description": "Symfony polyfill for ctype functions", "homepage": "https://symfony.com", "keywords": [ "compatibility", - "mbstring", + "ctype", "polyfill", - "portable", - "shim" + "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.35.0" }, "funding": [ { @@ -2424,38 +3304,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": "2023-07-28T09:04:16+00:00" + "time": "2026-04-10T16:19:22+00:00" }, { - "name": "symfony/polyfill-php80", - "version": "v1.28.0", + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "ad1b7b9092976d6c948b8a187cec9faaea9ec1df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", - "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/ad1b7b9092976d6c948b8a187cec9faaea9ec1df", + "reference": "ad1b7b9092976d6c948b8a187cec9faaea9ec1df", "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": { @@ -2463,21 +3347,14 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" - }, - "classmap": [ - "Resources/stubs" - ] + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ - { - "name": "Ion Bazan", - "email": "ion.bazan@gmail.com" - }, { "name": "Nicolas Grekas", "email": "p@tchwork.com" @@ -2487,16 +3364,18 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "description": "Symfony polyfill for intl's grapheme_* functions", "homepage": "https://symfony.com", "keywords": [ "compatibility", + "grapheme", + "intl", "polyfill", "portable", "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.35.0" }, "funding": [ { @@ -2507,39 +3386,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": "2023-01-26T09:26:14+00:00" + "time": "2026-04-10T16:19:22+00:00" }, { - "name": "symfony/polyfill-php83", - "version": "v1.28.0", + "name": "symfony/polyfill-intl-icu", + "version": "v1.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11" + "url": "https://github.com/symfony/polyfill-intl-icu.git", + "reference": "3510b63d07376b04e57e27e82607d468bb134f78" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", - "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/3510b63d07376b04e57e27e82607d468bb134f78", + "reference": "3510b63d07376b04e57e27e82607d468bb134f78", "shasum": "" }, "require": { - "php": ">=7.1", - "symfony/polyfill-php80": "^1.14" + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance and support of other locales than \"en\"" }, "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": { @@ -2547,10 +3429,13 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Php83\\": "" + "Symfony\\Polyfill\\Intl\\Icu\\": "" }, "classmap": [ "Resources/stubs" + ], + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -2567,16 +3452,18 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", + "description": "Symfony polyfill for intl's ICU-related data and classes", "homepage": "https://symfony.com", "keywords": [ "compatibility", + "icu", + "intl", "polyfill", "portable", "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0" + "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.35.0" }, "funding": [ { @@ -2587,53 +3474,53 @@ "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-08-16T06:22:46+00:00" + "time": "2026-04-10T16:50:15+00:00" }, { - "name": "symfony/routing", - "version": "v6.4.2", + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/routing.git", - "reference": "98eab13a07fddc85766f1756129c69f207ffbc21" + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "3833d7255cc303546435cb650316bff708a1c75c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/98eab13a07fddc85766f1756129c69f207ffbc21", - "reference": "98eab13a07fddc85766f1756129c69f207ffbc21", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3" - }, - "conflict": { - "doctrine/annotations": "<1.12", - "symfony/config": "<6.2", - "symfony/dependency-injection": "<5.4", - "symfony/yaml": "<5.4" + "php": ">=7.2" }, - "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" + "suggest": { + "ext-intl": "For best performance" }, "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Component\\Routing\\": "" + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -2642,24 +3529,26 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Maps an HTTP request to a set of configuration variables", + "description": "Symfony polyfill for intl's Normalizer class and related functions", "homepage": "https://symfony.com", "keywords": [ - "router", - "routing", - "uri", - "url" + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.4.2" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.35.0" }, "funding": [ { @@ -2670,51 +3559,55 @@ "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-29T15:34:34+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { - "name": "symfony/service-contracts", - "version": "v3.4.1", + "name": "symfony/polyfill-mbstring", + "version": "v1.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/service-contracts.git", - "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0" + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", - "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6a21eb99c6973357967f6ce3708cd55a6bec6315", + "reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315", "shasum": "" }, "require": { - "php": ">=8.1", - "psr/container": "^1.1|^2.0" + "ext-iconv": "*", + "php": ">=7.2" }, - "conflict": { - "ext-psr": "<1.1|>=2" + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" }, "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/polyfill", + "name": "symfony/polyfill" } }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Contracts\\Service\\": "" - }, - "exclude-from-classmap": [ - "/Test/" - ] + "Symfony\\Polyfill\\Mbstring\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -2730,18 +3623,17 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to writing services", + "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.4.1" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.35.0" }, "funding": [ { @@ -2752,54 +3644,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": "2023-12-26T14:02:43+00:00" + "time": "2026-04-10T17:25:58+00:00" }, { - "name": "symfony/string", - "version": "v6.4.2", + "name": "symfony/polyfill-php83", + "version": "v1.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/string.git", - "reference": "7cb80bc10bfcdf6b5492741c0b9357dac66940bc" + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "3600c2cb22399e25bb226e4a135ce91eeb2a6149" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/7cb80bc10bfcdf6b5492741c0b9357dac66940bc", - "reference": "7cb80bc10bfcdf6b5492741c0b9357dac66940bc", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/3600c2cb22399e25bb226e4a135ce91eeb2a6149", + "reference": "3600c2cb22399e25bb226e4a135ce91eeb2a6149", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-intl-grapheme": "~1.0", - "symfony/polyfill-intl-normalizer": "~1.0", - "symfony/polyfill-mbstring": "~1.0" - }, - "conflict": { - "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/translation-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^5.4|^6.0|^7.0" + "php": ">=7.2" }, "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, "autoload": { "files": [ - "Resources/functions.php" + "bootstrap.php" ], "psr-4": { - "Symfony\\Component\\String\\": "" + "Symfony\\Polyfill\\Php83\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -2816,18 +3704,16 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ - "grapheme", - "i18n", - "string", - "unicode", - "utf-8", - "utf8" + "compatibility", + "polyfill", + "portable", + "shim" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.4.2" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.35.0" }, "funding": [ { @@ -2838,46 +3724,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": "2023-12-10T16:15:48+00:00" + "time": "2026-04-10T17:25:58+00:00" }, { - "name": "symfony/translation-contracts", - "version": "v3.4.1", + "name": "symfony/polyfill-php85", + "version": "v1.35.0", "source": { "type": "git", - "url": "https://github.com/symfony/translation-contracts.git", - "reference": "06450585bf65e978026bda220cdebca3f867fde7" + "url": "https://github.com/symfony/polyfill-php85.git", + "reference": "2c408a6bb0313e6001a83628dc5506100474254e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7", - "reference": "06450585bf65e978026bda220cdebca3f867fde7", + "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/2c408a6bb0313e6001a83628dc5506100474254e", + "reference": "2c408a6bb0313e6001a83628dc5506100474254e", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=7.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/polyfill", + "name": "symfony/polyfill" } }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Contracts\\Translation\\": "" + "Symfony\\Polyfill\\Php85\\": "" }, - "exclude-from-classmap": [ - "/Test/" + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -2894,18 +3784,16 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to translation", + "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" + "compatibility", + "polyfill", + "portable", + "shim" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1" + "source": "https://github.com/symfony/polyfill-php85/tree/v1.35.0" }, "funding": [ { @@ -2916,82 +3804,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": "2023-12-26T14:02:43+00:00" + "time": "2026-04-10T16:50:15+00:00" }, { - "name": "symfony/twig-bridge", - "version": "v6.4.2", + "name": "symfony/routing", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/twig-bridge.git", - "reference": "97af829e4733125ee70e806694d56165c60b4ee1" + "url": "https://github.com/symfony/routing.git", + "reference": "9608de9873ec86e754fb6c0a0fa7e5f1a960eb6b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/97af829e4733125ee70e806694d56165c60b4ee1", - "reference": "97af829e4733125ee70e806694d56165c60b4ee1", + "url": "https://api.github.com/repos/symfony/routing/zipball/9608de9873ec86e754fb6c0a0fa7e5f1a960eb6b", + "reference": "9608de9873ec86e754fb6c0a0fa7e5f1a960eb6b", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/translation-contracts": "^2.5|^3", - "twig/twig": "^2.13|^3.0.4" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" }, "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/http-kernel": "<6.4", - "symfony/mime": "<6.2", - "symfony/serializer": "<6.4", - "symfony/translation": "<5.4", - "symfony/workflow": "<5.4" + "symfony/config": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/yaml": "<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/polyfill-intl-icu": "~1.0", - "symfony/property-info": "^5.4|^6.0|^7.0", - "symfony/routing": "^5.4|^6.0|^7.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|^7.0", - "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" + "psr/log": "^1|^2|^3", + "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": "symfony-bridge", + "type": "library", "autoload": { "psr-4": { - "Symfony\\Bridge\\Twig\\": "" + "Symfony\\Component\\Routing\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -3011,10 +3869,16 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides integration for Twig with various Symfony components", + "description": "Maps an HTTP request to a set of configuration variables", "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], "support": { - "source": "https://github.com/symfony/twig-bridge/tree/v6.4.2" + "source": "https://github.com/symfony/routing/tree/v7.4.8" }, "funding": [ { @@ -3025,57 +3889,55 @@ "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-15T12:36:48+00:00" + "time": "2026-03-24T13:12:05+00:00" }, { - "name": "symfony/var-dumper", - "version": "v6.4.2", + "name": "symfony/service-contracts", + "version": "v3.6.1", "source": { "type": "git", - "url": "https://github.com/symfony/var-dumper.git", - "reference": "68d6573ec98715ddcae5a0a85bee3c1c27a4c33f" + "url": "https://github.com/symfony/service-contracts.git", + "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/68d6573ec98715ddcae5a0a85bee3c1c27a4c33f", - "reference": "68d6573ec98715ddcae5a0a85bee3c1c27a4c33f", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43", + "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43", "shasum": "" }, "require": { "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-mbstring": "~1.0" + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" }, "conflict": { - "symfony/console": "<5.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" + "ext-psr": "<1.1|>=2" }, - "bin": [ - "Resources/bin/var-dump-server" - ], "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, "autoload": { - "files": [ - "Resources/functions/dump.php" - ], "psr-4": { - "Symfony\\Component\\VarDumper\\": "" + "Symfony\\Contracts\\Service\\": "" }, "exclude-from-classmap": [ - "/Tests/" + "/Test/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -3092,14 +3954,18 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "description": "Generic abstractions related to writing services", "homepage": "https://symfony.com", "keywords": [ - "debug", - "dump" + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.4.2" + "source": "https://github.com/symfony/service-contracts/tree/v3.6.1" }, "funding": [ { @@ -3110,38 +3976,56 @@ "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-28T19:16:56+00:00" + "time": "2025-07-15T11:30:57+00:00" }, { - "name": "symfony/var-exporter", - "version": "v6.4.2", + "name": "symfony/string", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/var-exporter.git", - "reference": "5fe9a0021b8d35e67d914716ec8de50716a68e7e" + "url": "https://github.com/symfony/string.git", + "reference": "114ac57257d75df748eda23dd003878080b8e688" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/5fe9a0021b8d35e67d914716ec8de50716a68e7e", - "reference": "5fe9a0021b8d35e67d914716ec8de50716a68e7e", + "url": "https://api.github.com/repos/symfony/string/zipball/114ac57257d75df748eda23dd003878080b8e688", + "reference": "114ac57257d75df748eda23dd003878080b8e688", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3.0", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.33", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" }, "require-dev": { - "symfony/var-dumper": "^5.4|^6.0|^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": "^6.4|^7.0|^8.0" }, "type": "library", "autoload": { + "files": [ + "Resources/functions.php" + ], "psr-4": { - "Symfony\\Component\\VarExporter\\": "" + "Symfony\\Component\\String\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -3161,20 +4045,18 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Allows exporting any serializable PHP data structure to plain PHP code", + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", "homepage": "https://symfony.com", "keywords": [ - "clone", - "construct", - "export", - "hydrate", - "instantiate", - "lazy-loading", - "proxy", - "serialize" + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.4.2" + "source": "https://github.com/symfony/string/tree/v7.4.8" }, "funding": [ { @@ -3185,45 +4067,73 @@ "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-27T08:18:35+00:00" + "time": "2026-03-24T13:12:05+00:00" }, { - "name": "symfony/yaml", - "version": "v6.4.0", + "name": "symfony/translation", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/yaml.git", - "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587" + "url": "https://github.com/symfony/translation.git", + "reference": "33600f8489485425bfcddd0d983391038d3422e7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/4f9237a1bb42455d609e6687d2613dde5b41a587", - "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587", + "url": "https://api.github.com/repos/symfony/translation/zipball/33600f8489485425bfcddd0d983391038d3422e7", + "reference": "33600f8489485425bfcddd0d983391038d3422e7", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-ctype": "^1.8" + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5.3|^3.3" }, "conflict": { - "symfony/console": "<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": "<6.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<6.4", + "symfony/yaml": "<6.4" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" }, "require-dev": { - "symfony/console": "^5.4|^6.0|^7.0" + "nikic/php-parser": "^5.0", + "psr/log": "^1|^2|^3", + "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": "^6.4|^7.0|^8.0", + "symfony/intl": "^6.4|^7.0|^8.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^6.4|^7.0|^8.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^6.4|^7.0|^8.0" }, - "bin": [ - "Resources/bin/yaml-lint" - ], "type": "library", "autoload": { + "files": [ + "Resources/functions.php" + ], "psr-4": { - "Symfony\\Component\\Yaml\\": "" + "Symfony\\Component\\Translation\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -3243,10 +4153,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Loads and dumps YAML files", + "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v6.4.0" + "source": "https://github.com/symfony/translation/tree/v7.4.8" }, "funding": [ { @@ -3257,42 +4167,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": "2023-11-06T11:00:25+00:00" + "time": "2026-03-24T13:12:05+00:00" }, { - "name": "twig/intl-extra", - "version": "v3.8.0", + "name": "symfony/translation-contracts", + "version": "v3.6.1", "source": { "type": "git", - "url": "https://github.com/twigphp/intl-extra.git", - "reference": "7b3db67c700735f473a265a97e1adaeba3e6ca0c" + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "65a8bc82080447fae78373aa10f8d13b38338977" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/7b3db67c700735f473a265a97e1adaeba3e6ca0c", - "reference": "7b3db67c700735f473a265a97e1adaeba3e6ca0c", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977", + "reference": "65a8bc82080447fae78373aa10f8d13b38338977", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/intl": "^5.4|^6.0|^7.0", - "twig/twig": "^3.0" - }, - "require-dev": { - "symfony/phpunit-bridge": "^6.4|^7.0" + "php": ">=8.1" }, "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, "autoload": { "psr-4": { - "Twig\\Extra\\Intl\\": "" + "Symfony\\Contracts\\Translation\\": "" }, "exclude-from-classmap": [ - "/Tests/" + "/Test/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -3301,190 +4219,902 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com", - "homepage": "http://fabien.potencier.org", - "role": "Lead Developer" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "A Twig extension for Intl", - "homepage": "https://twig.symfony.com", + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", "keywords": [ - "intl", - "twig" + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" ], "support": { - "source": "https://github.com/twigphp/intl-extra/tree/v3.8.0" + "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1" }, "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, { "url": "https://github.com/fabpot", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/twig/twig", + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2023-11-21T17:27:48+00:00" + "time": "2025-07-15T13:41:35+00:00" }, { - "name": "twig/twig", - "version": "v3.8.0", + "name": "symfony/twig-bridge", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/twigphp/Twig.git", - "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d" + "url": "https://github.com/symfony/twig-bridge.git", + "reference": "ac43e7e59298ed1ce98c8d228b651d46e907d02c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", - "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", + "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/ac43e7e59298ed1ce98c8d228b651d46e907d02c", + "reference": "ac43e7e59298ed1ce98c8d228b651d46e907d02c", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3", - "symfony/polyfill-php80": "^1.22" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/translation-contracts": "^2.5|^3", + "twig/twig": "^3.21" + }, + "conflict": { + "phpdocumentor/reflection-docblock": "<5.2|>=7", + "phpdocumentor/type-resolver": "<1.5.1", + "symfony/console": "<6.4", + "symfony/form": "<6.4.32|>7,<7.3.10|>7.4,<7.4.4|>8.0,<8.0.4", + "symfony/http-foundation": "<6.4", + "symfony/http-kernel": "<6.4", + "symfony/mime": "<6.4.36|>7,<7.4.8|>8.0,<8.0.8", + "symfony/serializer": "<6.4", + "symfony/translation": "<6.4", + "symfony/workflow": "<6.4" }, "require-dev": { - "psr/container": "^1.0|^2.0", - "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0" + "egulias/email-validator": "^2.1.10|^3|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^5.2|^6.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.32|~7.3.10|^7.4.4|^8.0.4", + "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.36|^7.4.8|^8.0.8", + "symfony/polyfill-intl-icu": "~1.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": "^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": "library", + "type": "symfony-bridge", "autoload": { "psr-4": { - "Twig\\": "src/" - } + "Symfony\\Bridge\\Twig\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { "name": "Fabien Potencier", - "email": "fabien@symfony.com", - "homepage": "http://fabien.potencier.org", - "role": "Lead Developer" - }, - { - "name": "Twig Team", - "role": "Contributors" + "email": "fabien@symfony.com" }, { - "name": "Armin Ronacher", - "email": "armin.ronacher@active-4.com", - "role": "Project Founder" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Twig, the flexible, fast, and secure template language for PHP", - "homepage": "https://twig.symfony.com", - "keywords": [ - "templating" - ], + "description": "Provides integration for Twig with various Symfony components", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.8.0" + "source": "https://github.com/symfony/twig-bridge/tree/v7.4.8" }, "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, { "url": "https://github.com/fabpot", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/twig/twig", + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2023-11-21T18:54:41+00:00" + "time": "2026-03-30T15:17:09+00:00" }, { - "name": "webmozart/assert", - "version": "1.11.0", + "name": "symfony/var-dumper", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/webmozarts/assert.git", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + "url": "https://github.com/symfony/var-dumper.git", + "reference": "9510c3966f749a1d1ff0059e1eabef6cc621e7fd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/9510c3966f749a1d1ff0059e1eabef6cc621e7fd", + "reference": "9510c3966f749a1d1ff0059e1eabef6cc621e7fd", "shasum": "" }, "require": { - "ext-ctype": "*", - "php": "^7.2 || ^8.0" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<4.6.1 || 4.6.2" + "symfony/console": "<6.4" }, "require-dev": { - "phpunit/phpunit": "^8.5.13" + "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" + ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.10-dev" - } - }, "autoload": { + "files": [ + "Resources/functions/dump.php" + ], "psr-4": { - "Webmozart\\Assert\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v7.4.8" + }, + "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": "2026-03-30T13:44:50+00:00" + }, + { + "name": "symfony/var-exporter", + "version": "v7.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-exporter.git", + "reference": "398907e89a2a56fe426f7955c6fa943ec0c77225" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/398907e89a2a56fe426f7955c6fa943ec0c77225", + "reference": "398907e89a2a56fe426f7955c6fa943ec0c77225", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "require-dev": { + "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": { + "psr-4": { + "Symfony\\Component\\VarExporter\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows exporting any serializable PHP data structure to plain PHP code", + "homepage": "https://symfony.com", + "keywords": [ + "clone", + "construct", + "export", + "hydrate", + "instantiate", + "lazy-loading", + "proxy", + "serialize" + ], + "support": { + "source": "https://github.com/symfony/var-exporter/tree/v7.4.8" + }, + "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": "2026-03-24T13:12:05+00:00" + }, + { + "name": "symfony/yaml", + "version": "v7.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "c58fdf7b3d6c2995368264c49e4e8b05bcff2883" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/c58fdf7b3d6c2995368264c49e4e8b05bcff2883", + "reference": "c58fdf7b3d6c2995368264c49e4e8b05bcff2883", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0|^8.0" + }, + "bin": [ + "Resources/bin/yaml-lint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "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": "Loads and dumps YAML files", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v7.4.8" + }, + "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": "2026-03-24T13:12:05+00:00" + }, + { + "name": "twig/intl-extra", + "version": "v3.24.0", + "source": { + "type": "git", + "url": "https://github.com/twigphp/intl-extra.git", + "reference": "32f15a38d45a8d0ec11bc8a3d97d3ac2a261499f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/32f15a38d45a8d0ec11bc8a3d97d3ac2a261499f", + "reference": "32f15a38d45a8d0ec11bc8a3d97d3ac2a261499f", + "shasum": "" + }, + "require": { + "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" + }, + "type": "library", + "autoload": { + "psr-4": { + "Twig\\Extra\\Intl\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com", + "homepage": "http://fabien.potencier.org", + "role": "Lead Developer" + } + ], + "description": "A Twig extension for Intl", + "homepage": "https://twig.symfony.com", + "keywords": [ + "intl", + "twig" + ], + "support": { + "source": "https://github.com/twigphp/intl-extra/tree/v3.24.0" + }, + "funding": [ + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/twig/twig", + "type": "tidelift" + } + ], + "time": "2026-01-17T13:57:47+00:00" + }, + { + "name": "twig/twig", + "version": "v3.24.0", + "source": { + "type": "git", + "url": "https://github.com/twigphp/Twig.git", + "reference": "a6769aefb305efef849dc25c9fd1653358c148f0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/a6769aefb305efef849dc25c9fd1653358c148f0", + "reference": "a6769aefb305efef849dc25c9fd1653358c148f0", + "shasum": "" + }, + "require": { + "php": ">=8.1.0", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-mbstring": "^1.3" + }, + "require-dev": { + "php-cs-fixer/shim": "^3.0@stable", + "phpstan/phpstan": "^2.0@stable", + "psr/container": "^1.0|^2.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/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com", + "homepage": "http://fabien.potencier.org", + "role": "Lead Developer" + }, + { + "name": "Twig Team", + "role": "Contributors" + }, + { + "name": "Armin Ronacher", + "email": "armin.ronacher@active-4.com", + "role": "Project Founder" + } + ], + "description": "Twig, the flexible, fast, and secure template language for PHP", + "homepage": "https://twig.symfony.com", + "keywords": [ + "templating" + ], + "support": { + "issues": "https://github.com/twigphp/Twig/issues", + "source": "https://github.com/twigphp/Twig/tree/v3.24.0" + }, + "funding": [ + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/twig/twig", + "type": "tidelift" + } + ], + "time": "2026-03-17T21:31:11+00:00" + }, + { + "name": "webmozart/assert", + "version": "2.3.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "eb0d790f735ba6cff25c683a85a1da0eadeff9e4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/eb0d790f735ba6cff25c683a85a1da0eadeff9e4", + "reference": "eb0d790f735ba6cff25c683a85a1da0eadeff9e4", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-date": "*", + "ext-filter": "*", + "php": "^8.2" + }, + "suggest": { + "ext-intl": "", + "ext-simplexml": "", + "ext-spl": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-feature/2-0": "2.0-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" ], "authors": [ { "name": "Bernhard Schussek", "email": "bschussek@gmail.com" + }, + { + "name": "Woody Gilk", + "email": "woody.gilk@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/2.3.0" + }, + "time": "2026-04-11T10:33:05+00:00" + } + ], + "packages-dev": [ + { + "name": "composer-unused/contracts", + "version": "0.3.0", + "source": { + "type": "git", + "url": "https://github.com/composer-unused/contracts.git", + "reference": "5ec448d3ee80735dccad6a21a3266c377d0845ae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer-unused/contracts/zipball/5ec448d3ee80735dccad6a21a3266c377d0845ae", + "reference": "5ec448d3ee80735dccad6a21a3266c377d0845ae", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "ComposerUnused\\Contracts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andreas Frömer", + "email": "composer-unused@icanhazstring.com" + } + ], + "description": "Contract repository for composer-unused", + "support": { + "issues": "https://github.com/composer-unused/contracts/issues", + "source": "https://github.com/composer-unused/contracts/tree/0.3.0" + }, + "funding": [ + { + "url": "https://github.com/icanhazstring", + "type": "github" + } + ], + "time": "2023-03-17T00:41:49+00:00" + }, + { + "name": "composer-unused/symbol-parser", + "version": "0.3.3", + "source": { + "type": "git", + "url": "https://github.com/composer-unused/symbol-parser.git", + "reference": "afa62007cca768bd1ecbc0e8ed347c675c239410" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer-unused/symbol-parser/zipball/afa62007cca768bd1ecbc0e8ed347c675c239410", + "reference": "afa62007cca768bd1ecbc0e8ed347c675c239410", + "shasum": "" + }, + "require": { + "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 || ^8.0" + }, + "require-dev": { + "ergebnis/composer-normalize": "^2.49", + "ext-ds": "*", + "phpstan/phpstan": "^2.1", + "phpunit/phpunit": "^10.5", + "roave/security-advisories": "dev-master", + "squizlabs/php_codesniffer": "^4.0.1", + "symfony/property-access": "^5.4 || ^6.0 || ^7.0 || ^8.0", + "symfony/serializer": "^5.4 || ^6.0 || ^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "ComposerUnused\\SymbolParser\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andreas Frömer", + "email": "composer-unused@icanhazstring.com" + } + ], + "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/composer-unused/symbol-parser/issues", + "source": "https://github.com/composer-unused/symbol-parser" + }, + "funding": [ + { + "url": "https://github.com/sponsors/icanhazstring", + "type": "github" + }, + { + "url": "https://paypal.me/icanhazstring", + "type": "other" + } + ], + "time": "2026-01-29T13:38:57+00:00" + }, + { + "name": "composer/pcre", + "version": "3.3.2", + "source": { + "type": "git", + "url": "https://github.com/composer/pcre.git", + "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e", + "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<1.11.10" + }, + "require-dev": { + "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": { + "psr-4": { + "Composer\\Pcre\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "keywords": [ + "PCRE", + "preg", + "regex", + "regular expression" + ], + "support": { + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.3.2" + }, + "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-11-12T16:29:46+00:00" + }, + { + "name": "composer/xdebug-handler", + "version": "3.0.5", + "source": { + "type": "git", + "url": "https://github.com/composer/xdebug-handler.git", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", + "shasum": "" + }, + "require": { + "composer/pcre": "^1 || ^2 || ^3", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1 || ^2 || ^3" + }, + "require-dev": { + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Composer\\XdebugHandler\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "John Stevenson", + "email": "john-stevenson@blueyonder.co.uk" } ], - "description": "Assertions to validate method input/output with nice error messages.", + "description": "Restarts a process without Xdebug.", "keywords": [ - "assert", - "check", - "validate" + "Xdebug", + "performance" ], "support": { - "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.11.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": "2022-06-03T18:03:27+00:00" - } - ], - "packages-dev": [ + "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": "dealerdirect/phpcodesniffer-composer-installer", - "version": "v1.0.0", + "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/composer-installer.git", - "reference": "4be43904336affa5c2f70744a348312336afd0da" + "reference": "845eb62303d2ca9b289ef216356568ccc075ffd1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da", - "reference": "4be43904336affa5c2f70744a348312336afd0da", + "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/845eb62303d2ca9b289ef216356568ccc075ffd1", + "reference": "845eb62303d2ca9b289ef216356568ccc075ffd1", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0 || ^2.0", + "composer-plugin-api": "^2.2", "php": ">=5.4", - "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" + "squizlabs/php_codesniffer": "^3.1.0 || ^4.0" }, "require-dev": { - "composer/composer": "*", + "composer/composer": "^2.2", "ext-json": "*", "ext-zip": "*", - "php-parallel-lint/php-parallel-lint": "^1.3.1", - "phpcompatibility/php-compatibility": "^9.0", + "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", @@ -3503,9 +5133,9 @@ "authors": [ { "name": "Franck Nijhof", - "email": "franck.nijhof@dealerdirect.com", - "homepage": "http://www.frenck.nl", - "role": "Developer / IT Manager" + "email": "opensource@frenck.dev", + "homepage": "https://frenck.dev", + "role": "Open source developer" }, { "name": "Contributors", @@ -3513,7 +5143,6 @@ } ], "description": "PHP_CodeSniffer Standards Composer Installer Plugin", - "homepage": "http://www.dealerdirect.com", "keywords": [ "PHPCodeSniffer", "PHP_CodeSniffer", @@ -3534,39 +5163,94 @@ ], "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" }, - "time": "2023-01-05T11:28:13+00:00" + "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": "v1.3.1", + "name": "icanhazstring/composer-unused", + "version": "0.9.6", "source": { "type": "git", - "url": "https://github.com/php-gettext/PHP-Scanner.git", - "reference": "989a2cffa1d0f43d13b14c83a50429119b5eb8e4" + "url": "https://github.com/composer-unused/composer-unused.git", + "reference": "c60030af7954a528746dd2180c10b5e0871e84c7" }, "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/composer-unused/zipball/c60030af7954a528746dd2180c10b5e0871e84c7", + "reference": "c60030af7954a528746dd2180c10b5e0871e84c7", "shasum": "" }, "require": { - "gettext/gettext": "^5.5.0", - "nikic/php-parser": "^4.2", - "php": ">=7.2" + "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 || ^8.0", + "symfony/console": "^6.0 || ^7.0 || ^8.0", + "symfony/dependency-injection": "^6.0 || ^7.0 || ^8.0", + "symfony/property-access": "^6.0 || ^7.0 || ^8.0", + "symfony/serializer": "^6.0 || ^7.0 || ^8.0", + "webmozart/assert": "^1.10 || ^2.0", + "webmozart/glob": "^4.4" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.15", - "oscarotero/php-cs-fixer-config": "^1.0", - "phpunit/phpunit": "^8.0", - "squizlabs/php_codesniffer": "^3.0" + "bamarni/composer-bin-plugin": "^1.8", + "codeception/verify": "^3.1", + "dg/bypass-finals": "^1.6", + "ergebnis/composer-normalize": "^2.49", + "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.37", + "phpstan/phpstan-phpunit": "^2.0.12", + "phpunit/phpunit": "^9.6.34", + "roave/security-advisories": "dev-master", + "squizlabs/php_codesniffer": "^3.13" }, + "bin": [ + "bin/composer-unused" + ], "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + } + }, "autoload": { "psr-4": { - "Gettext\\Scanner\\": "src" + "ComposerUnused\\ComposerUnused\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -3575,47 +5259,54 @@ ], "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", + "description": "Show unused packages by scanning your code", + "homepage": "https://github.com/composer-unused/composer-unused", "keywords": [ - "gettext", - "i18n", - "php", - "scanner", - "translation" + "composer", + "php-parser", + "static analysis", + "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/composer-unused/issues", + "source": "https://github.com/composer-unused/composer-unused" }, - "time": "2022-03-18T11:47:55+00:00" + "funding": [ + { + "url": "https://github.com/sponsors/icanhazstring", + "type": "github" + }, + { + "url": "https://paypal.me/icanhazstring", + "type": "other" + } + ], + "time": "2026-01-30T05:52:24+00:00" }, { "name": "mikey179/vfsstream", - "version": "v1.6.11", + "version": "v1.6.12", "source": { "type": "git", "url": "https://github.com/bovigo/vfsStream.git", - "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f" + "reference": "fe695ec993e0a55c3abdda10a9364eb31c6f1bf0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", - "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", + "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/fe695ec993e0a55c3abdda10a9364eb31c6f1bf0", + "reference": "fe695ec993e0a55c3abdda10a9364eb31c6f1bf0", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=7.1.0" }, "require-dev": { - "phpunit/phpunit": "^4.5|^5.0" + "phpunit/phpunit": "^7.5||^8.5||^9.6", + "yoast/phpunit-polyfills": "^2.0" }, "type": "library", "extra": { @@ -3646,20 +5337,20 @@ "source": "https://github.com/bovigo/vfsStream/tree/master", "wiki": "https://github.com/bovigo/vfsStream/wiki" }, - "time": "2022-02-23T02:02:42+00:00" + "time": "2024-08-29T18:43:31+00:00" }, { "name": "myclabs/deep-copy", - "version": "1.11.1", + "version": "1.13.4", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a", "shasum": "" }, "require": { @@ -3667,11 +5358,12 @@ }, "conflict": { "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3,<3.2.2" + "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", @@ -3697,7 +5389,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4" }, "funding": [ { @@ -3705,80 +5397,103 @@ "type": "tidelift" } ], - "time": "2023-03-08T13:26:56+00:00" + "time": "2025-08-01T08:46:24+00:00" }, { - "name": "nikic/php-parser", - "version": "v4.18.0", + "name": "ondram/ci-detector", + "version": "4.2.0", "source": { "type": "git", - "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999" + "url": "https://github.com/OndraM/ci-detector.git", + "reference": "8b0223b5ed235fd377c75fdd1bfcad05c0f168b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999", - "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999", + "url": "https://api.github.com/repos/OndraM/ci-detector/zipball/8b0223b5ed235fd377c75fdd1bfcad05c0f168b8", + "reference": "8b0223b5ed235fd377c75fdd1bfcad05c0f168b8", "shasum": "" }, "require": { - "ext-tokenizer": "*", - "php": ">=7.0" + "php": "^7.4 || ^8.0" }, "require-dev": { - "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" + "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" }, - "bin": [ - "bin/php-parse" - ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.9-dev" - } - }, "autoload": { "psr-4": { - "PhpParser\\": "lib/PhpParser" + "OndraM\\CiDetector\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Nikita Popov" + "name": "Ondřej Machulda", + "email": "ondrej.machulda@gmail.com" } ], - "description": "A PHP parser written in PHP", + "description": "Detect continuous integration environment and provide unified access to properties of current build", "keywords": [ - "parser", - "php" + "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/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0" + "issues": "https://github.com/OndraM/ci-detector/issues", + "source": "https://github.com/OndraM/ci-detector/tree/4.2.0" }, - "time": "2023-12-10T21:03:43+00:00" + "time": "2024-03-12T13:22:30+00:00" }, { "name": "phar-io/manifest", - "version": "2.0.3", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/phar-io/manifest.git", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53" + "reference": "54750ef60c58e43759730615a392c31c80e23176" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53", + "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", @@ -3819,9 +5534,15 @@ "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" }, - "time": "2021-07-20T11:28:43+00:00" + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" }, { "name": "phar-io/version", @@ -3837,121 +5558,325 @@ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", "shasum": "" }, - "require": { - "php": "^7.2 || ^8.0" + "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.2", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpdoc-parser.git", + "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/a004701b11273a26cd7955a61d67a7f1e525a45a", + "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a", + "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.2" + }, + "time": "2026-01-25T14:56:51+00:00" + }, + { + "name": "phpstan/phpstan", + "version": "2.1.47", + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/79015445d8bd79e62b29140f12e5bfced1dcca65", + "reference": "79015445d8bd79e62b29140f12e5bfced1dcca65", + "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": "2026-04-13T15:49:08+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" + ] + } }, - "type": "library", "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "PHPStan\\": "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" - } + "MIT" ], - "description": "Library for handling version information and constraints", + "description": "PHPStan Mockery extension", "support": { - "issues": "https://github.com/phar-io/version/issues", - "source": "https://github.com/phar-io/version/tree/3.2.1" + "issues": "https://github.com/phpstan/phpstan-mockery/issues", + "source": "https://github.com/phpstan/phpstan-mockery/tree/2.0.0" }, - "time": "2022-02-21T01:04:05+00:00" + "time": "2024-10-14T03:18:12+00:00" }, { - "name": "phpstan/phpdoc-parser", - "version": "1.25.0", + "name": "phpstan/phpstan-phpunit", + "version": "2.0.16", "source": { "type": "git", - "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240" + "url": "https://github.com/phpstan/phpstan-phpunit.git", + "reference": "6ab598e1bc106e6827fd346ae4a12b4a5d634c32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bd84b629c8de41aa2ae82c067c955e06f1b00240", - "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240", + "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/6ab598e1bc106e6827fd346ae4a12b4a5d634c32", + "reference": "6ab598e1bc106e6827fd346ae4a12b4a5d634c32", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": "^7.4 || ^8.0", + "phpstan/phpstan": "^2.1.32" + }, + "conflict": { + "phpunit/phpunit": "<7.0" }, "require-dev": { - "doctrine/annotations": "^2.0", - "nikic/php-parser": "^4.15", + "nikic/php-parser": "^5", "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" + "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" + ] + } }, - "type": "library", "autoload": { "psr-4": { - "PHPStan\\PhpDocParser\\": [ - "src/" - ] + "PHPStan\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "PHPDoc parser with support for nullable, intersection and generic types", + "description": "PHPUnit extensions and rules for PHPStan", + "keywords": [ + "static analysis" + ], "support": { - "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.25.0" + "issues": "https://github.com/phpstan/phpstan-phpunit/issues", + "source": "https://github.com/phpstan/phpstan-phpunit/tree/2.0.16" }, - "time": "2024-01-04T17:06:16+00:00" + "time": "2026-02-14T09:05:21+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "10.1.11", + "version": "12.5.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "78c3b7625965c2513ee96569a4dbb62601784145" + "reference": "876099a072646c7745f673d7aeab5382c4439691" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/78c3b7625965c2513ee96569a4dbb62601784145", - "reference": "78c3b7625965c2513ee96569a4dbb62601784145", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/876099a072646c7745f673d7aeab5382c4439691", + "reference": "876099a072646c7745f673d7aeab5382c4439691", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "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" + "nikic/php-parser": "^5.7.0", + "php": ">=8.3", + "phpunit/php-text-template": "^5.0", + "sebastian/complexity": "^5.0", + "sebastian/environment": "^8.0.3", + "sebastian/lines-of-code": "^4.0", + "sebastian/version": "^6.0", + "theseer/tokenizer": "^2.0.1" }, "require-dev": { - "phpunit/phpunit": "^10.1" + "phpunit/phpunit": "^12.5.1" }, "suggest": { "ext-pcov": "PHP extension that provides line coverage", @@ -3960,7 +5885,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "10.1-dev" + "dev-main": "12.5.x-dev" } }, "autoload": { @@ -3989,40 +5914,52 @@ "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" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.5.6" }, "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": "2023-12-21T15:38:30+00:00" + "time": "2026-04-15T08:23:17+00:00" }, { "name": "phpunit/php-file-iterator", - "version": "4.1.0", + "version": "6.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c" + "reference": "3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c", - "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5", + "reference": "3d1cd096ef6bea4bf2762ba586e35dbd317cbfd5", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.3" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "4.0-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -4050,36 +5987,48 @@ "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" + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/6.0.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/phpunit/php-file-iterator", + "type": "tidelift" } ], - "time": "2023-08-31T06:24:48+00:00" + "time": "2026-02-02T14:04:18+00:00" }, { "name": "phpunit/php-invoker", - "version": "4.0.0", + "version": "6.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-invoker.git", - "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7" + "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", - "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406", + "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.3" }, "require-dev": { "ext-pcntl": "*", - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "suggest": { "ext-pcntl": "*" @@ -4087,7 +6036,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "4.0-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -4113,7 +6062,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-invoker/issues", - "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0" + "security": "https://github.com/sebastianbergmann/php-invoker/security/policy", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/6.0.0" }, "funding": [ { @@ -4121,32 +6071,32 @@ "type": "github" } ], - "time": "2023-02-03T06:56:09+00:00" + "time": "2025-02-07T04:58:58+00:00" }, { "name": "phpunit/php-text-template", - "version": "3.0.1", + "version": "5.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748" + "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748", - "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53", + "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.3" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -4173,7 +6123,7 @@ "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" + "source": "https://github.com/sebastianbergmann/php-text-template/tree/5.0.0" }, "funding": [ { @@ -4181,32 +6131,32 @@ "type": "github" } ], - "time": "2023-08-31T14:07:24+00:00" + "time": "2025-02-07T04:59:16+00:00" }, { "name": "phpunit/php-timer", - "version": "6.0.0", + "version": "8.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d" + "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d", - "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc", + "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.3" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "6.0-dev" + "dev-main": "8.0-dev" } }, "autoload": { @@ -4232,7 +6182,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-timer/issues", - "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0" + "security": "https://github.com/sebastianbergmann/php-timer/security/policy", + "source": "https://github.com/sebastianbergmann/php-timer/tree/8.0.0" }, "funding": [ { @@ -4240,20 +6191,20 @@ "type": "github" } ], - "time": "2023-02-03T06:57:52+00:00" + "time": "2025-02-07T04:59:38+00:00" }, { "name": "phpunit/phpunit", - "version": "10.5.8", + "version": "12.5.23", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "08f4fa74d5fbfff1ef22abffee47aaedcaea227e" + "reference": "c54fcf3d6bcb6e96ac2f7e40097dc37b5f139969" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/08f4fa74d5fbfff1ef22abffee47aaedcaea227e", - "reference": "08f4fa74d5fbfff1ef22abffee47aaedcaea227e", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c54fcf3d6bcb6e96ac2f7e40097dc37b5f139969", + "reference": "c54fcf3d6bcb6e96ac2f7e40097dc37b5f139969", "shasum": "" }, "require": { @@ -4263,29 +6214,26 @@ "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" - }, - "suggest": { - "ext-soap": "To be able to generate mocks based on WSDL files" + "myclabs/deep-copy": "^1.13.4", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=8.3", + "phpunit/php-code-coverage": "^12.5.6", + "phpunit/php-file-iterator": "^6.0.1", + "phpunit/php-invoker": "^6.0.0", + "phpunit/php-text-template": "^5.0.0", + "phpunit/php-timer": "^8.0.0", + "sebastian/cli-parser": "^4.2.0", + "sebastian/comparator": "^7.1.6", + "sebastian/diff": "^7.0.0", + "sebastian/environment": "^8.1.0", + "sebastian/exporter": "^7.0.2", + "sebastian/global-state": "^8.0.2", + "sebastian/object-enumerator": "^7.0.0", + "sebastian/recursion-context": "^7.0.1", + "sebastian/type": "^6.0.3", + "sebastian/version": "^6.0.0", + "staabm/side-effects-detector": "^1.0.5" }, "bin": [ "phpunit" @@ -4293,7 +6241,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "10.5-dev" + "dev-main": "12.5-dev" } }, "autoload": { @@ -4325,44 +6273,38 @@ "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.8" + "source": "https://github.com/sebastianbergmann/phpunit/tree/12.5.23" }, "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" + "url": "https://phpunit.de/sponsoring.html", + "type": "other" } ], - "time": "2024-01-19T07:07:27+00:00" + "time": "2026-04-18T06:12:49+00:00" }, { "name": "predis/predis", - "version": "v2.2.2", + "version": "v3.4.2", "source": { "type": "git", "url": "https://github.com/predis/predis.git", - "reference": "b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1" + "reference": "2033429520d8997a7815a2485f56abe6d2d0e075" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/predis/predis/zipball/b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1", - "reference": "b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1", + "url": "https://api.github.com/repos/predis/predis/zipball/2033429520d8997a7815a2485f56abe6d2d0e075", + "reference": "2033429520d8997a7815a2485f56abe6d2d0e075", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "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": { @@ -4385,7 +6327,7 @@ "role": "Maintainer" } ], - "description": "A flexible and feature-complete Redis client for PHP.", + "description": "A flexible and feature-complete Redis/Valkey client for PHP.", "homepage": "http://github.com/predis/predis", "keywords": [ "nosql", @@ -4394,7 +6336,7 @@ ], "support": { "issues": "https://github.com/predis/predis/issues", - "source": "https://github.com/predis/predis/tree/v2.2.2" + "source": "https://github.com/predis/predis/tree/v3.4.2" }, "funding": [ { @@ -4402,32 +6344,32 @@ "type": "github" } ], - "time": "2023-09-13T16:42:03+00:00" + "time": "2026-03-09T20:33:04+00:00" }, { "name": "sebastian/cli-parser", - "version": "2.0.0", + "version": "4.2.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/cli-parser.git", - "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae" + "reference": "90f41072d220e5c40df6e8635f5dafba2d9d4d04" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae", - "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/90f41072d220e5c40df6e8635f5dafba2d9d4d04", + "reference": "90f41072d220e5c40df6e8635f5dafba2d9d4d04", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.3" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.0-dev" + "dev-main": "4.2-dev" } }, "autoload": { @@ -4450,155 +6392,60 @@ "homepage": "https://github.com/sebastianbergmann/cli-parser", "support": { "issues": "https://github.com/sebastianbergmann/cli-parser/issues", - "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0" + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/4.2.0" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" - } - ], - "time": "2023-02-03T06:58:15+00:00" - }, - { - "name": "sebastian/code-unit", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/code-unit.git", - "reference": "a81fee9eef0b7a76af11d121767abc44c104e503" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503", - "reference": "a81fee9eef0b7a76af11d121767abc44c104e503", - "shasum": "" - }, - "require": { - "php": ">=8.1" - }, - "require-dev": { - "phpunit/phpunit": "^10.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "2.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": "Collection of value objects that represent the PHP code units", - "homepage": "https://github.com/sebastianbergmann/code-unit", - "support": { - "issues": "https://github.com/sebastianbergmann/code-unit/issues", - "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0" - }, - "funding": [ + }, { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2023-02-03T06:58:43+00:00" - }, - { - "name": "sebastian/code-unit-reverse-lookup", - "version": "3.0.0", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", - "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", - "shasum": "" - }, - "require": { - "php": ">=8.1" - }, - "require-dev": { - "phpunit/phpunit": "^10.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "3.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, { - "name": "Sebastian Bergmann", - "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/", - "support": { - "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", - "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0" - }, - "funding": [ + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, { - "url": "https://github.com/sebastianbergmann", - "type": "github" + "url": "https://tidelift.com/funding/github/packagist/sebastian/cli-parser", + "type": "tidelift" } ], - "time": "2023-02-03T06:59:15+00:00" + "time": "2025-09-14T09:36:45+00:00" }, { "name": "sebastian/comparator", - "version": "5.0.1", + "version": "7.1.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "2db5010a484d53ebf536087a70b4a5423c102372" + "reference": "c769009dee98f494e0edc3fd4f4087501688f11e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372", - "reference": "2db5010a484d53ebf536087a70b4a5423c102372", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/c769009dee98f494e0edc3fd4f4087501688f11e", + "reference": "c769009dee98f494e0edc3fd4f4087501688f11e", "shasum": "" }, "require": { "ext-dom": "*", "ext-mbstring": "*", - "php": ">=8.1", - "sebastian/diff": "^5.0", - "sebastian/exporter": "^5.0" + "php": ">=8.3", + "sebastian/diff": "^7.0", + "sebastian/exporter": "^7.0" }, "require-dev": { - "phpunit/phpunit": "^10.3" + "phpunit/phpunit": "^12.2" + }, + "suggest": { + "ext-bcmath": "For comparing BcMath\\Number objects" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "5.0-dev" + "dev-main": "7.1-dev" } }, "autoload": { @@ -4638,41 +6485,53 @@ "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" + "source": "https://github.com/sebastianbergmann/comparator/tree/7.1.6" }, "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-08-14T13:18:12+00:00" + "time": "2026-04-14T08:23:15+00:00" }, { "name": "sebastian/complexity", - "version": "3.2.0", + "version": "5.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/complexity.git", - "reference": "68ff824baeae169ec9f2137158ee529584553799" + "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799", - "reference": "68ff824baeae169ec9f2137158ee529584553799", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb", + "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb", "shasum": "" }, "require": { - "nikic/php-parser": "^4.18 || ^5.0", - "php": ">=8.1" + "nikic/php-parser": "^5.0", + "php": ">=8.3" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.2-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -4696,7 +6555,7 @@ "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" + "source": "https://github.com/sebastianbergmann/complexity/tree/5.0.0" }, "funding": [ { @@ -4704,33 +6563,33 @@ "type": "github" } ], - "time": "2023-12-21T08:37:17+00:00" + "time": "2025-02-07T04:55:25+00:00" }, { "name": "sebastian/diff", - "version": "5.1.0", + "version": "7.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f" + "reference": "7ab1ea946c012266ca32390913653d844ecd085f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/fbf413a49e54f6b9b17e12d900ac7f6101591b7f", - "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f", + "reference": "7ab1ea946c012266ca32390913653d844ecd085f", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.3" }, "require-dev": { - "phpunit/phpunit": "^10.0", - "symfony/process": "^4.2 || ^5" + "phpunit/phpunit": "^12.0", + "symfony/process": "^7.2" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "5.1-dev" + "dev-main": "7.0-dev" } }, "autoload": { @@ -4763,7 +6622,7 @@ "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" + "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0" }, "funding": [ { @@ -4771,27 +6630,27 @@ "type": "github" } ], - "time": "2023-12-22T10:55:06+00:00" + "time": "2025-02-07T04:55:46+00:00" }, { "name": "sebastian/environment", - "version": "6.0.1", + "version": "8.1.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951" + "reference": "b121608b28a13f721e76ffbbd386d08eff58f3f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951", - "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/b121608b28a13f721e76ffbbd386d08eff58f3f6", + "reference": "b121608b28a13f721e76ffbbd386d08eff58f3f6", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.3" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "suggest": { "ext-posix": "*" @@ -4799,7 +6658,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "6.0-dev" + "dev-main": "8.1-dev" } }, "autoload": { @@ -4827,42 +6686,54 @@ "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" + "source": "https://github.com/sebastianbergmann/environment/tree/8.1.0" }, "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-04-11T05:39:26+00:00" + "time": "2026-04-15T12:13:01+00:00" }, { "name": "sebastian/exporter", - "version": "5.1.1", + "version": "7.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc" + "reference": "016951ae10980765e4e7aee491eb288c64e505b7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/64f51654862e0f5e318db7e9dcc2292c63cdbddc", - "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/016951ae10980765e4e7aee491eb288c64e505b7", + "reference": "016951ae10980765e4e7aee491eb288c64e505b7", "shasum": "" }, "require": { "ext-mbstring": "*", - "php": ">=8.1", - "sebastian/recursion-context": "^5.0" + "php": ">=8.3", + "sebastian/recursion-context": "^7.0" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "5.1-dev" + "dev-main": "7.0-dev" } }, "autoload": { @@ -4905,43 +6776,55 @@ "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" + "source": "https://github.com/sebastianbergmann/exporter/tree/7.0.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-09-24T13:22:09+00:00" + "time": "2025-09-24T06:16:11+00:00" }, { "name": "sebastian/global-state", - "version": "6.0.1", + "version": "8.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4" + "reference": "ef1377171613d09edd25b7816f05be8313f9115d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/7ea9ead78f6d380d2a667864c132c2f7b83055e4", - "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/ef1377171613d09edd25b7816f05be8313f9115d", + "reference": "ef1377171613d09edd25b7816f05be8313f9115d", "shasum": "" }, "require": { - "php": ">=8.1", - "sebastian/object-reflector": "^3.0", - "sebastian/recursion-context": "^5.0" + "php": ">=8.3", + "sebastian/object-reflector": "^5.0", + "sebastian/recursion-context": "^7.0" }, "require-dev": { "ext-dom": "*", - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "6.0-dev" + "dev-main": "8.0-dev" } }, "autoload": { @@ -4960,48 +6843,60 @@ } ], "description": "Snapshotting of global state", - "homepage": "http://www.github.com/sebastianbergmann/global-state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", "keywords": [ "global state" ], "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" + "source": "https://github.com/sebastianbergmann/global-state/tree/8.0.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/global-state", + "type": "tidelift" } ], - "time": "2023-07-19T07:19:23+00:00" + "time": "2025-08-29T11:29:25+00:00" }, { "name": "sebastian/lines-of-code", - "version": "2.0.2", + "version": "4.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/lines-of-code.git", - "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0" + "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0", - "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f", + "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f", "shasum": "" }, "require": { - "nikic/php-parser": "^4.18 || ^5.0", - "php": ">=8.1" + "nikic/php-parser": "^5.0", + "php": ">=8.3" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.0-dev" + "dev-main": "4.0-dev" } }, "autoload": { @@ -5025,7 +6920,7 @@ "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" + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/4.0.0" }, "funding": [ { @@ -5033,34 +6928,34 @@ "type": "github" } ], - "time": "2023-12-21T08:38:20+00:00" + "time": "2025-02-07T04:57:28+00:00" }, { "name": "sebastian/object-enumerator", - "version": "5.0.0", + "version": "7.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906" + "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906", - "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894", + "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894", "shasum": "" }, "require": { - "php": ">=8.1", - "sebastian/object-reflector": "^3.0", - "sebastian/recursion-context": "^5.0" + "php": ">=8.3", + "sebastian/object-reflector": "^5.0", + "sebastian/recursion-context": "^7.0" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "5.0-dev" + "dev-main": "7.0-dev" } }, "autoload": { @@ -5082,7 +6977,8 @@ "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" + "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/7.0.0" }, "funding": [ { @@ -5090,32 +6986,32 @@ "type": "github" } ], - "time": "2023-02-03T07:08:32+00:00" + "time": "2025-02-07T04:57:48+00:00" }, { "name": "sebastian/object-reflector", - "version": "3.0.0", + "version": "5.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "24ed13d98130f0e7122df55d06c5c4942a577957" + "reference": "4bfa827c969c98be1e527abd576533293c634f6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957", - "reference": "24ed13d98130f0e7122df55d06c5c4942a577957", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a", + "reference": "4bfa827c969c98be1e527abd576533293c634f6a", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.3" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.0-dev" + "dev-main": "5.0-dev" } }, "autoload": { @@ -5137,7 +7033,8 @@ "homepage": "https://github.com/sebastianbergmann/object-reflector/", "support": { "issues": "https://github.com/sebastianbergmann/object-reflector/issues", - "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0" + "security": "https://github.com/sebastianbergmann/object-reflector/security/policy", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/5.0.0" }, "funding": [ { @@ -5145,32 +7042,32 @@ "type": "github" } ], - "time": "2023-02-03T07:06:18+00:00" + "time": "2025-02-07T04:58:17+00:00" }, { "name": "sebastian/recursion-context", - "version": "5.0.0", + "version": "7.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "05909fb5bc7df4c52992396d0116aed689f93712" + "reference": "0b01998a7d5b1f122911a66bebcb8d46f0c82d8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712", - "reference": "05909fb5bc7df4c52992396d0116aed689f93712", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/0b01998a7d5b1f122911a66bebcb8d46f0c82d8c", + "reference": "0b01998a7d5b1f122911a66bebcb8d46f0c82d8c", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.3" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "5.0-dev" + "dev-main": "7.0-dev" } }, "autoload": { @@ -5200,40 +7097,53 @@ "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" + "security": "https://github.com/sebastianbergmann/recursion-context/security/policy", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/7.0.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/recursion-context", + "type": "tidelift" } ], - "time": "2023-02-03T07:05:40+00:00" + "time": "2025-08-13T04:44:59+00:00" }, { "name": "sebastian/type", - "version": "4.0.0", + "version": "6.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/type.git", - "reference": "462699a16464c3944eefc02ebdd77882bd3925bf" + "reference": "e549163b9760b8f71f191651d22acf32d56d6d4d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf", - "reference": "462699a16464c3944eefc02ebdd77882bd3925bf", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/e549163b9760b8f71f191651d22acf32d56d6d4d", + "reference": "e549163b9760b8f71f191651d22acf32d56d6d4d", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.3" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^12.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "4.0-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -5256,37 +7166,50 @@ "homepage": "https://github.com/sebastianbergmann/type", "support": { "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/4.0.0" + "security": "https://github.com/sebastianbergmann/type/security/policy", + "source": "https://github.com/sebastianbergmann/type/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/type", + "type": "tidelift" } ], - "time": "2023-02-03T07:10:45+00:00" + "time": "2025-08-09T06:57:12+00:00" }, { "name": "sebastian/version", - "version": "4.0.1", + "version": "6.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/version.git", - "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17" + "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17", - "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c", + "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.3" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "4.0-dev" + "dev-main": "6.0-dev" } }, "autoload": { @@ -5309,7 +7232,8 @@ "homepage": "https://github.com/sebastianbergmann/version", "support": { "issues": "https://github.com/sebastianbergmann/version/issues", - "source": "https://github.com/sebastianbergmann/version/tree/4.0.1" + "security": "https://github.com/sebastianbergmann/version/security/policy", + "source": "https://github.com/sebastianbergmann/version/tree/6.0.0" }, "funding": [ { @@ -5317,41 +7241,44 @@ "type": "github" } ], - "time": "2023-02-07T11:34:05+00:00" + "time": "2025-02-07T05:00:38+00:00" }, { - "name": "simplesamlphp/simplesamlphp-module-adfs", - "version": "v2.1.3", + "name": "simplesamlphp/simplesamlphp-test-framework", + "version": "v1.11.5", "source": { "type": "git", - "url": "https://github.com/simplesamlphp/simplesamlphp-module-adfs.git", - "reference": "59368e58fc5548e8b6bb75c102c5a3242722e22b" + "url": "https://github.com/simplesamlphp/simplesamlphp-test-framework.git", + "reference": "ff0f2e0cc856fc8b5ef7a427c7caead772740c1a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-adfs/zipball/59368e58fc5548e8b6bb75c102c5a3242722e22b", - "reference": "59368e58fc5548e8b6bb75c102c5a3242722e22b", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-test-framework/zipball/ff0f2e0cc856fc8b5ef7a427c7caead772740c1a", + "reference": "ff0f2e0cc856fc8b5ef7a427c7caead772740c1a", "shasum": "" }, "require": { - "php": "^8.0", - "simplesamlphp/assert": "^1.0", - "simplesamlphp/composer-module-installer": "^1.3.2", - "simplesamlphp/xml-security": "^1.6" + "ext-curl": "*", + "icanhazstring/composer-unused": "^0.9", + "php": "^8.3", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^12.3 || ^13.0", + "psr/log": "^3.0", + "slevomat/coding-standard": "^8.25", + "squizlabs/php_codesniffer": "^4.0", + "symfony/phpunit-bridge": "^8.0", + "twig/twig": "~3.23" }, "require-dev": { - "simplesamlphp/simplesamlphp": "^3@dev", - "simplesamlphp/simplesamlphp-test-framework": "^1.5.4" - }, - "type": "simplesamlphp-module", - "extra": { - "branch-alias": { - "dev-master": "2.1.x-dev" - } + "simplesamlphp/simplesamlphp": "^2.5" }, + "type": "project", "autoload": { "psr-4": { - "SimpleSAML\\Module\\adfs\\": "src/" + "SimpleSAML\\TestUtils\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -5364,389 +7291,681 @@ "email": "tvdijen@gmail.com" } ], - "description": "A module that implements the WS-federation IDP", + "description": "Test framework for SimpleSAMLphp and related repositories ", "keywords": [ - "adfs", - "simplesamlphp" + "test-framework" ], "support": { - "issues": "https://github.com/simplesamlphp/simplesamlphp-module-adfs/issues", - "source": "https://github.com/simplesamlphp/simplesamlphp-module-adfs" + "issues": "https://github.com/simplesamlphp/simplesamlphp-test-framework/issues", + "source": "https://github.com/simplesamlphp/simplesamlphp-test-framework" }, - "time": "2023-11-26T09:54:31+00:00" + "time": "2026-04-10T08:17:57+00:00" }, { - "name": "simplesamlphp/simplesamlphp-test-framework", - "version": "v1.5.10", + "name": "slevomat/coding-standard", + "version": "8.28.1", "source": { "type": "git", - "url": "https://github.com/simplesamlphp/simplesamlphp-test-framework.git", - "reference": "58a0dc88216b7f7bb51da62a7174d646ba526129" + "url": "https://github.com/slevomat/coding-standard.git", + "reference": "66151cfbd25b50e8becd9f809fb704f01fd4d6f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-test-framework/zipball/58a0dc88216b7f7bb51da62a7174d646ba526129", - "reference": "58a0dc88216b7f7bb51da62a7174d646ba526129", + "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/66151cfbd25b50e8becd9f809fb704f01fd4d6f2", + "reference": "66151cfbd25b50e8becd9f809fb704f01fd4d6f2", "shasum": "" }, "require": { - "phpunit/phpunit": "^9.6 || ^10.0", - "slevomat/coding-standard": "^8.14" + "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.2.0", + "php": "^7.4 || ^8.0", + "phpstan/phpdoc-parser": "^2.3.2", + "squizlabs/php_codesniffer": "^4.0.1" }, "require-dev": { - "ext-curl": "*", - "php": "^8.0", - "simplesamlphp/simplesamlphp": "^2.0.0" + "phing/phing": "3.0.1|3.1.2", + "php-parallel-lint/php-parallel-lint": "1.4.0", + "phpstan/phpstan": "2.1.42", + "phpstan/phpstan-deprecation-rules": "2.0.4", + "phpstan/phpstan-phpunit": "2.0.16", + "phpstan/phpstan-strict-rules": "2.0.10", + "phpunit/phpunit": "9.6.34|10.5.63|11.4.4|11.5.50|12.5.14" + }, + "type": "phpcodesniffer-standard", + "extra": { + "branch-alias": { + "dev-master": "8.x-dev" + } }, - "type": "project", "autoload": { "psr-4": { - "SimpleSAML\\TestUtils\\": "lib/" + "SlevomatCodingStandard\\": "SlevomatCodingStandard/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "MIT" + ], + "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", + "keywords": [ + "dev", + "phpcs" + ], + "support": { + "issues": "https://github.com/slevomat/coding-standard/issues", + "source": "https://github.com/slevomat/coding-standard/tree/8.28.1" + }, + "funding": [ + { + "url": "https://github.com/kukulich", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard", + "type": "tidelift" + } + ], + "time": "2026-03-22T17:22:38+00:00" + }, + { + "name": "squizlabs/php_codesniffer", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", + "reference": "0525c73950de35ded110cffafb9892946d7771b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/0525c73950de35ded110cffafb9892946d7771b5", + "reference": "0525c73950de35ded110cffafb9892946d7771b5", + "shasum": "" + }, + "require": { + "ext-simplexml": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": ">=7.2.0" + }, + "require-dev": { + "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", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" ], "authors": [ { - "name": "Tim van Dijen", - "email": "tvdijen@gmail.com" + "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": "Test framework for SimpleSAMLphp and related repositories ", + "description": "PHP_CodeSniffer tokenizes PHP files and detects violations of a defined set of coding standards.", + "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer", "keywords": [ - "test-framework" + "phpcs", + "standards", + "static analysis" ], "support": { - "issues": "https://github.com/simplesamlphp/simplesamlphp-test-framework/issues", - "source": "https://github.com/simplesamlphp/simplesamlphp-test-framework" + "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/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-10T16:43:36+00:00" + }, + { + "name": "staabm/side-effects-detector", + "version": "1.0.5", + "source": { + "type": "git", + "url": "https://github.com/staabm/side-effects-detector.git", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "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" }, - "time": "2024-01-11T18:12:00+00:00" + "type": "library", + "autoload": { + "classmap": [ + "lib/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A static analysis tool to detect side effects in PHP code", + "keywords": [ + "static analysis" + ], + "support": { + "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/staabm", + "type": "github" + } + ], + "time": "2024-10-20T05:08:20+00:00" }, { - "name": "simplesamlphp/xml-common", - "version": "v1.14.2", + "name": "symfony/phpunit-bridge", + "version": "v8.0.8", "source": { "type": "git", - "url": "https://github.com/simplesamlphp/xml-common.git", - "reference": "ed99739e4e5b75587c6b3b0e80ce940825560a17" + "url": "https://github.com/symfony/phpunit-bridge.git", + "reference": "723ea96810135e776110bddb25aeb32b462134c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/xml-common/zipball/ed99739e4e5b75587c6b3b0e80ce940825560a17", - "reference": "ed99739e4e5b75587c6b3b0e80ce940825560a17", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/723ea96810135e776110bddb25aeb32b462134c8", + "reference": "723ea96810135e776110bddb25aeb32b462134c8", "shasum": "" }, "require": { - "ext-date": "*", - "ext-dom": "*", - "ext-libxml": "*", - "ext-pcre": "*", - "ext-spl": "*", - "ext-xmlreader": "*", - "php": "^8.1", - "simplesamlphp/assert": "^1.0" + "php": ">=8.1.0" }, "require-dev": { - "simplesamlphp/simplesamlphp-test-framework": "^1.5" + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.4.3|^7.0.3|^8.0" + }, + "bin": [ + "bin/simple-phpunit" + ], + "type": "symfony-bridge", + "extra": { + "thanks": { + "url": "https://github.com/sebastianbergmann/phpunit", + "name": "phpunit/phpunit" + } }, - "type": "project", "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "SimpleSAML\\XML\\": "src/" + "Symfony\\Bridge\\PhpUnit\\": "" + }, + "exclude-from-classmap": [ + "/Tests/", + "/bin/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides utilities for PHPUnit, especially user deprecation notices management", + "homepage": "https://symfony.com", + "keywords": [ + "testing" + ], + "support": { + "source": "https://github.com/symfony/phpunit-bridge/tree/v8.0.8" + }, + "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": "2026-03-30T15:14:47+00:00" + }, + { + "name": "symfony/polyfill-php84", + "version": "v1.35.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php84.git", + "reference": "88486db2c389b290bf87ff1de7ebc1e13e42bb06" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/88486db2c389b290bf87ff1de7ebc1e13e42bb06", + "reference": "88486db2c389b290bf87ff1de7ebc1e13e42bb06", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" } }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php84\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "MIT" ], "authors": [ { - "name": "Jaime Perez", - "email": "jaime.perez@uninett.no" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { - "name": "Tim van Dijen", - "email": "tvdijen@gmail.com" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "A library with classes and utilities for handling XML structures.", - "homepage": "http://simplesamlphp.org", + "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions", + "homepage": "https://symfony.com", "keywords": [ - "saml", - "xml" + "compatibility", + "polyfill", + "portable", + "shim" ], "support": { - "issues": "https://github.com/simplesamlphp/xml-common/issues", - "source": "https://github.com/simplesamlphp/xml-common" + "source": "https://github.com/symfony/polyfill-php84/tree/v1.35.0" }, - "time": "2023-12-26T16:13:56+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": "2026-04-10T18:47:49+00:00" }, { - "name": "simplesamlphp/xml-security", - "version": "v1.7.0", + "name": "symfony/property-access", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/simplesamlphp/xml-security.git", - "reference": "5a07d07128a897c89fab2ec4213cd538e0763a91" + "url": "https://github.com/symfony/property-access.git", + "reference": "b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/xml-security/zipball/5a07d07128a897c89fab2ec4213cd538e0763a91", - "reference": "5a07d07128a897c89fab2ec4213cd538e0763a91", + "url": "https://api.github.com/repos/symfony/property-access/zipball/b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc", + "reference": "b7dad9dae8b8a47ef7ecc76c8569e7d8c7d90cfc", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-hash": "*", - "ext-mbstring": "*", - "ext-openssl": "*", - "ext-pcre": "*", - "ext-spl": "*", - "php": "^8.1", - "simplesamlphp/assert": "^1.0", - "simplesamlphp/xml-common": "^1.13" + "php": ">=8.2", + "symfony/property-info": "^6.4.32|~7.3.10|^7.4.4|^8.0.4" }, "require-dev": { - "simplesamlphp/simplesamlphp-test-framework": "^1.5" + "symfony/cache": "^6.4|^7.0|^8.0", + "symfony/var-exporter": "^6.4.1|^7.0.1|^8.0" }, "type": "library", "autoload": { "psr-4": { - "SimpleSAML\\XMLSecurity\\": "src/" - } + "Symfony\\Component\\PropertyAccess\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "MIT" ], "authors": [ { - "name": "Jaime Perez Crespo", - "email": "jaime.perez@uninett.no", - "role": "Maintainer" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Tim van Dijen", - "email": "tvdijen@gmail.com", - "role": "Maintainer" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "SimpleSAMLphp library for XML Security", - "homepage": "https://github.com/simplesamlphp/xml-security", + "description": "Provides functions to read and write from/to an object or array using a simple string notation", + "homepage": "https://symfony.com", "keywords": [ - "security", - "signature", - "xml", - "xmldsig" + "access", + "array", + "extraction", + "index", + "injection", + "object", + "property", + "property-path", + "reflection" ], "support": { - "issues": "https://github.com/simplesamlphp/xml-security/issues", - "source": "https://github.com/simplesamlphp/xml-security/tree/v1.7.0" + "source": "https://github.com/symfony/property-access/tree/v7.4.8" }, - "time": "2023-12-14T20:25:08+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": "2026-03-24T13:12:05+00:00" }, { - "name": "slevomat/coding-standard", - "version": "8.14.1", + "name": "symfony/property-info", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/slevomat/coding-standard.git", - "reference": "fea1fd6f137cc84f9cba0ae30d549615dbc6a926" + "url": "https://github.com/symfony/property-info.git", + "reference": "ac5e82528b986c4f7cfccbf7764b5d2e824d6175" }, "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/ac5e82528b986c4f7cfccbf7764b5d2e824d6175", + "reference": "ac5e82528b986c4f7cfccbf7764b5d2e824d6175", "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.4.7|^8.0.7" }, - "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|>=7", + "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|^6.0", + "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.8" }, "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": "2026-03-24T13:12:05+00:00" }, { - "name": "squizlabs/php_codesniffer", - "version": "3.8.1", + "name": "symfony/serializer", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "14f5fff1e64118595db5408e946f3a22c75807f7" + "url": "https://github.com/symfony/serializer.git", + "reference": "006fd51717addf2df2bd1a64dafef6b7fab6b455" }, "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/006fd51717addf2df2bd1a64dafef6b7fab6b455", + "reference": "006fd51717addf2df2bd1a64dafef6b7fab6b455", "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": "<5.2|>=7", + "phpdocumentor/type-resolver": "<1.5.1", + "symfony/dependency-injection": "<6.4", + "symfony/property-access": "<6.4", + "symfony/property-info": "<6.4", + "symfony/type-info": "<7.2.5", + "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": "^5.2|^6.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.2.5|^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.8" }, "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": "2026-03-30T21:34:42+00:00" }, { - "name": "symfony/translation", - "version": "v6.4.2", + "name": "symfony/type-info", + "version": "v7.4.8", "source": { "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "a2ab2ec1a462e53016de8e8d5e8912bfd62ea681" + "url": "https://github.com/symfony/type-info.git", + "reference": "6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/a2ab2ec1a462e53016de8e8d5e8912bfd62ea681", - "reference": "a2ab2ec1a462e53016de8e8d5e8912bfd62ea681", + "url": "https://api.github.com/repos/symfony/type-info/zipball/6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd", + "reference": "6bf34da885ff5143a3dfd8f1b863bb8ab95f50bd", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/translation-contracts": "^2.5|^3.0" + "php": ">=8.2", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" }, "conflict": { - "symfony/config": "<5.4", - "symfony/console": "<5.4", - "symfony/dependency-injection": "<5.4", - "symfony/http-client-contracts": "<2.5", - "symfony/http-kernel": "<5.4", - "symfony/service-contracts": "<2.5", - "symfony/twig-bundle": "<5.4", - "symfony/yaml": "<5.4" - }, - "provide": { - "symfony/translation-implementation": "2.3|3.0" + "phpstan/phpdoc-parser": "<1.30" }, "require-dev": { - "nikic/php-parser": "^4.13", - "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/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/polyfill-intl-icu": "^1.21", - "symfony/routing": "^5.4|^6.0|^7.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/yaml": "^5.4|^6.0|^7.0" + "phpstan/phpdoc-parser": "^1.30|^2.0" }, "type": "library", "autoload": { - "files": [ - "Resources/functions.php" - ], "psr-4": { - "Symfony\\Component\\Translation\\": "" + "Symfony\\Component\\TypeInfo\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -5758,18 +7977,28 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "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": "Provides tools to internationalize your application", + "description": "Extracts PHP types information.", "homepage": "https://symfony.com", + "keywords": [ + "PHPStan", + "phpdoc", + "symfony", + "type" + ], "support": { - "source": "https://github.com/symfony/translation/tree/v6.4.2" + "source": "https://github.com/symfony/type-info/tree/v7.4.8" }, "funding": [ { @@ -5780,32 +8009,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-18T09:25:29+00:00" + "time": "2026-03-24T13:12:05+00:00" }, { "name": "theseer/tokenizer", - "version": "1.2.2", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96" + "reference": "7989e43bf381af0eac72e4f0ca5bcbfa81658be4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96", - "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/7989e43bf381af0eac72e4f0ca5bcbfa81658be4", + "reference": "7989e43bf381af0eac72e4f0ca5bcbfa81658be4", "shasum": "" }, "require": { "ext-dom": "*", "ext-tokenizer": "*", "ext-xmlwriter": "*", - "php": "^7.2 || ^8.0" + "php": "^8.1" }, "type": "library", "autoload": { @@ -5827,7 +8060,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/2.0.1" }, "funding": [ { @@ -5835,31 +8068,86 @@ "type": "github" } ], - "time": "2023-11-20T00:12:19+00:00" + "time": "2025-12-08T11:19:18+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": [], + "stability-flags": { + "simplesamlphp/simplesamlphp-test-framework": 20 + }, "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": "^8.1", + "php": "^8.3", "ext-date": "*", "ext-dom": "*", + "ext-fileinfo": "*", + "ext-filter": "*", "ext-hash": "*", "ext-json": "*", + "ext-libxml": "*", "ext-mbstring": "*", "ext-openssl": "*", "ext-pcre": "*", "ext-session": "*", "ext-simplexml": "*", "ext-spl": "*", - "ext-zlib": "*" + "ext-zlib": "*", + "composer-runtime-api": "^2.2" }, "platform-dev": { "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 f47d0eb9b9..3fb78ff2d1 100644 --- a/config/config.php.dist +++ b/config/config.php.dist @@ -58,7 +58,7 @@ $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. @@ -149,23 +149,18 @@ $config = [ 'username' => 'user@example.org', // optional: if set, enables smtp authentication 'password' => 'password', // optional: if set, enables smtp authentication 'security' => 'tls', // optional: defaults to no smtp security + 'sender' => 'no-reply@example.org', // optional: (envelope) from address 'smtpOptions' => [], // optional: passed to stream_context_create when connecting via SMTP ], // sendmail mail transport options /* 'mail.transport.options' => [ - 'path' => '/usr/sbin/sendmail' // optional: defaults to php.ini path + 'path' => '/usr/sbin/sendmail', // optional: defaults to php.ini path + 'sender' => 'no-reply@example.org' // optional: (envelope) from address ], */ - /* - * The envelope from address for outgoing emails. - * This should be in a domain that has your application's IP addresses in its SPF record - * to prevent it from being rejected by mail filters. - */ - //'sendmail_from' => 'no-reply@example.org', - /* * The timezone of the server. This option should be set to the timezone you want * SimpleSAMLphp to report the time in. The default is to guess the timezone based @@ -188,6 +183,11 @@ $config = [ * * A possible way to generate a random salt is by running the following command from a unix shell: * LC_ALL=C tr -c -d '0123456789abcdefghijklmnopqrstuvwxyz' /dev/null;echo + * + * If you alter this value on a live system then your old admin-password will + * no longer work if you have a hashed password. If you use persistent NameIDs + * they will be different and also subject-id / pairwise-id will change. + * It will also invalidate all sessions. */ 'secretsalt' => 'defaultsecretsalt', @@ -196,6 +196,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', @@ -277,7 +281,17 @@ $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'", + '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', @@ -448,10 +462,13 @@ $config = [ ***********************/ /* + * @DEPRECATED: set your proxy using environment variables. + * @see: https://symfony.com/doc/current/http_client.html#http-proxies + * * Proxy to use for retrieving URLs. * * Example: - * 'proxy' => 'tcp://proxy.example.com:5100' + * 'proxy' => 'http://proxy.example.com:5100' */ 'proxy' => null, @@ -545,24 +562,32 @@ $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' => [ - 'exampleauth' => false, 'core' => true, 'admin' => true, - 'saml' => true + 'saml' => true, ], + /************************************* + | POST/REDIRECT UI CONFIGURATION | + *************************************/ + + /* + * Delay (in milliseconds) before revealing the slow-post message on the auto-submit POST page. + * If unset, defaults to 30000 ms. Negative values are coerced to 30000. + * Set to 0 to reveal immediately. + */ + //'slow_post_delay_ms' => 30000, /************************* | SESSION CONFIGURATION | @@ -821,7 +846,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'], @@ -897,6 +922,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 @@ -914,6 +947,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. @@ -993,12 +1039,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. */ @@ -1133,6 +1173,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-authproc.md b/docs/simplesamlphp-authproc.md index 78f2f28fa8..682c459f23 100644 --- a/docs/simplesamlphp-authproc.md +++ b/docs/simplesamlphp-authproc.md @@ -130,7 +130,9 @@ The code must return either `true` to run the filter, or `false` to skip it. The following filters are included in the SimpleSAMLphp distribution: * [`core:AttributeAdd`](./core:authproc_attributeadd): Add attributes to the response. +* [`core:AttributeConditionalAdd`](./core:authproc_attributeconditionaladd): Add attributes to the response if certain conditions are met. * [`core:AttributeCopy`](./core:authproc_attributecopy): Copy existing attributes to the response. +* [`core:AttributeDump`](./core:authproc_attributedump): Dump attribute values to the log file. * [`core:AttributeAlter`](./core:authproc_attributealter): Do search-and-replace on attributevalues. * [`core:AttributeLimit`](./core:authproc_attributelimit): Limit the attributes in the response. * [`core:AttributeMap`](./core:authproc_attributemap): Change the name of the attributes. diff --git a/docs/simplesamlphp-changelog-1.x.md b/docs/simplesamlphp-changelog-1.x.md index d372b377e9..6fad58eb04 100644 --- a/docs/simplesamlphp-changelog-1.x.md +++ b/docs/simplesamlphp-changelog-1.x.md @@ -5,6 +5,24 @@ This document lists the changes between versions of SimpleSAMLphp. See the upgrade notes for specific information about upgrading. +## Version 1.19.8 + +Released 2-3-2023 + +* Dependencies have been bumped (CVE-2022-24894) + +## Version 1.19.7 + +Released 5-12-2022 + +* Backported fix to error report page (#1637) +* Many doc fixes +* Fixed the handling of SAML AttributeQuery and SOAP-binding (#314 @ saml2) +* Fixed serialization of complex AttributeValue structures +* Bump composer + npm dependencies (includes a fix for CVE-2022-39261) +* Many updated translations +* Handle ETag/If-None-Match logic (#1672 + #1673) + ## Version 1.19.6 Released 2022-07-01 diff --git a/docs/simplesamlphp-changelog.md b/docs/simplesamlphp-changelog.md index ab54cdefd0..cf4716af04 100644 --- a/docs/simplesamlphp-changelog.md +++ b/docs/simplesamlphp-changelog.md @@ -3,19 +3,427 @@ [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.2.0 +## Version 2.5.1 Released TBD +* Fix missing trackid error in debugsp-module + +`metarefresh` + +* Fix compatibility with SSP 2.5 (v1.3.1) + +## Version 2.5.0 + +Released 2026-03-14 + +* Add ProfileAuth authsource (#2499) +* Ukrainian translation for simplesamlphp (#2501) +* Use PSR-14 events to replace hook infrastructure (#2560) +* Add regular expression support to AttributeValueMap authproc filter (#2558) +* Replaced several uses of guzzlehttp and curl with Symfony's HTTP-client (#2574) +* Many small improvements to code and documentation + +`authorize` + +* Add entityID based filtering (simplesamlphp/simplesamlphp-module-authorize#30) (v1.7.0) + +`discopower` + +* Add Italian translations (simplesamlphp/simplesamlphp-module-discopower#22) (v1.5.0) +* Make tab-names case-insensitive (v1.5.1) + +`ldap` + +* Verify attribute value is a string before calling strlen (simplesamlphp/simplesamlphp-module-ldap#64) (v2.5.2) + +`radius` + +* Always set the NAS identifier; if not set fall back to the hostname (simplesamlphp/simplesamlphp-module-radius#28) (v2.1.1) + +## Version 2.4.3 + +Released 2025-10-06 + +* 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) +* Add 'login_hint' and 'LoginHint' as additional supported username hints from SPs in HTTP parameters (#2609) + +`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 2025-03-11 + +* 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 TBD +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 @@ -51,9 +459,6 @@ Released 2023-10-30 * 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) - -### Chores - * The custom error- and exception handlers were moved to their very own classes (#1858) ## Version 2.0.8 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..ba084594ec --- /dev/null +++ b/docs/simplesamlphp-developer-information.md @@ -0,0 +1,233 @@ +# 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. + +## Branches + +There will be a `master` branch, a `current-release-branch`, and a +`next-release-branch`. As at March 2026 these might be `2.5` and `2.6` +for current and next release. + +New code will mostly go into the `master` branch. This can then be +replicated into the `current-release-branch` with the following +(assuming 2.5 is the current release). + +```bash +# After some commits have been added to master intended for v2.5.*... +git checkout simplesamlphp-2.5 +git merge master +``` + +New code that the project does not want in the +`current-release-branch` should be committed directly into the +`next-release-branch`. In this example the 2.6 release will be the +target of that merge or PR. + +Periodically the `next-release-branch` will want to bring in changes +from `master` (and thus from the `current-release-branch`). This can +be done by merging master into the `next-release-branch` as shown +below. This might require conflicts between master and the new code in +`next-release-branch` to be resolved. The more frequently the merge is +performed the less work will be required each time. + +```bash +# After some commits have been added to master and "next-release-branch" separately... +git checkout simplesamlphp-2.6 +git merge master +# This might have conflicts, but those should be easy to resolve, since we know what did we do for next release ... +``` + +When we want to make the `next-release-branch` the current branch (for +example, releasing 2.6.0 in this running example) then the branch is +merged back into master. Firstly, merge `master` into +`next-release-branch` as shown above. Then the `next-release-branch` +can be made the `current-release-branch` by running the following +merge. + +```bash +# When we are ready to make "next-release-branch" the current release +git checkout master +git merge simplesamlphp-2.6 +# This should go without any conflicts, since we kept merging the "next-release-branch" with master +``` + +The following script will merge master into the current and next +release branches. Only when a next release branch becomes the current +branch is anything needing to be merged back into master. + +```bash +git checkout master +git pull +git checkout simplesamlphp-2.5 +git merge master +git push + +git checkout simplesamlphp-2.6 +git merge master +git push +``` + +## 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-ecp-idp.md b/docs/simplesamlphp-ecp-idp.md index e541c0056e..dd0ffa2948 100644 --- a/docs/simplesamlphp-ecp-idp.md +++ b/docs/simplesamlphp-ecp-idp.md @@ -37,11 +37,11 @@ The `saml20-idp-remote` metadata for simpleSAMLphp SPs should contain something 'SingleSignOnService' => [ 0 => [ 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', - 'Location' => 'https://idp.example.org/simplesaml/saml2/idp/SSOService.php', + 'Location' => 'https://idp.example.org/simplesaml/module.php/saml/idp/singleSignOnService', ], 1 => [ 'index' => 0, - 'Location' => 'https://didp.example.org/simplesaml/saml2/idp/SSOService.php', + 'Location' => 'https://didp.example.org/simplesaml/module.php/saml/idp/singleSignOnService', 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:SOAP', ], ], diff --git a/docs/simplesamlphp-errorhandling.md b/docs/simplesamlphp-errorhandling.md index 99200bc1e9..3a5e59539b 100644 --- a/docs/simplesamlphp-errorhandling.md +++ b/docs/simplesamlphp-errorhandling.md @@ -85,7 +85,7 @@ Throwing SAML 2 errors will tie your code directly to the SAML 2 protocol, and i On the SP side, we want to convert SAML 2 errors to SimpleSAMLphp exceptions again. This is handled by the `toException()` method in `\SimpleSAML\Module\saml\Error`. -The assertion consumer script of the SAML 2 authentication source (`modules/saml2/sp/acs.php`) uses this method. +The assertion consumer service of the SAML 2 authentication source uses this method. The result is that generic exceptions are thrown from that authentication source. For example, `NoPassive` errors will be converted back to instances of `\SAML2\Exception\Protocol\NoPassiveException`. diff --git a/docs/simplesamlphp-googleapps.md b/docs/simplesamlphp-googleapps.md index 7db85832f5..db7adfc947 100644 --- a/docs/simplesamlphp-googleapps.md +++ b/docs/simplesamlphp-googleapps.md @@ -187,7 +187,7 @@ You will find in the metadata the XML tag `` which contains the right URL to input in the field, it will look something like this: -`https://dev2.andreas.feide.no/simplesaml/saml2/idp/SSOService.php` +`https://dev2.andreas.feide.no/simplesaml/module.php/saml/idp/singleSignOnService` The Sign-out page or change password URL can be static pages on your server. (Google does not support SAML Single Log Out.) diff --git a/docs/simplesamlphp-hok-idp.md b/docs/simplesamlphp-hok-idp.md index d11463a08a..527924d42b 100644 --- a/docs/simplesamlphp-hok-idp.md +++ b/docs/simplesamlphp-hok-idp.md @@ -47,11 +47,19 @@ The `saml20-idp-remote` metadata for SimpleSAMLphp SPs should contain something [ 'hoksso:ProtocolBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', 'Binding' => 'urn:oasis:names:tc:SAML:2.0:profiles:holder-of-key:SSO:browser', - 'Location' => 'https://idp.example.org/simplesaml/saml2/idp/SSOService.php', + 'Location' => 'https://idp.example.org/simplesaml/module.php/saml/idp/singleSignOnService', + 'attributes' => [ + [ + 'namespaceURI' => 'urn:oasis:names:tc:SAML:2.0:profiles:holder-of-key:SSO:browser', + 'namespacePrefix' => 'hoksso', + 'attrName' => 'ProtocolBinding', + 'attrValue' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', + ], + ], ], [ 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', - 'Location' => 'https://idp.example.org/simplesaml/saml2/idp/SSOService.php', + 'Location' => 'https://idp.example.org/simplesaml/module.php/saml/idp/singleSignOnService', ], ], ``` diff --git a/docs/simplesamlphp-idp-more.md b/docs/simplesamlphp-idp-more.md index 28181dd31f..4dadf4ca4f 100644 --- a/docs/simplesamlphp-idp-more.md +++ b/docs/simplesamlphp-idp-more.md @@ -35,11 +35,11 @@ If you do not want to start the SSO flow at the SP, you may use the IdP-first se Here is an example of such a URL: -`https://idp.example.org/simplesaml/saml2/idp/SSOService.php?spentityid=urn:mace:feide.no:someservice` +`https://idp.example.org/simplesaml/module.php/saml/idp/singleSignOnService?spentityid=urn:mace:feide.no:someservice` You can also add a `RelayState` parameter to the IdP-first URL: -`https://idp.example.org/simplesaml/saml2/idp/SSOService.php?spentityid=urn:mace:feide.no:someservice&RelayState=https://sp.example.org/somepage` +`https://idp.example.org/simplesaml/module.php/saml/idp/singleSignOnService?spentityid=urn:mace:feide.no:someservice&RelayState=https://sp.example.org/somepage` The `RelayState` parameter is often used to carry the URL the SP should redirect to after authentication. It is also possible to specify the Assertion Consumer URL with the `ConsumerURL` parameter. diff --git a/docs/simplesamlphp-idp.md b/docs/simplesamlphp-idp.md index 52b9ccb20f..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', + ], + ], ]; ``` @@ -220,14 +232,14 @@ If you do not want to start the SSO flow at the SP, you may use the IdP-first se Here is an example of such a URL: -`https://idp.example.org/simplesaml/saml2/idp/SSOService.php?spentityid=sp.example.org` +`https://idp.example.org/simplesaml/module.php/saml/idp/singleSignOnService?spentityid=sp.example.org` If the SP is a SimpleSAMLphp SP, you must also specify a `RelayState` parameter for the SP. This must be set to a URL the user should be redirected to after authentication. The `RelayState` parameter can be specified in the [SP configuration](./saml:sp), or it can be sent from the IdP. To send the RelayState parameter from a SimpleSAMLphp IdP, specify it in the query string to SSOService.php: -`https://idp.example.org/simplesaml/saml2/idp/SSOService.php?spentityid=sp.example.org&RelayState=https://sp.example.org/welcome.php` +`https://idp.example.org/simplesaml/module.php/saml/idp/singleSignOnService?spentityid=sp.example.org&RelayState=https://sp.example.org/welcome.php` To set it in the SP configuration, add it to `authsources.php`: diff --git a/docs/simplesamlphp-install-repo.md b/docs/simplesamlphp-install-repo.md index 7f7628d43f..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): @@ -60,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: @@ -72,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 3d7622098c..48fbc1f0ae 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.3.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. @@ -398,7 +407,7 @@ As an example, let's see how you can install SimpleSAMLphp in your home director just created in your `public_html` directory. For example, if your home directory is reachable in `https://host.example/~myaccount/`, set the base URL path accordingly: - ```bash + ```php 'baseurlpath' => 'https://host.example/~myaccount/simplesaml/', ``` @@ -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-metadata-extensions-rpi.md b/docs/simplesamlphp-metadata-extensions-rpi.md index 148e53f4fe..a2fa17f01d 100644 --- a/docs/simplesamlphp-metadata-extensions-rpi.md +++ b/docs/simplesamlphp-metadata-extensions-rpi.md @@ -30,16 +30,16 @@ RegistrationInfo Items The configuration is the same for all the different files, and consists of a single directive called `RegistrationInfo`, which **must** be an indexed array with the following options: -`authority` +`RegistrationAuthority` : A string containing an identifier of the authority who has registered this metadata. This parameter is **mandatory**. -`instant` +`RegistrationInstant` : A string containing the instant when the entity or entities where registered by the authority. This parameter is optional, and must be expressed in the UTC timezone with the *zulu* (`Z`) timezone identifier. If omitted, there will be no `registrationInstant` in the resulting metadata, except in the `aggregator2` module, which will use the instant when the metadata was generated. -`policies` +`RegistrationPolicy` : An indexed array containing URLs pointing to the policy under which the entity or entities where registered. Each index must be the language code corresponding to the language of the URL. This parameter is optional, and will be omitted in the resulting metadata if not configured. @@ -54,9 +54,9 @@ Service Provider: 'entityID' => NULL, ... 'RegistrationInfo' => [ - 'authority' => 'urn:mace:sp.example.org', - 'instant' => '2008-01-17T11:28:03.577Z', - 'policies' => ['en' => 'http://sp.example.org/policy', 'es' => 'http://sp.example.org/politica'], + 'RegistrationAuthority' => 'urn:mace:sp.example.org', + 'RegistrationInstant' => '2008-01-17T11:28:03.577Z', + 'RegistrationPolicy' => ['en' => 'http://sp.example.org/policy', 'es' => 'http://sp.example.org/politica'], ], ], @@ -66,8 +66,8 @@ Identity Provider: 'host' => '__DEFAULT__', ... 'RegistrationInfo' => [ - 'authority' => 'urn:mace:idp.example.org', - 'instant' => '2008-01-17T11:28:03.577Z', + 'RegistrationAuthority' => 'urn:mace:idp.example.org', + 'RegistrationInstant' => '2008-01-17T11:28:03.577Z', ], ]; @@ -79,8 +79,8 @@ Identity Provider: ... ], 'RegistrationInfo' => [ - 'authority' => 'urn:mace:example.federation', - 'policies' => ['en' => 'http://example.org/federation_policy', 'es' => 'https://example.org/politica_federacion'], + 'RegistrationAuthority' => 'urn:mace:example.federation', + 'RegistrationPolicy' => ['en' => 'http://example.org/federation_policy', 'es' => 'https://example.org/politica_federacion'], ], ], ]; diff --git a/docs/simplesamlphp-modules.md b/docs/simplesamlphp-modules.md index 1271b0ee46..0a1c4ef745 100644 --- a/docs/simplesamlphp-modules.md +++ b/docs/simplesamlphp-modules.md @@ -185,7 +185,128 @@ replaces `modules/core/templates/default/loginuserpass.php`. `templates/default/frontpage.php`. This theme can be activated by setting `theme.use` to `example:test`. -## Hook interface +## Event listeners (new Hooks) + +In SimpleSAMLphp 2.5 the hook interface was updated to use PSR-14 +events [PSR-14 events](https://www.php-fig.org/psr/psr-14) as well as +the legacy custom "hook" interface. When hooks are called in 2.5 both +the new PSR-14 event listeners are called followed by the older custom +hook. You are likely better to create new event listeners in new +configurations and might like to consider moving your hooks to event +listeners over time. + +If you are using an older version of SimpleSAMLphp please see the +below section for information on how to use the older interface. + +This section discusses how to make new event listeners with an +eye toward moving an existing hook to become an event listener. + +The PSR events that can be used are defined in your module's +src/Event subdirectory. For example, for the admin module you can +see modules/admin/src/Event/ConfigPageEvent.php which defines +a class ConfigPageEvent in the `SimpleSAML\Module\admin\Event` namespace. + +That event takes some state in the constructor and likely has one or +more access methods to later retrieve that state. + +The event might be listened to by the same or another module by +defining a `Listener` class. In the running concrete example the class +in modules/cron/src/Event/Listener/ConfigPageListener.php defines a +`ConfigPageListener` class in the +`SimpleSAML\Module\cron\Event\Listener` namespace. That listener class +has an `__invoke` method that will be passed the `ConfigPageEvent` +object and has no return value. + +The `ConfigPageEvent` is a reasonable starting point for testing your +own listener. If you create a new listener for ConfigPageEvent you can +use `Logger::error` to check that you get called and use the +admin/config page through the admin module to trigger this event +fairly easily. You might like to base your new listener on the +ConfigPageListener for the cron module. + +To update a hook from a 2.4 release or below you will need to move +your hook class from the `hooks` directory to the `src/Event/Listener` +subdirectory. Considering the config page example again, the +`hooks/hook_configpage.php` file should move to `src/Event/Listener`. +That hook defined a single top level function with a specific function +name `cron_hook_configpage`. In the event listener the new +`src/Event/Listener/ConfigPageListener.php` file will need to be in +the `SimpleSAML\Module\cron\Event\Listener` namespace and define a +class `ConfigPageListener`. The single top level function is moved +into a member function `__invoke` taking a single parameter +`ConfigPageEvent`. + +The old hook function took a reference `Template &$template` directly +as the single argument. The new PSR class takes a `ConfigPageEvent` +object. The ConfigPageEvent object provides access to the template +using the `getTemplate` method on the event. + +The old hook function in `hooks` might look like the following. + + // old hook interface + function cron_hook_configpage(Template &$template): void + { + $template->data['links'][] = [ + 'href' => Module::getModuleURL('cron/info'), + 'text' => Translate::noop('Cron module information page'), + ]; + ... + } + +The new Listener version in `src/Event/Listener` is shown below. + + class ConfigPageListener + { + public function __invoke(ConfigPageEvent $event): void + { + $template = $event->getTemplate(); + + $template->data['links'][] = [ + 'href' => \SimpleSAML\Module::getModuleURL('cron/info'), + 'text' => \SimpleSAML\Locale\Translate::noop('Cron module information page'), + ]; + ... + } + } + +That `ConfigPageEvent` class is defined in +`modules/admin/src/Event/ConfigPageEvent.php`. + + class ConfigPageEvent + { + public function __construct( + private readonly XHTML\Template $template, + ) + {} + + public function getTemplate(): XHTML\Template + { + return $this->template; + } + } + +In summary to move a hook to the new PSR-14 events you have to move +the hook file to your module's src/Event/Listener directory and have +it take a new Event object that passes the function argument to it. +The event will be a simple class defined in your `src/Event` +directory. + +When you wish to call event listeners in your code you can use code +like the following. The event dispatcher is passed an event which +contains all of the state you wish to make available to the event +listeners. You can then get the state which may have been updated by +one or more listeners using a getter method and do something with the +result. + + $eventDispatcher = ModuleEventDispatcherFactory::getInstance(); + $event = $eventDispatcher->dispatch(new ConfigPageEvent($t)); + $t = $event->getTemplate(); + +## Hook interface (SimpleSAMLphp 2.4 and below) + +Releases 2.4 and below use a custom hook interface to allow code to +run when specific things of interest are happening. If you are using +SimpleSAMLphp 2.5 or above please see the above section on Event listeners instead. The hook interface allows you to call a hook function in all enabled modules which define that hook. Hook functions are stored in a 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 47487d8058..b17e1d2e10 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` @@ -76,9 +81,13 @@ entry matches. 'surName' => 'Doe', 'telephoneNumber' => '+31(0)12345678', 'company' => 'Example Inc.', - 'attributes' => [ - 'xmlns:remd' => 'http://refeds.org/metadata', - 'remd:contactType' => 'http://refeds.org/metadata/contactType/security', + 'attributes' => [ + [ + 'namespaceURI' => 'http://refeds.org/metadata', + 'namespacePrefix' => 'remd', + 'attrName' => 'contactType', + 'attrValue' => 'http://refeds.org/metadata/contactType/security', + ], ], ], ], @@ -138,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 @@ -186,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. @@ -194,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` @@ -290,7 +306,7 @@ The following SAML 2.0 options are available: `SingleSignOnService` : Override the default URL for the SingleSignOnService for this IdP. This is an absolute URL. The default value is - `/saml2/idp/SSOService.php` + `/module.php/saml/idp/singleSignOnService` : Note that this only changes the values in the generated metadata and in the messages sent to others. You must also @@ -311,7 +327,7 @@ The following SAML 2.0 options are available: `SingleLogoutService` : Override the default URL for the SingleLogoutService for this IdP. This is an absolute URL. The default value is - `/saml2/idp/SingleLogoutService.php` + `/module.php/saml/idp/singleLogout` : Note that this only changes the values in the generated metadata and in the messages sent to others. You must also @@ -387,7 +403,7 @@ See the documentation for those extensions for more details: For other metadata extensions, you can use the `saml:Extensions` option: `saml:Extensions` -: An array of `\SAML2\XML\Chunk`s to include in the IdP metadata extensions, at the same level as `EntityAttributes`. +: An array of `\SimpleSAML\XML\Chunk`s to include in the IdP metadata extensions, at the same level as `EntityAttributes`. `Examples`: @@ -422,11 +438,11 @@ $metadata['https://example.org/saml-idp'] = [ ```php createElementNS('http://eduid.cz/schema/metadata/1.0', 'eduidmd:RepublishRequest'); $republishTarget = $dom->createElementNS('http://eduid.cz/schema/metadata/1.0', 'eduidmd:RepublishTarget', 'http://edugain.org/'); $republishRequest->appendChild($republishTarget); -$ext = [new \SAML2\XML\Chunk($republishRequest)]; +$ext = [new \SimpleSAML\XML\Chunk($republishRequest)]; $metadata['https://example.org/saml-idp'] = [ 'host' => '__DEFAULT__', 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 abec03c6e4..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 @@ -110,7 +110,7 @@ The following options can be set: the actual value used is fetched from metadata by the following priority: -: +: 1. SP Remote Metadata 2. IdP Hosted Metadata @@ -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 +## Encrypting assertions -It is possible to encrypt the assertions sent to a SP. Currently the -only algorithm supported is `AES128_CBC` or `RIJNDAEL_128`. - -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 d2fe697177..1e9f0a1958 100644 --- a/docs/simplesamlphp-sp.md +++ b/docs/simplesamlphp-sp.md @@ -90,9 +90,20 @@ metadata file: ```php 'https://example.org/simplesaml/saml2/idp/SSOService.php', - 'SingleLogoutService' => 'https://example.org/simplesaml/saml2/idp/SingleLogoutService.php', - '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.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..131e08ea5c --- /dev/null +++ b/docs/simplesamlphp-upgrade-notes-2.5.md @@ -0,0 +1,38 @@ +# 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.3. +- Symfony was upgraded to 7.4 (LTS). + +## Web-proxy + +- This release replaces several cases of `file_get_contents()` and direct use of + `curl_`-functions with the Symfony HTTP-client. If you have a proxy set in `config.php`, + please ensure that is has `http://` or `https://` as a scheme, appropriate to + your use-case. The old `tcp://` scheme may no longer work correctly for all use-cases. + + To be even more future-proof, set the proxy-configuration to `null` and use environment- + variables instead. See the [Symfony documentation](https://symfony.com/doc/current/http_client.html#http-proxies) + for more information + +## General Upgrade Advice + +When updating SimpleSAMLphp you might like to run the following to +remove any cached objects that might have older code signatures to the +new SimpleSAMLphp version. If you encounter a permissions error +running the clear-symfony-cache shown below please see the [the +SimpleSAMLphp installation instructions](simplesamlphp-install) for +information about how to update the filesystem permissions. + +```sh +composer clear-symfony-cache +``` + +The above command is particularly useful if you see a message after +your update about "has required constructor arguments and does not +exist in the container" or "Did you forget to define the controller as +a service?" as these error messages might indicate a stale cache. diff --git a/docs/simplesamlphp-upgrade-notes.md b/docs/simplesamlphp-upgrade-notes.md index 40bc5a1b65..676f06b352 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.5](simplesamlphp-upgrade-notes-2.5) +* [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) diff --git a/extra/simplesamlphp.spec b/extra/simplesamlphp.spec index 809108d15d..470a87b9a0 100644 --- a/extra/simplesamlphp.spec +++ b/extra/simplesamlphp.spec @@ -1,6 +1,6 @@ %define name simplesamlphp %define summary SAML IDP/SP written in PHP -%define version 2.1.0-rc1 +%define version 2.5.0 %define release 1 %define license LGPL 2.1 %define group Networking/WWW diff --git a/locales/af/LC_MESSAGES/messages.po b/locales/af/LC_MESSAGES/messages.po index 59581bbb30..ec0168509a 100644 --- a/locales/af/LC_MESSAGES/messages.po +++ b/locales/af/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Affiliasie" @@ -47,6 +60,9 @@ msgstr "Verifikasie het misluk: Jou webblaaier het geen sertifikaat gestuur nie" 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" @@ -59,6 +75,10 @@ msgstr "Toegangsfout by die ontdekkings diens" msgid "CAS Error" msgstr "CAS Fout" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Change your home organization" msgstr "Verander jou tuisorganisasie" @@ -81,6 +101,9 @@ msgstr "Instellings fout" msgid "Contact information:" msgstr "Kontak detail:" +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" @@ -91,6 +114,9 @@ msgstr "Geboorte datum" msgid "Debug information" msgstr "Ontleed informasie" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Vertoon naam" @@ -162,6 +188,9 @@ msgstr "Verduidelik wat jy gedoen het toe jy die probleem ervaar..." msgid "Fax number" msgstr "Faksnommer" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Voornaam" @@ -171,12 +200,18 @@ msgstr "Gaan terug na die SimpleSAMLphp installasie bladsy" msgid "Group membership" msgstr "Groeplidmaatskap" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Hulplyn-tuisblad" msgid "Help! I don't remember my password." msgstr "Hulp! Ek het nie my wagwoord onthou nie." +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 "Tuis Organisasie domein naam" @@ -205,6 +240,9 @@ msgstr "Inkorrekte gebruikersnaam of wagwoord" msgid "Incorrect username or password." msgstr "Verkeerde gebruikersnaam of wagwoord." +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" @@ -224,6 +262,9 @@ msgstr "LDAP is die gebruikers databasis en waneer jy probeer inteken moet ons d msgid "Labeled URI" msgstr "URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Wettige naam" @@ -248,6 +289,9 @@ msgstr "Meld aan" msgid "Login at" msgstr "Meld aan by" +msgid "Logout" +msgstr "" + msgid "Logout failed" msgstr "Afmelding misluk" @@ -265,6 +309,10 @@ msgstr "Bestuurder" msgid "Metadata not found" msgstr "Metadata nie gevind nie" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Selfoon" @@ -286,6 +334,10 @@ msgstr "Geen aflos staat('RelayState')" msgid "No SAML message provided" msgstr "Geen SAML boodskap gevind nie" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Geen SAML versoek gevind nie" @@ -298,6 +350,9 @@ msgstr "Geen toegang" msgid "No certificate" msgstr "Geen sertifikaat" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Nee" @@ -388,6 +443,9 @@ msgstr "Rapporteer foute" msgid "Return to service" msgstr "Terug na diens" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Kies" @@ -400,6 +458,9 @@ msgstr "Stuur e-pos aan hulplyn" msgid "Send error report" msgstr "Stuur die fout verslag" +msgid "Sending message" +msgstr "" + msgid "Service Provider" msgstr "Diens Verskaffer" @@ -410,6 +471,9 @@ msgstr "SimpleSAMLphp is nie korrek ingestel nie" msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp-fout" +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 "Toestandsinformasie verlore" @@ -461,6 +525,10 @@ msgstr "Die inisieerder van hierdie versoek het nie 'n aflos staat('RelayState') 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Die wagwoord in die konfigurasie (auth.adminpassword) is nie aangepas nie. Redigeer asb die konfigurasie leër." @@ -487,6 +555,9 @@ msgstr "Die fout is moontlik te danke aan onverwagte gedrag of weens inkorrekte msgid "Title" msgstr "Titel" +msgid "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -512,6 +583,9 @@ msgstr "Gebruikerswagwoord" msgid "Username" msgstr "Gebruikersnaam" +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 "Die antwoord vanaf die Indentiteits Verskaffer is nie aanvaar nie." @@ -523,16 +597,27 @@ msgstr "Daar was 'n fout tydens die verifikasie skepping deur die Identiteits Ve 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 "World" +msgstr "" + msgid "Yes, all services" msgstr "Ja, alle dienste" msgid "Yes, continue" msgstr "Ja, voortgaan" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "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:272 +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 "Jy het toegang verkry na die SingleLogoutService koppelvlak('interface'), maar het geen SAML LogoutRequest of LogoutResponse gestuur nie." @@ -565,5 +650,18 @@ msgstr "Jy het suksesvol afgemeld." 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 "Your attributes" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "[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 3e20f31713..9a97459fce 100644 --- a/locales/ar/LC_MESSAGES/messages.po +++ b/locales/ar/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "جهة العمل" @@ -50,6 +63,9 @@ msgstr "فشل التوثيق لان متصفحك لم يرسل شهادات" 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 "استقبال طلب سيء" @@ -62,6 +78,10 @@ msgstr "طلب سيء لخدمة استكشافية" msgid "CAS Error" msgstr "خطا CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "الشهادات" @@ -93,6 +113,9 @@ 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 "لا يمكننا اجراء التوثيق" @@ -103,6 +126,9 @@ msgstr "تاريخ الميلاد" msgid "Debug information" msgstr "معلومات التصحيح" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "الاسم المستخدم " @@ -180,6 +206,9 @@ msgstr "اشرح ما فعلته عند حدوث الخطأ " msgid "Fax number" msgstr "رقم الفاكس" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "الاسم" @@ -189,6 +218,9 @@ msgstr "عد لصفحة إنزال SimpleSAMLphp" msgid "Go back to the file list" msgstr "عد لقائمة الملفات" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "صفحة المساعدة" @@ -235,6 +267,9 @@ 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" @@ -254,6 +289,9 @@ msgstr "LDAP هو سجل معلومات المستخدم. عندما تسجل د msgid "Labeled URI" msgstr "URI أسم " +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "الاسم الشرعي" @@ -307,6 +345,10 @@ msgstr "الميتاداتا مفقودة" msgid "Metadata overview" msgstr "نظرة عامة للبيانات الوصفية/ الميتاداتا" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "رقم الهاتف السيار" @@ -328,6 +370,10 @@ msgstr "انعدام التقوية" msgid "No SAML message provided" msgstr "لم يتم تقديم رسالة SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "لا توجد استجابة SAML" @@ -343,6 +389,9 @@ msgstr "الشهادات مفقودة" msgid "No errors found." msgstr "لا توجد أخطاء " +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "لا" @@ -457,6 +506,9 @@ msgstr "البيانات الوصفية ل SAML 2.0 SP" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "مقدم خدمة SAML 2.0 (المستضاف)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "اختار" @@ -512,6 +564,9 @@ msgstr "يبدو ان ترتيب SimpleSAMLphp غير صحيح" msgid "SimpleSAMLphp error" msgstr "خطا ب SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "لقد حدث خطا ما" @@ -581,6 +636,10 @@ msgstr "لم يوفر طالب الخدمة خصائص تقوية تقود لل msgid "The parameters sent to the discovery service were not according to specifications." msgstr "الخصائص المرفقة لا تطابق المواصفات" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "لم تقم بتغيير كلمة السر الافتراضية بالترتيب (auth.adminpassword). رجاءاً قم بتحرير ملف الترتيب" @@ -610,6 +669,9 @@ msgstr "اللقب" msgid "To look at the details for an SAML entity, click on the SAML entity header." msgstr "لإلغاء نظرة علي تفاصيل احدي وحدات 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%" @@ -644,6 +706,9 @@ msgstr "مقدم خدمة WS-الفدرالية البعيد" msgid "WS-Federation Service Provider (Hosted)" msgstr "مقدم خدمة WS-الفدرالية المستضاف " +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 "لم نقبل إجابات مقدم الهوية" @@ -655,6 +720,9 @@ 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" @@ -664,10 +732,18 @@ msgstr "نعم من جميع الخدمات" msgid "Yes, continue" msgstr "نعم، واصل" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "لقد وصلت لنطاق تأكيد خدمة زبون لكنك لم توفر استجابة توثيق SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "لقد وصلت لنقطة تسجيل الخروج الموحد لكنك لم توفر طلب تسجيل خروج SAML او استجابة لطلب الخروج" @@ -715,8 +791,15 @@ msgstr "لقد قمت بإرسال معلومات لصفحة الدخول لكن msgid "Your attributes" msgstr "السمات" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "[Preferred choice]" msgstr "اختياري المفضل" + +msgid "not set" +msgstr "" diff --git a/locales/ca/LC_MESSAGES/messages.po b/locales/ca/LC_MESSAGES/messages.po index e7cb229aa2..e2021153f8 100644 --- a/locales/ca/LC_MESSAGES/messages.po +++ b/locales/ca/LC_MESSAGES/messages.po @@ -1,19 +1,104 @@ 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" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:238 +msgid "%MESSAGE%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Afiliació" msgid "Affiliation at home organization" msgstr "Afiliació a l'organització d'origen" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:207 +msgid "An error occurred when trying to create the SAML request." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:229 +msgid "An error occurred when trying to process the Logout Request." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:276 +msgid "An unhandled exception was thrown." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:112 +msgid "Authentication aborted" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:202 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:214 +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:277 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Authentication source error" +msgstr "" + +msgid "Authentication status" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Bad request received" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "Bad request to discovery service" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "CAS Error" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Common name" msgstr "Nom comú (CN)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Configuration error" +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +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ó" @@ -29,15 +114,62 @@ msgstr "Nom distingit (DN) de la Unitat Organitzativa (OU) de l'organització d' msgid "Domain component (DC)" msgstr "Component de domini (DC)" +msgid "E-mail address:" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:279 +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:85 +msgid "Error creating request" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Error loading metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:106 +msgid "Error processing request from Service Provider" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:105 +msgid "Error processing response from Identity Provider" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Error processing the Logout Request" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:107 +msgid "Error received from Identity Provider" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:205 +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 "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 "Home organization domain name" msgstr "Identificador únic de l'organització d'origen" @@ -47,18 +179,47 @@ 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 "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:113 +msgid "Incorrect username or password" +msgstr "" + +msgid "Information about your current session" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:104 +msgid "Invalid certificate" +msgstr "" + msgid "JPEG Photo" msgstr "Fotografia en JPEG" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "LDAP Error" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +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" @@ -68,18 +229,64 @@ msgstr "Número d'identificació local" msgid "Locality" msgstr "Localitat" +msgid "Logout" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 +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:94 +msgid "Metadata not found" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Telèfon mòbil" msgid "Nickname" msgstr "Àlies" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No RelayState" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:108 +msgid "No SAML message provided" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +msgid "No SAML response provided" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 +msgid "No access" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +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 name" msgstr "Nom de l'organització" @@ -95,12 +302,24 @@ msgstr "Número de l'organització" msgid "Organizational unit" msgstr "Unitat organitzativa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Page not found" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +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" @@ -119,6 +338,42 @@ msgstr "Afiliació primària" msgid "Private information elements" msgstr "Elements d'informació privada" +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:206 +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:99 +msgid "State information lost" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "State information lost, and no way to restart the request" +msgstr "" + msgid "Street" msgstr "Carrer" @@ -128,11 +383,135 @@ msgstr "Cognoms" msgid "Telephone number" msgstr "Número de telèfon" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:265 +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:278 +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:247 +msgid "The given page was not found. The URL was: %URL%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:248 +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:220 +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:243 +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:208 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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:250 +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:204 +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:233 +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:262 +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:239 +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 "Tracking number" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:237 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:110 +msgid "Unhandled exception" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:111 +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:261 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:211 +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:198 +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:194 +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:272 +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:268 +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:260 +msgid "You did not present a valid certificate." +msgstr "" + +msgid "Your attributes" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 02fbf1cbda..65e5469ff3 100644 --- a/locales/cs/LC_MESSAGES/messages.po +++ b/locales/cs/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Vztah k organizaci" @@ -50,6 +63,9 @@ msgstr "Přihlášení neproběhlo: Váš prohlížeč neodeslal žádný certif 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" @@ -62,6 +78,10 @@ msgstr "Špatný požadavek pro prohledávací službu" msgid "CAS Error" msgstr "CAS chyba" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Certifikáty" @@ -93,6 +113,9 @@ msgstr "Kontaktní informace" 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ěď" @@ -103,6 +126,9 @@ msgstr "Datum narozeni" msgid "Debug information" msgstr "Ladicí informace" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Zobrazované jméno" @@ -180,6 +206,9 @@ msgstr "Vysvětlete, jak došlo k této chybě ..." msgid "Fax number" msgstr "Fax" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Křestní jméno" @@ -189,6 +218,9 @@ msgstr "Zpátky na SimpleSAMLphp instalační stránku" msgid "Go back to the file list" msgstr "Zpátky na seznam souborů" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Help desk" @@ -235,6 +267,9 @@ msgstr "Špatné jméno a heslo." msgid "Incorrect username or password." msgstr "Nesprávné jméno nebo heslo." +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" @@ -254,6 +289,9 @@ msgstr "LDAP je databáze uživatelů, a když se chcete přihlásit, je potřeb msgid "Labeled URI" msgstr "URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Oficiální jméno" @@ -307,6 +345,10 @@ msgstr "Metadata nenalezena" msgid "Metadata overview" msgstr "Přehled metadat" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobil" @@ -328,6 +370,10 @@ msgstr "Nenalezen RelayState." msgid "No SAML message provided" msgstr "SAML zpráva nebyla zaslána" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Nebyla zaslána SAML odpověď" @@ -343,6 +389,9 @@ msgstr "Chybí certifikát" msgid "No errors found." msgstr "Nenalezeny žádné chyby" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Ne" @@ -457,6 +506,9 @@ msgstr "SAML 2.0 SP Metadata" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 Service Provider (Hosted - lokální)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Zvolit" @@ -512,6 +564,9 @@ msgstr "SimpleSAMLphp je špatně nakonfigurovaný" msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp chyba" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Nalezena chyba" @@ -581,6 +636,10 @@ msgstr "Původce této žádosti nezadal parametr RelayState, který určuje kam msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Parametr zaslaný vyhledávací službě neodpovídá specifikaci." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Heslo v konfiguraci (auth.adminpassword) není nastaveno. Prosím nastavte ho." @@ -610,6 +669,9 @@ msgstr "Nadpis" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -644,6 +706,9 @@ msgstr "WS-Federation Identity Provider (Remote - vzdálený)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation Service Provider (Hosted - lokální)" +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 "Neakceptujeme odpověď zaslanou poskytovatelem identity." @@ -655,6 +720,9 @@ msgstr "Při vytváření přihlašovací odpovědi tímto poskytovatelem identi 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 "World" +msgstr "" + msgid "XML metadata" msgstr "XML metadata" @@ -664,10 +732,18 @@ msgstr "Ano, všechny služby" msgid "Yes, continue" msgstr "Ano, akceptuji" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Přistupujete k Assertion Consumer Service rozhraní, ale neposíláte SAML Authentication Response." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Přistupujete k SingleLogoutService rozhraní, ale nezadáváte SAML LogoutRequest ani LogoutResponse." @@ -715,8 +791,15 @@ msgstr "Odeslal jste data do přihlašovací stránky, ale z nějakého důvodu msgid "Your attributes" msgstr "Vaše atributy" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Vaše sezení je platné ještě %remaining% sekund." msgid "[Preferred choice]" msgstr "[Preferovaná volba]" + +msgid "not set" +msgstr "" diff --git a/locales/da/LC_MESSAGES/messages.po b/locales/da/LC_MESSAGES/messages.po index 4816510d4f..d1884ecbca 100644 --- a/locales/da/LC_MESSAGES/messages.po +++ b/locales/da/LC_MESSAGES/messages.po @@ -1,7 +1,16 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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." @@ -17,6 +26,10 @@ msgstr "ADFS tjenesteudbyder metadata" msgid "ADFS Service Provider (Remote)" msgstr "ADFS tjenesteudbyder (remote)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Brugerens tilknytning til hjemmeorganisationen" @@ -62,6 +75,9 @@ msgstr "Login fejlede - din browser sendte ikke noget certifikat" 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" @@ -74,6 +90,10 @@ msgstr "Fejlagtig forespørgsel til Discovery Service" msgid "CAS Error" msgstr "CAS fejl" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Certifikater" @@ -105,6 +125,9 @@ msgstr "Kontaktoplysninger" 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" @@ -115,6 +138,9 @@ msgstr "Fødselsdato" msgid "Debug information" msgstr "Detaljer til fejlsøgning" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Visningsnavn" @@ -207,6 +233,9 @@ msgstr "Tilbage til listen over filer" msgid "Group membership" msgstr "Gruppemedlemsskab" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Servicedesk" @@ -253,6 +282,9 @@ msgstr "Forkert brugernavn eller kodeord" msgid "Incorrect username or password." msgstr "Forkert brugernavn eller kodeord." +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" @@ -272,6 +304,9 @@ msgstr "Der opstod en fejl i kommunikationen med LDAP databasen under login." msgid "Labeled URI" msgstr "Labeled URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Officielt navn" @@ -325,6 +360,10 @@ msgstr "Metadata ikke fundet" msgid "Metadata overview" msgstr "Metadataoversigt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Telefonnummer (mobil)" @@ -346,6 +385,10 @@ msgstr "RelayState mangler" msgid "No SAML message provided" msgstr "Ingen SAML besked" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "SAML response mangler" @@ -361,6 +404,9 @@ msgstr "Intet certifikat" msgid "No errors found." msgstr "Ingen fejl" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Nej" @@ -542,6 +588,9 @@ msgstr "SimpleSAMLphp er tilsyneladende ikke Konfigureret korrekt" msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp fejl" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "En fejl opstod." @@ -611,6 +660,10 @@ msgstr "Afsenderen af denne forespørgelse har ikke angivet en RelayStay paramet msgid "The parameters sent to the discovery service were not according to specifications." msgstr "De afsendte værdier overholder ikke Discovery Servicens' krav" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Der er ikke konfigureret et password til administrationsgrænsefladen (auth.adminpassword). Opdater konfigurationen med et nyt password, der er forskelligt fra stadardpasswordet." @@ -640,6 +693,9 @@ msgstr "Titel" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -674,6 +730,9 @@ msgstr "WS-Federation identitetsudbyder (remote)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation tjenesteudbyder (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 "Svaret fra Identitetsudbydere kunne ikke accepteres" @@ -685,6 +744,9 @@ msgstr "En fejl opstod da denne identitetsudbyder forsøgte at sende svar" 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 "World" +msgstr "" + msgid "XML metadata" msgstr "XML metadata" @@ -694,10 +756,18 @@ msgstr "Ja, alle services" msgid "Yes, continue" msgstr "Ja, jeg accepterer" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Du forsøger at tilgå Assertion Consumer Service grænsefladen uden at sende et SAML Authentication Response" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Du forsøger at tilgå Single Logout grænsefladen, uden at sendet et SAML LogoutRequest eller LogoutResponse" @@ -745,6 +815,10 @@ msgstr "Dit kodeord blev ikke sendt - prøv igen." msgid "Your attributes" msgstr "Dine oplysninger" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Du har %remaining% tilbage af din session" diff --git a/locales/de/LC_MESSAGES/messages.po b/locales/de/LC_MESSAGES/messages.po index cddf208bcb..f3919135a5 100644 --- a/locales/de/LC_MESSAGES/messages.po +++ b/locales/de/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Organisationszugehörigkeit" @@ -50,6 +63,9 @@ msgstr "Authentifizierung fehlgeschlagen: Ihr Browser hat kein Zertifikat gesend 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" @@ -62,6 +78,10 @@ msgstr "Ungültige Anfrage an den Discovery Service" msgid "CAS Error" msgstr "CAS-Fehler" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Zertifikate" @@ -93,6 +113,9 @@ msgstr "Kontakt" 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" @@ -103,6 +126,9 @@ msgstr "Geburtsdatum" msgid "Debug information" msgstr "Debug-Information" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Anzeigename" @@ -180,6 +206,9 @@ msgstr "Erläutern Sie, wodurch der Fehler auftrat..." msgid "Fax number" msgstr "Faxnummer" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Vorname" @@ -189,6 +218,9 @@ msgstr "Zurück zur SimpleSAMLphp Installationsseite" msgid "Go back to the file list" msgstr "Gehe zurück zur Dateiliste" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Seite des Helpdesks" @@ -235,6 +267,9 @@ msgstr "Benutzername oder Passwort falsch." msgid "Incorrect username or password." msgstr "Falscher Benutzername oder Passwort." +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" @@ -254,6 +289,9 @@ msgstr "LDAP ist die gewählte Benutzerdatenbank. Wenn Sie versuchen sich anzume msgid "Labeled URI" msgstr "URI mit zusätzlicher Kennzeichnung" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Offizieller Name" @@ -307,6 +345,10 @@ msgstr "Keine Metadaten gefunden" msgid "Metadata overview" msgstr "Metadatenüberblick" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobiltelefon" @@ -328,6 +370,10 @@ msgstr "Keine Weiterleitungsinformationen" msgid "No SAML message provided" msgstr "Keine SAML Nachricht bereitgestellt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Keine SAML-Antwort bereitgestellt" @@ -343,6 +389,9 @@ msgstr "Kein Zertifikat" msgid "No errors found." msgstr "Keine Fehler gefunden." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Nein" @@ -457,6 +506,9 @@ msgstr "SAML 2.0 SP Metadaten" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 Service Provider (gehosted)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Auswahl" @@ -512,6 +564,9 @@ msgstr "SimpleSAMLphp scheint falsch konfiguriert zu sein." msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp-Fehler" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Es ist ein Fehler aufgetreten" @@ -581,6 +636,10 @@ msgstr "Der Initiator dieser Anfrage hat keinen Weiterleitungsparameter bereitge 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Sie benutzen noch immer das Standardpasswort, bitte ändern Sie die Konfiguration (auth.adminpassword)." @@ -610,6 +669,9 @@ msgstr "Titel" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -644,6 +706,9 @@ msgstr "WS-Federation Identity Provider (entfernt)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation Service Provider (gehosted)" +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 "Die Antwort des Identitiy Provider konnte nicht akzeptiert werden." @@ -655,6 +720,9 @@ msgstr "Beim Versuch des Identity Providers eine Authentifikationsantwort zu ers 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 "World" +msgstr "" + msgid "XML metadata" msgstr "XML-Metadaten" @@ -664,10 +732,18 @@ msgstr "Ja, alle Dienste" msgid "Yes, continue" msgstr "Ja, ich stimme zu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Sie haben auf die Assertion-Consumer-Service-Schnittstelle zugegriffen, aber keine SAML Authentifizierungsantwort bereitgestellt." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Sie haben auf die SingleLogoutService-Schnittstelle zugegriffen, aber keine SAML Abmeldeanfrage oder Abmeldeantwort bereitgestellt." @@ -715,8 +791,15 @@ msgstr "Sie haben etwas an die Anmeldeseite geschickt, aber aus irgendeinem Grun msgid "Your attributes" msgstr "Ihre Attribute" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Ihre Sitzung ist noch für %remaining% Sekunden gültig." msgid "[Preferred choice]" msgstr "[Bevorzugte Auswahl]" + +msgid "not set" +msgstr "" diff --git a/locales/el/LC_MESSAGES/messages.po b/locales/el/LC_MESSAGES/messages.po index 9f0f6a5be5..c5f58e35ed 100644 --- a/locales/el/LC_MESSAGES/messages.po +++ b/locales/el/LC_MESSAGES/messages.po @@ -1,7 +1,16 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." msgstr "Μια υπηρεσία έχει ζητήσει την ταυτοποίησή σας. Παρακαλώ εισάγετε το όνομα χρήστη και τον κωδικό πρόσβασής σας στην παρακάτω φόρμα." @@ -17,6 +26,10 @@ msgstr "Μεταδεδομένα Παρόχου Υπηρεσιών ADFS" msgid "ADFS Service Provider (Remote)" msgstr "Πάροχος Υπηρεσιών ADFS (Απομακρυσμένος)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Ιδιότητα/ες" @@ -62,6 +75,9 @@ msgstr "Η ταυτοποίηση απέτυχε: Το πρόγραμμα περ 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 "Εσφαλμένο αίτημα" @@ -109,6 +125,9 @@ 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 "Δεν ήταν δυνατή η δημιουργία απόκρισης στο αίτημα ταυτοποίησης" @@ -119,6 +138,9 @@ msgstr "Ημερομηνία γέννησης" msgid "Debug information" msgstr "Πληροφορίες εντοπισμού σφαλμάτων" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Εμφανιζόμενο όνομα" @@ -211,6 +233,9 @@ msgstr "Επιστροφή στον κατάλογο αρχείων" msgid "Group membership" msgstr "Συμμετοχή σε ομάδες" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Σελίδα υπηρεσίας αρωγής χρηστών" @@ -257,6 +282,9 @@ 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" @@ -276,6 +304,9 @@ msgstr "Παρουσιάστηκε σφάλμα κατά την επικοινω msgid "Labeled URI" msgstr "Επισημασμένα URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Επίσημο όνομα" @@ -329,6 +360,10 @@ msgstr "Δεν βρέθηκαν μεταδεδομένα" msgid "Metadata overview" msgstr "Επισκόπηση μεταδεδομένων (metadata)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Κινητό τηλέφωνο" @@ -350,6 +385,10 @@ msgstr "Σφάλμα παραμέτρου 'RelayState'" msgid "No SAML message provided" msgstr "Σφάλμα κατά την πρόσβαση στη διεπαφή SingleLogoutService" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Σφάλμα κατά την πρόσβαση στη διεπαφή AssertionConsumerService" @@ -365,6 +404,9 @@ msgstr "Δεν υπάρχει πιστοποιητικό" msgid "No errors found." msgstr "Δεν εντοπίστηκαν λάθη." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Όχι" @@ -546,6 +588,9 @@ msgstr "Παρουσιάστηκε σφάλμα ρυθμίσεων του Simple msgid "SimpleSAMLphp error" msgstr "Σφάλμα του SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Συνέβη σφάλμα" @@ -615,6 +660,10 @@ msgstr "Η παράμετρος 'RelayState' του πρωτοκόλλου SAML msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Οι παράμετροι που στάλθηκαν στην υπηρεσία ανεύρεσης παρόχου ταυτότητας ήταν εσφαλμένες." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Χρησιμοποιείται η προκαθορισμένη τιμή του κωδικού πρόσβασης. Παρακαλούμε επεξεργαστείτε το αρχείο ρυθμίσεων." @@ -644,6 +693,9 @@ msgstr "Τίτλος" msgid "To look at the details for an SAML entity, click on the SAML entity header." msgstr "Για να δείτε τις λεπτομέρειες για μια οντότητα 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%" @@ -678,6 +730,9 @@ 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 "Παρουσιάστηκε σφάλμα κατά την επεξεργασία της απάντησης από τον πάροχο ταυτότητας." @@ -689,6 +744,9 @@ 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 "World" +msgstr "" + msgid "XML metadata" msgstr "Αναλυτής μεταδεδομένων XML" @@ -698,10 +756,18 @@ msgstr "Ναι, όλες τις υπηρεσίες" msgid "Yes, continue" msgstr "Αποδοχή" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Κατά την πρόσβασή σας στη διεπαφή AssertionConsumerService παραλείψατε να συμπεριλάβετε απάντηση σε αίτημα ταυτοποίησης του πρωτοκόλλου SAML. Σημειώστε ότι αυτό το τελικό σημείο (endpoint) δεν προορίζεται να είναι άμεσα προσβάσιμο." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Κατά την πρόσβασή σας στη διεπαφή SingleLogoutService παραλείψατε να συμπεριλάβετε μήνυμα LogoutRequest ή LogoutResponse του πρωτοκόλλου SAML. Σημειώστε ότι αυτό το τελικό σημείο (endpoint) δεν προορίζεται να είναι άμεσα προσβάσιμο." diff --git a/locales/en/LC_MESSAGES/messages.po b/locales/en/LC_MESSAGES/messages.po index 5e92fddb5a..a197fc11f4 100644 --- a/locales/en/LC_MESSAGES/messages.po +++ b/locales/en/LC_MESSAGES/messages.po @@ -1,7 +1,16 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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." @@ -17,6 +26,10 @@ msgstr "ADFS SP Metadata" msgid "ADFS Service Provider (Remote)" msgstr "ADFS Service Provider (Remote)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Affiliation" @@ -356,6 +369,10 @@ msgstr "Metadata not found" msgid "Metadata overview" msgstr "Metadata overview" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobile" @@ -658,6 +675,10 @@ msgstr "The initiator of this request did not provide a RelayState parameter ind 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "The password in the configuration (auth.adminpassword) is not changed from the default value. Please edit the configuration file." diff --git a/locales/es/LC_MESSAGES/messages.po b/locales/es/LC_MESSAGES/messages.po index aec126d1af..846c0145a0 100644 --- a/locales/es/LC_MESSAGES/messages.po +++ b/locales/es/LC_MESSAGES/messages.po @@ -1,7 +1,16 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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." @@ -17,6 +26,10 @@ 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Afiliación" @@ -62,6 +75,9 @@ msgstr "Fallo de autenticación: su navegador no envió ningún certificado" msgid "Authentication source error" msgstr "Error en la Autenticacion de origen" +msgid "Authentication status" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:73 msgid "Bad request received" msgstr "Recibida una solicitud incorrecta" @@ -74,6 +90,10 @@ msgstr "Solicitud errónea al servicio de descubrimiento" msgid "CAS Error" msgstr "Error del CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Certificados" @@ -105,6 +125,9 @@ msgstr "Información de contacto:" msgid "Converted metadata" msgstr "Metadatos convertidos" +msgid "Copy to clipboard" +msgstr "" + #: /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" @@ -115,6 +138,9 @@ msgstr "Fecha de nacimiento" msgid "Debug information" msgstr "Información de depuración" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Nombre para mostrar" @@ -217,7 +243,7 @@ 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." +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." @@ -259,6 +285,9 @@ msgstr "Nombre de usuario o contraseña incorrectos" msgid "Incorrect username or password." msgstr "Nombre de usuario o contraseña erróneos" +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" @@ -278,6 +307,9 @@ msgstr "LDAP es la base de datos de usuarios, es necesario contactar con ella cu msgid "Labeled URI" msgstr "URI etiquetado" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Nombre legal" @@ -331,6 +363,10 @@ msgstr "Metadatos no econtrados" msgid "Metadata overview" msgstr "Ver metadatos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Teléfono móvil" @@ -352,6 +388,10 @@ msgstr "RelayState no definido" msgid "No SAML message provided" msgstr "Falta el mensaje SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Falta la respuesta SAML" @@ -367,6 +407,9 @@ msgstr "No certificado" msgid "No errors found." msgstr "No se han encontrado errores" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "No" @@ -548,6 +591,9 @@ msgstr "Parece que hay un error en la configuración de SimpleSAMLphp" msgid "SimpleSAMLphp error" msgstr "Error de SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Se produjo un error" @@ -617,6 +663,10 @@ msgstr "El iniciador de esta solicitud no proporcionó el parámetro 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "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" @@ -646,6 +696,9 @@ msgstr "Tratamiento" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -680,6 +733,9 @@ msgstr "Proveedor de Identidad WS-Federation (remoto)" msgid "WS-Federation Service Provider (Hosted)" msgstr "Proveedor de Servicios WS-Federation (local)" +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 "No ha sido posible aceptar la respuesta enviada por el proveedor de identidad." @@ -689,7 +745,7 @@ msgid "When this identity provider tried to create an authentication response, a msgstr "El proveedor de identidad ha detectado un error al crear respuesta de autenticación." 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!" +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 "World" msgstr "Mundo" @@ -703,10 +759,18 @@ msgstr "Si, todos los servicios" msgid "Yes, continue" msgstr "Sí" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Usted accedió a la interfaz consumidora de aserciones pero no incluyó una respuesta de autenticación SAML." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Usted accedió a la interfaz SingleLogoutService pero no incluyó un mensaje SAML LogoutRequest o LogoutResponse" @@ -754,6 +818,10 @@ msgstr "Usted envió algo a la página de acceso pero, por algún motivo, la cla msgid "Your attributes" msgstr "Atributos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Su sesión será valida durante %remaining% segundos." diff --git a/locales/et/LC_MESSAGES/messages.po b/locales/et/LC_MESSAGES/messages.po index 47d6252e66..3bbf8c4ffd 100644 --- a/locales/et/LC_MESSAGES/messages.po +++ b/locales/et/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Rollid" @@ -50,6 +63,9 @@ msgstr "Autentimine ei õnnestunud: brauser ei saatnud ühtegi sertifikaati" 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" @@ -62,6 +78,10 @@ msgstr "Halb tuvastusteenuse päring" msgid "CAS Error" msgstr "CAS tõrge" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Sertifikaadid" @@ -93,6 +113,9 @@ msgstr "Kontaktinfo:" 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" @@ -103,6 +126,9 @@ msgstr "Sünniaeg" msgid "Debug information" msgstr "Silumisinfo" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Kuvatav nimi" @@ -180,6 +206,9 @@ msgstr "Kirjelda, millega tegelesid, kui see tõrge ilmnes..." msgid "Fax number" msgstr "Faksinumber" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Eesnimi" @@ -189,6 +218,9 @@ msgstr "Mine tagasi SimpleSAMLphp paigaldusleheküljele" msgid "Go back to the file list" msgstr "Mine tagasi failide nimekirja" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Kasutajatoe koduleht" @@ -235,6 +267,9 @@ msgstr "Kasutajatunnus või parool pole õige" msgid "Incorrect username or password." msgstr "Kasutajatunnus või parool pole õige." +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" @@ -254,6 +289,9 @@ msgstr "LDAP on kasutajate andmebaas ja sisselogimisel püütakse LDAP-andmebaa msgid "Labeled URI" msgstr "Sildistatud URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Ametlik nimi" @@ -307,6 +345,10 @@ msgstr "Metaandmeid ei leitud" msgid "Metadata overview" msgstr "Metaandmete ülevaade" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobiil" @@ -328,6 +370,10 @@ msgstr "RelayState puudub" msgid "No SAML message provided" msgstr "SAML-teade puudub" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "SAML-vastust ei pakutud" @@ -343,6 +389,9 @@ msgstr "Sertifikaat puudub" msgid "No errors found." msgstr "Tõrkeid ei leitud" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Ei" @@ -457,6 +506,9 @@ msgstr "SAML 2.0 SP metaandmed" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 teenusepakkuja (hostitud)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Vali" @@ -512,6 +564,9 @@ msgstr "Paistab, et SimpleSAMLphp on vigaselt seadistatud." msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp tõrge" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Ilmnes mingi tõrge" @@ -581,6 +636,10 @@ msgstr "Selle päringu algataja ei täitnud RelayState parameetrit, mis näitab, msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Tuvastusteenusele saadetud parameetrid ei vastanud nõuetele." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Seadistustes on vaikimisi parool (auth.adminpassword) muutmata. Palun muuda seadistustefaili." @@ -610,6 +669,9 @@ msgstr "Tiitel" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -644,6 +706,9 @@ msgstr "WS-Federation identiteedipakkuja (kaug)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation teenusepakkuja (hostitud)" +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 "Identiteedipakkuja poolt saadetud vastust ei aktsepteeritud." @@ -655,6 +720,9 @@ msgstr "Tõrge tekkis, kui see identiteedipakkuja püüdis luua autentimisvastus 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 "World" +msgstr "" + msgid "XML metadata" msgstr "XML-metaandmed" @@ -664,10 +732,18 @@ msgstr "Jah, kõigist teenustest" msgid "Yes, continue" msgstr "Jah, jätka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Sa külastasid Assertion Consumer Service liidest, kuid ei pakkunud SAML autentimisvastust." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Sa külastasid SingleLogoutService liidest, kui ei pakkunud SAML LogoutRequest või LogoutResponse." @@ -715,8 +791,15 @@ msgstr "Sa saatsid midagi sisselogimislehele, kuid miskipärast parooli ei saade msgid "Your attributes" msgstr "Sinu atribuudid" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Sinu sessioon kehtib veel %remaining% sekundit." msgid "[Preferred choice]" msgstr "[Eelistatud valik]" + +msgid "not set" +msgstr "" diff --git a/locales/eu/LC_MESSAGES/messages.po b/locales/eu/LC_MESSAGES/messages.po index cbe5acaa7f..58b2fbcde2 100644 --- a/locales/eu/LC_MESSAGES/messages.po +++ b/locales/eu/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Afiliazioa" @@ -50,6 +63,9 @@ msgstr "Kautotze okerra: zure nabigatzaileak ez du bidali ziurtagiririk " 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." @@ -62,6 +78,10 @@ msgstr "Eskaera okerra aurkikuntza zerbitzuari" msgid "CAS Error" msgstr "CAS Errorea" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Ziurtagiriak" @@ -93,6 +113,9 @@ msgstr "Harremanetarako informazioa:" 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" @@ -103,6 +126,9 @@ msgstr "Jaioteguna" msgid "Debug information" msgstr "Arazketa informazioa" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Bistaratzeko izena" @@ -180,6 +206,9 @@ msgstr "Azal ezazu zer egin duzun errore honetara iristeko..." msgid "Fax number" msgstr "Fax-zenbakia" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Izena" @@ -189,6 +218,9 @@ msgstr "Itzuli SimpleSAMLphp instalazio orrira " msgid "Go back to the file list" msgstr "Itzuli fitxategien zerrendara" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Laguntza teknikoaren orria " @@ -235,6 +267,9 @@ msgstr "Erabiltzaile-izena edo pasahitz okerra" msgid "Incorrect username or password." msgstr "Erabiltzaile-izena edo pasahitza okerra" +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" @@ -254,6 +289,9 @@ msgstr "LDAP erabiltzaileen datu basea da, eta sartzea erabakitzen duzunean beha msgid "Labeled URI" msgstr "URI etiketatua" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Izen legala" @@ -307,6 +345,10 @@ msgstr "Ez dira metadatuak aurkitu" msgid "Metadata overview" msgstr "Ikusi metadatuak" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mugikorra" @@ -328,6 +370,10 @@ msgstr "RelayState zehaztu gabe" msgid "No SAML message provided" msgstr "SAML mezua falta da" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "SAML erantzuna falta da" @@ -343,6 +389,9 @@ msgstr "Ziurtagiri gabe" msgid "No errors found." msgstr "Ez da errorerik aurkitu" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Ez" @@ -454,6 +503,9 @@ msgstr "SAML 2.0 SP Adibidea" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 Zerbitzu hornitzailea (Anfitrioia)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Hautatu" @@ -509,6 +561,9 @@ msgstr "Badirudi errore bat jazo dela SimpleSAMLphp-en konfigurazioan" msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp-en errorea" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Errore bat jazo da" @@ -578,6 +633,10 @@ msgstr "Eskaera honen abiarazleak ez du ematen ondoren nora joan adierazten duen msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Aurkikuntza zerbitzuari bidalitako prametroak ez dira zehaztapenera doitzen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Ez da aldatu konfigurazio fitxategiaren pasahitzaren (auth.adminpassword) balio lehenetsia. Mesedez, edita ezazu fitxategia" @@ -607,6 +666,9 @@ msgstr "Tratamendua" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -641,6 +703,9 @@ msgstr "WS-Federation Identitate hornitzailea (Urrunekoa)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation Zerbitzu hornitzailea (Anfitrioia)" +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 "Ezin izan da identitatearen hornitzaileak bidalitako erantzuna onartu." @@ -652,6 +717,9 @@ msgstr "Identitatearen hornitzaileak errore bat antzeman du kautotze erantzuna 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 "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 "World" +msgstr "" + msgid "XML metadata" msgstr "XML metadatuak" @@ -661,10 +729,18 @@ msgstr "Bai, zerbitzu guztiak" msgid "Yes, continue" msgstr "Bai, jarraitu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Baieztapen kontsumitzailearen interfazera sartu zara baina ez duzu SAML kautotze erantzun bat erantsi." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "SingleLogoutService interfazera sartu zara baina ez duzu erantsi SAML LogoutRequest edo LogoutResponse mezurik" @@ -712,8 +788,15 @@ msgstr "Sarrera orrira zerbait bidali duzu baina, arrazoiren bategatik, pasahitz msgid "Your attributes" msgstr "Atributuak" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Zure saioa %remaining% segundoz izango da baliagarri." msgid "[Preferred choice]" msgstr "[Aukera gogokoena]" + +msgid "not set" +msgstr "" diff --git a/locales/fi/LC_MESSAGES/messages.po b/locales/fi/LC_MESSAGES/messages.po index cc6fad691d..8893885258 100644 --- a/locales/fi/LC_MESSAGES/messages.po +++ b/locales/fi/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Suhde organisaatioon" @@ -23,6 +36,33 @@ msgstr "Uloskirjautumispyynnön käsittelyn yrityksessä tapahtui virhe" msgid "An unhandled exception was thrown." msgstr "Käsittelemätön poikkeus heitetty" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:112 +msgid "Authentication aborted" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:202 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:214 +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:277 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +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" @@ -35,6 +75,10 @@ msgstr "Vääränlainen pyynti discovery-palveluun" msgid "CAS Error" msgstr "CAS virhe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Change your home organization" msgstr "Muuta kotiorganisaatiotasi" @@ -57,6 +101,9 @@ msgstr "Virhe asetuksissa" msgid "Contact information:" msgstr "Yhteystiedot" +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" @@ -67,6 +114,9 @@ msgstr "Syntymäaika" msgid "Debug information" msgstr "Virheenetsintätietoja" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Näyttönimi" @@ -85,6 +135,10 @@ msgstr "Domain-osio" msgid "E-mail address:" msgstr "sähköpostiosoite:" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:279 +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 "Syötä tunnuksesi ja salasanasi" @@ -131,6 +185,9 @@ msgstr "Kerro mitä teit kun virhe ilmeni:" msgid "Fax number" msgstr "Faksinumero" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Etunimet" @@ -140,6 +197,9 @@ msgstr "Palaa SimpleSAMLphp asennussivulle" msgid "Group membership" msgstr "Ryhmän jäsenyys" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Helpdeskin kotisivu" @@ -174,6 +234,9 @@ 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" @@ -193,6 +256,9 @@ msgstr "LDAP on käyttäjätietokanta, ja kirjautuessassi tarvitsemme yhteyden L msgid "Labeled URI" msgstr "Kotisivu" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Virallinen nimi" @@ -233,6 +299,14 @@ msgstr "Sähköposti" msgid "Manager" msgstr "Manager" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Metadata not found" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Kännykkä" @@ -254,6 +328,10 @@ msgstr "Ei RelayState " msgid "No SAML message provided" msgstr "SAML-viesti puuttui" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "SAML-vastaus puuttuu" @@ -266,6 +344,9 @@ msgstr "Ei oikeutta" msgid "No certificate" msgstr "Ei sertifikaattia" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "ei" @@ -353,6 +434,9 @@ msgstr "Palaa palveluun" msgid "SAML 2.0 SP Demo Example" msgstr "SAML 2.0 SP esimerkki" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Valitse" @@ -365,6 +449,9 @@ msgstr "Lähetä sähköposti helpdeskille." msgid "Send error report" msgstr "Lähetä virheraportti" +msgid "Sending message" +msgstr "" + msgid "Service Provider" msgstr "Palveluntarjoaja" @@ -384,9 +471,20 @@ msgstr "Vaikuttaa siltä, että SimpleSAMLphp:na asetuksissa on virhe." msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp virhe" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Virhe" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "State information lost" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "State information lost, and no way to restart the request" +msgstr "" + msgid "Street" msgstr "Katu" @@ -400,6 +498,10 @@ msgstr "Puhelinnumero" 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)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:278 +msgid "The authentication was aborted by the user" +msgstr "" + 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ä:" @@ -426,10 +528,18 @@ msgstr "Pyynnön luoja ei tarjonnut RelayState arvoa, joka ilmaisisi minne jatka 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ä." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Ylläpitäjän salasanaa (auth.adminpassword) ei ole vaihtunut oletusarvosta. Ole hyvä ja muokkaa asetustiedostoa." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:204 +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 "SimpleSAMLphp-asenuksen määrittelyissä on virhe. Mikäli olet tämän palvelun ylläpitäjä tulee sinun varmistua metadatan oikeellisuudesta." @@ -448,6 +558,14 @@ msgstr "Tämä virhe on todennäköisestä oireena SimpleSAMLphp:n vääristä a msgid "Title" msgstr "Titteli" +msgid "Tracking number" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:237 +#, 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." @@ -471,6 +589,9 @@ msgstr "Tunnus" msgid "WS-Fed SP Demo Example" msgstr "WS-FED SP esimerkki" +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 "Emme hyväksyneet identiteetintarjoajan vastausta." @@ -482,16 +603,27 @@ msgstr "Virhe tapahtui kun identiteetintarjoaja pyrki luomaan vastauksen tunnist 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 "World" +msgstr "" + msgid "Yes, all services" msgstr "Kyllä, kaikista palveluista" msgid "Yes, continue" msgstr "Kyllä" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Yritit Assertion Consumer Service-liittymään, mutta et tarjonnut SAML tunnistautumisvastausta." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Yritit kertauloskirjautumisliittymään, mutta et tarjonnut SAML LogoutRequest:iä tai LogoutRespons:ia." @@ -527,8 +659,15 @@ msgstr "Lähetit jotain kirjautumissivulle, mutta jostain syystä salasanaa ei l msgid "Your attributes" msgstr "Attribuuttisi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Istuntosi on vielä voimassa %remaining% sekuntia" 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 4f81a99351..2e0e4fcd9c 100644 --- a/locales/fr/LC_MESSAGES/messages.po +++ b/locales/fr/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Affiliation" @@ -50,6 +63,9 @@ msgstr "Échec de l'authentification : votre navigateur n'a pas présenté de ce 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" @@ -62,6 +78,10 @@ msgstr "Mauvaise requête au service de découverte automatique (discovery servi msgid "CAS Error" msgstr "Erreur CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Certificats" @@ -93,6 +113,9 @@ msgstr "Coordonnées :" 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" @@ -103,6 +126,9 @@ msgstr "Date de naissance" msgid "Debug information" msgstr "Information de déboguage" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Nom pour affichage" @@ -180,6 +206,9 @@ msgstr "Expliquez ce que vous faisiez lorsque cette erreur est apparue..." msgid "Fax number" msgstr "Numéro de fax" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Prénom" @@ -189,6 +218,9 @@ msgstr "Retournez à la page d'installation de SimpleSAML." msgid "Go back to the file list" msgstr "Retour à la liste des fichiers" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Page web de l'assistance technique" @@ -235,6 +267,9 @@ msgstr "Nom d'utilisateur ou mot de passe incorrect" msgid "Incorrect username or password." msgstr "Mauvais identifiant ou mot de passe." +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" @@ -254,6 +289,9 @@ msgstr "La base de données utilisateur est un annuaire LDAP, et quand vous essa msgid "Labeled URI" msgstr "URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "État civil" @@ -307,6 +345,10 @@ msgstr "Métadonnées non trouvées" msgid "Metadata overview" msgstr "Vue d'ensemble des métadonnées" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobile" @@ -328,6 +370,10 @@ msgstr "Pas d'information RelayState" msgid "No SAML message provided" msgstr "Aucun message SAML fourni" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Aucune réponse SAML fournie" @@ -343,6 +389,9 @@ msgstr "Aucun certificat présenté" msgid "No errors found." msgstr "Aucune erreur." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Non" @@ -457,6 +506,9 @@ msgstr "Métadonnées de SP SAML 2.0" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "Fournisseur de service SAML 2.0 local" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Sélectionner" @@ -512,6 +564,9 @@ msgstr "Il semble que SimpleSAMLphp soit mal configuré." msgid "SimpleSAMLphp error" msgstr "erreur de SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Une erreur est survenue" @@ -581,6 +636,10 @@ msgstr "L'émetteur de cette requête n'a pas fourni de paramètre RelayState in 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "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." @@ -610,6 +669,9 @@ msgstr "Titre" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -644,6 +706,9 @@ msgstr "Fournisseur d'identité Shib 1.3 distant" msgid "WS-Federation Service Provider (Hosted)" msgstr "Fournisseur de service WS-federation local" +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 "Nous n'avons pas accepté la réponse envoyée par le fournisseur d'identité." @@ -655,6 +720,9 @@ msgstr "Une erreur s'est produite lorsque ce fournisseur d'identité a essayé d 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 "World" +msgstr "" + msgid "XML metadata" msgstr "Métadonnées XML" @@ -664,10 +732,18 @@ msgstr "Oui, de tous les services" msgid "Yes, continue" msgstr "Oui" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Vous avez accédé à l'interface du service de traitement des assertions, mais vous n'avez pas fourni de réponse d'authentification SAML." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Vous avez accédé à l'interface SingleLogoutService, mais vous n'avez pas fourni de LogoutRequest ou LogoutResponse SAML." @@ -715,8 +791,15 @@ msgstr "Vous avez envoyé quelque chose sur la page d'identification mais pour u msgid "Your attributes" msgstr "Vos attributs" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Votre session est encore valide pour %remaining% secondes." msgid "[Preferred choice]" msgstr "[Choix préféré]" + +msgid "not set" +msgstr "" diff --git a/locales/he/LC_MESSAGES/messages.po b/locales/he/LC_MESSAGES/messages.po index 1bf4c075b4..022fa1ce8d 100644 --- a/locales/he/LC_MESSAGES/messages.po +++ b/locales/he/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "השתייכות" @@ -50,6 +63,9 @@ msgstr "ההיזדהות נכשלה: הדפדפן לא שלח תעודה" 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 "התקבלה בקשה לא חוקית" @@ -62,6 +78,10 @@ msgstr "בקשה שגויה לשירות גילוי" msgid "CAS Error" msgstr "שגיאת שהם" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "תעודות" @@ -93,6 +113,9 @@ 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 "אין אפשרות ליצור תגובת הזדהות" @@ -103,6 +126,9 @@ msgstr "תאריך לידה" msgid "Debug information" msgstr "מידע דבאג" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "הראה שם" @@ -180,6 +206,9 @@ msgstr "הסבר מה עשית כשהתרחשה השגיאה..." msgid "Fax number" msgstr "מס' פקס" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "שם פרטי" @@ -189,6 +218,9 @@ msgstr "חזור לדף ההתקנה של SimpleSAMLphp" msgid "Go back to the file list" msgstr "חזור אל רשימת הקבצים" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "תמיכה טכנית" @@ -235,6 +267,9 @@ 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" @@ -254,6 +289,9 @@ msgstr "LDAP הוא מסד הנתונים המכיל את המשתמשים, וכ msgid "Labeled URI" msgstr "סיווג URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "שם רשמי" @@ -307,6 +345,10 @@ msgstr "לא נמצא מטא-מידע" msgid "Metadata overview" msgstr "סקירת מטא-מידע" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "נייד" @@ -328,6 +370,10 @@ msgstr "אין RelayState" msgid "No SAML message provided" msgstr "לא סופקו הודעות SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "לא סופקה תגובת SAML" @@ -343,6 +389,9 @@ msgstr "אין תעודה" msgid "No errors found." msgstr "לא נמצאו שגיאות." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "לא" @@ -457,6 +506,9 @@ msgstr "מטא-מידע של סש מסוג SAML 2.0 " msgid "SAML 2.0 Service Provider (Hosted)" msgstr "ספק שירות מקומי מסוג SAML 2.0" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "בחר" @@ -512,6 +564,9 @@ msgstr "נראה ש SimpleSAMLphp לא מוגדר נכון" msgid "SimpleSAMLphp error" msgstr "שגיאה ב SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "התרחשה שגיאה" @@ -581,6 +636,10 @@ msgstr "יוזם הבקשה לא סיפק פרמטר RelayState המציין ל msgid "The parameters sent to the discovery service were not according to specifications." msgstr "הפרמטרים שנשלחו לשירות גילוי לא היו על פי מפרט." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "הסיסמה בהגדרות (auth.adminpassword) לא שונתה מהערך ההתחלתי. אנא ערוך את קובץ ההגדרות." @@ -610,6 +669,9 @@ 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%" @@ -644,6 +706,9 @@ msgstr "ספק זהות מרוחק מסוג איחוד-WS" msgid "WS-Federation Service Provider (Hosted)" msgstr "ספק שירות מקומי מסוג איחוד-WS" +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 "לא קיבלנו את התגובה שנשלחה מספק הזהות." @@ -655,6 +720,9 @@ 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" @@ -664,10 +732,18 @@ msgstr "כן, כל השרותים" msgid "Yes, continue" msgstr "כן, המשך" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "ניגשת לממשק הכרזת שירות ללקוח, אבל לא סיפקת תגובת הזדהות SAML. " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "ניגשת לממשק שירות ההתנתקות הכללית, אבל לא סיפקת בקשת או תגובת התנתקות של SAML." @@ -715,8 +791,15 @@ msgstr "שלחת משהו לדף הכניסה למערכת, אבל בגלל סי msgid "Your attributes" msgstr "התכונות שלך" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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/hr/LC_MESSAGES/messages.po b/locales/hr/LC_MESSAGES/messages.po index 26bb701558..cfcbdaf7a6 100644 --- a/locales/hr/LC_MESSAGES/messages.po +++ b/locales/hr/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Povezanost s ustanovom" @@ -50,6 +63,9 @@ msgstr "Neuspješna autentifikacija: vaš web preglednik nije poslao digitalni c 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" @@ -62,6 +78,10 @@ msgstr "Lokacijskom servisu poslan je neispravan upit" msgid "CAS Error" msgstr "CAS greška" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Certifikati" @@ -93,6 +113,9 @@ msgstr "Kontakt podaci:" 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" @@ -103,6 +126,9 @@ msgstr "Datum rođenja" msgid "Debug information" msgstr "Informacije o greški" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Mrežno ime" @@ -180,6 +206,9 @@ msgstr "Opišite što ste radili kad se pojavila greška..." msgid "Fax number" msgstr "Broj telefaksa" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Ime" @@ -189,6 +218,9 @@ msgstr "Natrag na početnu stranicu SimpleSAMLphp instalacije" msgid "Go back to the file list" msgstr "Vrati se natrag na popis datoteka" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Stranice službe za podršku korisnicima" @@ -235,6 +267,9 @@ msgstr "Neispravna korisnička oznaka ili zaporka" msgid "Incorrect username or password." msgstr "Neispravna korisnička oznaka ili zaporka." +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" @@ -254,6 +289,9 @@ msgstr "Došlo je do greške prilikom spajanja na LDAP poslužitelj. Vaši podac msgid "Labeled URI" msgstr "URI adresa" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Službeni naziv" @@ -307,6 +345,10 @@ msgstr "Metapodaci nisu pronađeni" msgid "Metadata overview" msgstr "Pregled metapodataka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Broj mobilnog telefona" @@ -328,6 +370,10 @@ msgstr "Parametar RelayState nije zadan" msgid "No SAML message provided" msgstr "Nije dostavljena nikakva SAML poruka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Nije dostavljen nikakav SAML odgovor" @@ -343,6 +389,9 @@ msgstr "Nema digitalnog certifikata" 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" @@ -457,6 +506,9 @@ msgstr "SAML 2.0 metapodaci o davatelju usluge" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 davatelj usluge (lokalni)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Odaberi" @@ -512,6 +564,9 @@ msgstr "Čini se da je SimpleSAMLphp pogrešno iskonfiguriran." msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp greška" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Pojavila se greška" @@ -581,6 +636,10 @@ msgstr "Aplikacija koja je inicirala ovaj zahtjev nije poslala RelayState parame msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Parametri poslani lokacijskom servisu nisu u ispravnom formatu." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Izvorna vrijednost administratorske zaporke (parametar auth.adminpassword) u konfiguraciji nije promjenjena. Molimo promjenite administratorsku zaporku u konfiguracijskoj datoteci." @@ -610,6 +669,9 @@ msgstr "Naziv" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -644,6 +706,9 @@ msgstr "WS-Federation autentifikacijski servis (udaljeni)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation davatelj usluge (lokalni)" +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 "Nije prihvaćen odgovor koji je poslao autentifikacijski servis." @@ -655,6 +720,9 @@ msgstr "Došlo je do greške prilikom kreiranja odgovora na autentifikacijski za 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 "World" +msgstr "" + msgid "XML metadata" msgstr "Metapodaci u XML formatu" @@ -664,10 +732,18 @@ msgstr "Da, iz svih servisa" msgid "Yes, continue" msgstr "Da, nastavi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Pristupili ste sučelju za obradu SAML potvrda, ali niste dostavili SAML autentifikacijski odgovor." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Pristupili ste sučelju za odjavljivanje iz sustava jedinstvene autentifikacije, ali niste dostavili SAML LogoutRequest ili LogoutResponse poruku." @@ -715,8 +791,15 @@ msgstr "Iz nekog razloga autentifikacijskom servisu nije proslijeđena vaša zap msgid "Your attributes" msgstr "Vaši atributi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Vaša sjednica bit će valjana još %remaining% sekundi." msgid "[Preferred choice]" msgstr "[Primarni odabir]" + +msgid "not set" +msgstr "" diff --git a/locales/hu/LC_MESSAGES/messages.po b/locales/hu/LC_MESSAGES/messages.po index 9cc85744dd..74b1f47573 100644 --- a/locales/hu/LC_MESSAGES/messages.po +++ b/locales/hu/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Viszony" @@ -50,6 +63,9 @@ msgstr "Azonosítási hiba: a böngésző nem küldött tanúsítványt." 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" @@ -62,6 +78,10 @@ msgstr "Érvénytelen kérés érkezett a felfedező szolgáltatáshoz (discover msgid "CAS Error" msgstr "CAS hiba" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Tanúsítványok." @@ -93,6 +113,9 @@ msgstr "Elérési információk" 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" @@ -103,6 +126,9 @@ msgstr "Születési dátum" msgid "Debug information" msgstr "Bővebb információ a hibáról" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Megjeleníthető név" @@ -180,6 +206,9 @@ msgstr "Írja le milyen lépéseket hajtott végre, aminek végén hiba történ msgid "Fax number" msgstr "Fax" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Keresztnév" @@ -189,6 +218,9 @@ msgstr "Vissza a SimpleSAMLphp telepítő oldalára" msgid "Go back to the file list" msgstr "Vissza az fájlok listájához" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Ügyfélszolgálat weboldala" @@ -232,6 +264,9 @@ msgstr "Hibás felhasználónév vagy jelszó" msgid "Incorrect username or password." msgstr "Hibás felhasználói név vagy jelszó!" +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" @@ -251,6 +286,9 @@ msgstr "A felhasználói adatbázis LDAP alapú, ezért bejelentkezéshez szüks msgid "Labeled URI" msgstr "Honlap cím" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Hivatalos név (noreduperson)" @@ -304,6 +342,10 @@ msgstr "Metadata nem található" msgid "Metadata overview" msgstr "Metaadat áttekintés" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobil" @@ -325,6 +367,10 @@ msgstr "Nincs RelayState paraméter" msgid "No SAML message provided" msgstr "Hiányzó SAML üzenet" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Nincs SAML válasz" @@ -340,6 +386,9 @@ msgstr "Hiányzó tanúsítvány." msgid "No errors found." msgstr "Nincs hiba." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Nem" @@ -460,6 +509,9 @@ msgstr "SAML 2.0 SP Metaadatok" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 alkalmazásszolgáltató (helyi)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Választ" @@ -515,6 +567,9 @@ msgstr "Valószínűleg helytelenül lett konfigurálva a SimpleSAMLphp" msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp hiba" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Hiba történt" @@ -584,6 +639,10 @@ msgstr "A kérés összeállítója nem adta meg a RelayState paramétert, amely 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "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! " @@ -613,6 +672,9 @@ msgstr "Cí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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -647,6 +709,9 @@ msgstr "WS-Federation alkalmazásszolgáltató (távoli)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation alkalmazásszolgáltató (helyi)" +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 "Nem fogadtuk el a személyazonosság-szolgáltató (IdP) által küldött válaszüzenetet." @@ -658,6 +723,9 @@ msgstr "Hiba történt az azonosítási válaszüzenet összeállítása során. 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 "World" +msgstr "" + msgid "XML metadata" msgstr "XML metaadat" @@ -667,10 +735,18 @@ msgstr "Igen, minden alkalmazásból" msgid "Yes, continue" msgstr "Igen, elfogadom" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Az Assertion Consumer Service interfészen SAML Authentication Response üzenetet kell megadni." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "A Single Logout interfészen vagy SAML LogoutRequest vagy LogoutResponse üzenetet kell megadni." @@ -718,8 +794,15 @@ msgstr "Valamilyen oknál fogva a jelszó nem olvasható. Kérjük, próbálja msgid "Your attributes" msgstr "Az ön attribútumai" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Az ön munkamenete még %remaining% másodpercig érvényes" msgid "[Preferred choice]" msgstr "[Kívánt választás]" + +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 1bdba9df5e..eed19be308 100644 --- a/locales/id/LC_MESSAGES/messages.po +++ b/locales/id/LC_MESSAGES/messages.po @@ -1,9 +1,22 @@ 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:238 +msgid "%MESSAGE%" +msgstr "%MESSAGE%" + 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" +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:103 +msgid "Admin password not set to a hashed value" +msgstr "Kata sandi admin tidak disetel ke nilai hash" msgid "Affiliation" msgstr "Afiliasi" @@ -21,38 +34,41 @@ 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 "Exception yang tidak tertangani telah di-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 "Autentifikasi dibatalkan" +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 autentifikasi di sumber %AUTHSOURCE%. Alasannya adalah: %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 "Autentifikasi gagal: Sertifikat yang browser Anda kirimkan invalid atau tidak dapat dibaca" +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 "Autentifikasi gagal: sertifikat yang browser anda kirimkan tidak dikenal" +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 "Autentifikasi gagal: Browser anada tidak mengirim sertifikat" +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" @@ -60,7 +76,11 @@ 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:92 +msgid "Cannot retrieve session data" +msgstr "Tidak dapat mengambil data sesi" msgid "Certificates" msgstr "Sertifikat" @@ -75,7 +95,7 @@ msgid "Choose your home organization" msgstr "Pilih Basis Organisasi Anda" msgid "Common name" -msgstr "Common Name" +msgstr "Nama umum" msgid "Completed" msgstr "Selesai" @@ -88,11 +108,14 @@ msgid "Configuration error" msgstr "Error konfigurasi" msgid "Contact information:" -msgstr "Informasi Kontak" +msgstr "Informasi Kontak:" 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" @@ -103,20 +126,23 @@ msgstr "Tanggal lahir" msgid "Debug information" msgstr "Informasi debug" +msgid "Debug information to be used by your support staff" +msgstr "Informasi debug yang akan digunakan oleh staf pendukung Anda" + msgid "Display name" msgstr "Nama yang ditampilkan" msgid "Distinguished name (DN) of person's home organization" -msgstr "Distinguished name (DN) of person's home organization" +msgstr "Distinguished name (DN) dari basis organisasi" msgid "Distinguished name (DN) of person's primary Organizational Unit" -msgstr "Distinguished name (DN) of person's primary Organizational Unit" +msgstr "Distinguished name (DN) dari basis utama unit organisasi" msgid "Distinguished name (DN) of the person's home organizational unit" -msgstr "Distinguished name (DN) of the person's home organizational unit" +msgstr "Distinguished name (DN) dari unit basis organisasi" msgid "Do you want to logout from all the services above?" -msgstr "Apakah anda ingin logout dari semua layanan diatas ?" +msgstr "Apakah anda ingin keluar dari semua layanan diatas?" msgid "Domain component (DC)" msgstr "Domain component(DC)" @@ -142,30 +168,30 @@ msgstr "Error" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 msgid "Error creating request" -msgstr "Error membuat 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 meload 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 response dari 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 Request Logout" +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" msgid "Error report sent" msgstr "Laporan error dikirimkan" @@ -178,7 +204,10 @@ msgid "Explain what you did when this error occurred..." msgstr "Jelaskan apa yang Anda lakukan ketika error ini terjadi..." msgid "Fax number" -msgstr "No Fax" +msgstr "Nomor Fax" + +msgid "Format" +msgstr "Format" msgid "Given name" msgstr "Nama" @@ -189,20 +218,23 @@ msgstr "Kembali ke halaman instalasi SimpleSAMLphp" msgid "Go back to the file list" msgstr "Kembali ke daftar file" +msgid "Hello, Untranslated World!" +msgstr "Halo, Dunia yang Tidak Diterjemahkan!" + msgid "Help desk homepage" msgstr "Homepage Help desk" msgid "Help! I don't remember my password." -msgstr "Tolong! Saya tidak ingat password saya" +msgstr "Tolong! Saya tidak ingat password saya." 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." +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." 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." +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." msgid "Home organization domain name" -msgstr "Home organization domain name" +msgstr "Nama domain basis organisasi" msgid "Home postal address" msgstr "Alamat pos rumah" @@ -217,13 +249,13 @@ msgid "Identity assurance profile" msgstr "Profil penjamin identitas" msgid "Identity number assigned by public authorities" -msgstr "Identity number assigned by public authorities" +msgstr "No identitas yang diberikan oleh otoritas publik" 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:" +msgstr "Jika Anda melaporkan error ini, tolong laporkan juga nomor pelacakan sehingga memungkinkan untuk menemukan lokasi sesi anda pada log tersedia untuk administrator sistem:" msgid "In SAML 2.0 Metadata XML format:" -msgstr "Dalam format XML Metadata SAML 2.0" +msgstr "Dalam format XML Metadata SAML 2.0:" 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:" @@ -233,7 +265,10 @@ msgid "Incorrect username or password" msgstr "Username atau password salah" msgid "Incorrect username or password." -msgstr "Username atau password salah" +msgstr "Username atau password salah." + +msgid "Information about your current session" +msgstr "Informasi tentang sesi Anda saat ini" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 @@ -245,15 +280,18 @@ msgstr "Foto JPEG" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 msgid "LDAP Error" -msgstr "Error LDAP" +msgstr "Kesalahan 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 adalah database user, dan ketika Anda mencoba login, Kami perlu menghubungi database LDAP. Sebuah error terjadi ketika Kami mencobanya saat ini. " +msgstr "LDAP adalah database user, dan ketika Anda mencoba login, kami perlu menghubungi database LDAP. Sebuah error terjadi ketika kami mencobanya saat ini." msgid "Labeled URI" msgstr "Berlabel URL" +msgid "Language" +msgstr "Bahasa" + msgid "Legal name" msgstr "Nama legal" @@ -264,35 +302,35 @@ msgid "Locality" msgstr "Lokalitas" msgid "Logged out" -msgstr "Log out" +msgstr "Keluar" msgid "Logging out of the following services:" -msgstr "Log out dari layanan-layanan berikut:" +msgstr "Keluar dari layanan-layanan berikut:" msgid "Logging out..." -msgstr "Log out..." +msgstr "Keluar..." msgid "Login" -msgstr "Login" +msgstr "Masuk" msgid "Login at" -msgstr "Login di" +msgstr "Masuk di" msgid "Logout" -msgstr "Logout" +msgstr "Keluar" msgid "Logout failed" -msgstr "Log out gagal" +msgstr "Keluar gagal" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 msgid "Logout information lost" -msgstr "Informasi logout hilang" +msgstr "Informasi keluar hilang" msgid "Mail" -msgstr "Mail" +msgstr "Surat" msgid "Manager" -msgstr "Manager" +msgstr "Manajer" msgid "Message" msgstr "Pesan" @@ -307,6 +345,10 @@ msgstr "Metadata tidak ditemukan" msgid "Metadata overview" msgstr "Ikhtisar Metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "Metode tidak diizinkan" + msgid "Mobile" msgstr "Handphone" @@ -328,23 +370,30 @@ msgstr "Tidak ada RelayState" msgid "No SAML message provided" msgstr "Tidak pesan SAML yang disediakan" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "Tidak ada permintaan SAML yang diberikan" + #: /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:86 msgid "No access" -msgstr "Tiaak ada akses" +msgstr "Tidak ada akses" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 msgid "No certificate" msgstr "Tidak ada sertifikat" msgid "No errors found." -msgstr "Tidak ada error yang ditemukan" +msgstr "Tidak ada error yang ditemukan." + +msgid "No identity providers found. Cannot continue." +msgstr "Tidak ditemukan penyedia identitas. Tidak dapat melanjutkan." msgid "No, cancel" -msgstr "Tidak" +msgstr "Tidak, batalkan" msgid "No, only %SP%" msgstr "Tidak, hanya %SP%" @@ -353,13 +402,13 @@ msgid "Notices" msgstr "Pemberitahuan" msgid "On hold" -msgstr "Ditahan" +msgstr "Diberhentikan sementara" 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." +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 "Optional fields" -msgstr "Field-field opsional" +msgstr "Bidang opsional" 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:" @@ -383,7 +432,7 @@ msgid "Organizational number" msgstr "Nomor Organisasi" msgid "Organizational unit" -msgstr "Organizational unit" +msgstr "Unit Organisasi" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:90 #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 @@ -407,7 +456,7 @@ msgid "Person's principal name at home organization" msgstr "Nama kepala pada organisasi asal" msgid "Please select the identity provider where you want to authenticate:" -msgstr "Silahkan pilih identity provider tempat anda ingin melakukan autentifikasi" +msgstr "Silahkan pilih identity provider tempat anda ingin melakukan autentifikasi:" msgid "Post office box" msgstr "PO Box" @@ -457,17 +506,20 @@ msgstr "Metadata SAML 2.0 SP" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "Service Provider SAML 2.0 (Hosted)" +msgid "SAML Subject" +msgstr "Subjek SAML" + msgid "Select" msgstr "Pilih" msgid "Select configuration file to check:" -msgstr "Pilih file konfigurasi untuk diperiksa" +msgstr "Pilih file konfigurasi yang akan diperiksa:" msgid "Select your identity provider" -msgstr "Pilih identity provider anda" +msgstr "Pilih identitas provider anda" msgid "Send e-mail to help desk" -msgstr "Kirim e-mail ke help dek" +msgstr "Kirim e-mail ke meja bantuan" msgid "Send error report" msgstr "Kirim laporan error" @@ -507,13 +559,16 @@ msgstr "Diagnostik SimpleSAMLphp" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:195 msgid "SimpleSAMLphp appears to be misconfigured." -msgstr "SimpleSAMLphp sepertinya telah salah dikonfigurasi" +msgstr "SimpleSAMLphp sepertinya telah salah dikonfigurasi." msgid "SimpleSAMLphp error" msgstr "Error simpelSAMLphp" +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 "Some error occurred" -msgstr "Beberapa error telah terjadi" +msgstr "Beberapa kesalahan telah terjadi" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 msgid "State information lost" @@ -527,7 +582,7 @@ msgid "Street" msgstr "Jalan" msgid "Submit message" -msgstr "Submit pesan" +msgstr "Serahkan pesan" msgid "Superfluous options in config file" msgstr "Pilihan tak beguna di file konfigurasi" @@ -544,13 +599,13 @@ msgstr "Identity Provider merespon dengan error. (Kode status di Response SAML a #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:259 msgid "The authentication was aborted by the user" -msgstr "Autentifikasi dibatalkan oleh user" +msgstr "Otentikasi dibatalkan oleh user" 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 "The error report has been sent to the administrators." -msgstr "Laporan error telah dikirimkan ke administrator" +msgstr "Laporan kesalahan telah dikirim ke administrator." msgid "The following fields was not recognized" msgstr "Field-field berikut ini tidak dapat dikenali" @@ -571,27 +626,31 @@ msgstr "Halaman yang diminta tidak ditemykan, Error-nya adalah: %REASON% URL-nya #: /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." +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 " #: /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." +msgstr "Orang yang memulai request ini tidak menyediakan parameter RelayState yang mengindikasikan kemana selanjutnya pergi." #: /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" +msgstr "Parameter-parameter yang dikirimkan ke layanan penemuan tidak sesuai dengan spesifikasi." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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" #: /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." +msgstr "Password di konfigurasi (auth.adminspassword) tidak berubah dari nilai awal. Silahkan edit file konfigurasi." #: /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%" +msgstr "Terjadi kesalahan pada request ke halaman ini. Alasannya adalah: %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 "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. " +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." #: /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." @@ -608,7 +667,10 @@ msgid "Title" msgstr "Gelar" 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" +msgstr "Untuk melihat detail entiti SAML, klik pada bagian header entiti SAML." + +msgid "Tracking number" +msgstr "Nomor resi" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format @@ -620,7 +682,7 @@ msgstr "Tidak dapat log out dari satu atau beberapa layanan. Untuk memastikan se #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 msgid "Unhandled exception" -msgstr "Exception yang tidak tertangani" +msgstr "Pengecualian yang tidak tertangani" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:100 msgid "Unknown certificate" @@ -644,6 +706,9 @@ msgstr "Identity Provider WS-Federation (Remote)" msgid "WS-Federation Service Provider (Hosted)" msgstr "Servide Provider WS-Federation (Hosted)" +msgid "Warning" +msgstr "Peringatan" + #: /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." @@ -653,7 +718,10 @@ msgid "When this identity provider tried to create an authentication response, a msgstr "Ketika identity provider ini mencoba untuk membuat response autentifikasi, error terjadi." 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." +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 "World" +msgstr "Dunia" msgid "XML metadata" msgstr "metadata XML" @@ -662,11 +730,19 @@ msgid "Yes, all services" msgstr "Ya, semua layanan" msgid "Yes, continue" -msgstr "Yam lanjutkan" +msgstr "Ya, lanjutkan" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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." #: /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. " +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." + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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." #: /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." @@ -679,10 +755,10 @@ 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 "You are also logged in on these services:" -msgstr "Anda juga telah log out dari layanan berikut: " +msgstr "Anda juga masuk pada layanan berikut:" 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" +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 "You are now successfully logged out from %SP%." msgstr "Sekarang anda telah sukses log out dari %SP%." @@ -704,19 +780,26 @@ msgid "You have chosen %HOMEORG% as your home organization. If this is wr msgstr "Anda telah memilih %HOMEORG% sebagai basis organisasi anda. Jika ini salah anda dapat memilih yang lain." msgid "You have previously chosen to authenticate at" -msgstr "Sebelumnya anda telah memilih untuk melakukan autentifikasi di " +msgstr "Sebelumnya anda telah memilih untuk melakukan autentifikasi di" msgid "You have successfully logged out from all services listed above." -msgstr "Anda telah berhasil log out dari semua layanan yang tercantuh diatas." +msgstr "Anda telah berhasil keluar dari semua layanan yang tercantuh diatas." 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." +msgstr "Anda mengirimkan sesuatu ke halaman masuk, tetapi karena suatu alasan tertentu password tidak terkirimkan, Silahkan coba lagi." msgid "Your attributes" msgstr "Attribut Anda" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Your session is valid for %remaining% seconds from now." -msgstr "Session anda valid untuk %remaining% detik dari sekarang." +msgstr "Sesi anda valid untuk %remaining% detik dari sekarang." msgid "[Preferred choice]" msgstr "Pilihan yang disukai" + +msgid "not set" +msgstr "tidak di atur" diff --git a/locales/it/LC_MESSAGES/messages.po b/locales/it/LC_MESSAGES/messages.po index 9a2ebe57d7..d49a27b939 100644 --- a/locales/it/LC_MESSAGES/messages.po +++ b/locales/it/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Affiliazione" @@ -50,6 +63,9 @@ msgstr "L'autenticazione è fallita perché il tuo browser non ha inviato alcun 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." @@ -62,6 +78,10 @@ msgstr "Richiesta erronea al discovery service" msgid "CAS Error" msgstr "Errore CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Certificati" @@ -93,6 +113,9 @@ msgstr "Informazioni di contatto:" 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" @@ -103,6 +126,9 @@ msgstr "Data di nascita" msgid "Debug information" msgstr "Informazioni di debug" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Nome da visualizzare" @@ -180,6 +206,9 @@ msgstr "Descrivi cosa stavi facendo al momento dell'errore" msgid "Fax number" msgstr "Numero di fax" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Nome" @@ -189,6 +218,9 @@ msgstr "Torna alla pagine di installazione di SimpleSAMLphp" msgid "Go back to the file list" msgstr "Tornare indietro alla lista dei file" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Homepage del servizio di assistenza" @@ -235,6 +267,9 @@ msgstr "Nome utente o password non corretti" msgid "Incorrect username or password." msgstr "Nome utente o password errati." +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" @@ -254,6 +289,9 @@ msgstr "Gli utenti sono memorizzati nel server LDAP, che viene quindi contattato msgid "Labeled URI" msgstr "Etichetta URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Nome legale" @@ -307,6 +345,10 @@ msgstr "Metadati non trovati" msgid "Metadata overview" msgstr "Visione generale dei metadati" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Cellulare" @@ -328,6 +370,10 @@ msgstr "Nessun RelayState" msgid "No SAML message provided" msgstr "Nessun messaggio SAML fornito" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Nessuna risposta SAML fornita." @@ -343,6 +389,9 @@ msgstr "Nessun certificato" msgid "No errors found." msgstr "Nessun errore trovato." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "No" @@ -457,6 +506,9 @@ msgstr "Metadati SAML 2.0 SP" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 Service Provider (Hosted)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Selezionare" @@ -512,6 +564,9 @@ msgstr "Sembra che SimpleSAMLphp non sia configurato correttamente." msgid "SimpleSAMLphp error" msgstr "Errore di SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Si è verificato un errore" @@ -581,6 +636,10 @@ msgstr "Chi ha iniziato la richiesta non ha fornito un parametro RelayState per msgid "The parameters sent to the discovery service were not according to specifications." msgstr "I parametri inviati al discovery service non rispettano le specifiche." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "La password definita nella configurazione (auth.adminpassword) non è stata cambiata dal valore di default. Si prega di modificare il file di configurazione." @@ -610,6 +669,9 @@ msgstr "Titolo" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -644,6 +706,9 @@ msgstr "WS-Federation Identity Provider (Remoto)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation Service Provider (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 "Non è stata accettata una risposta proveniente dall'Identity Provider." @@ -655,6 +720,9 @@ msgstr "Si è verificato un errore durante la fase di creazione della risposta d 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 "World" +msgstr "" + msgid "XML metadata" msgstr "Metadati XML" @@ -664,10 +732,18 @@ msgstr "Si, da tutti i servizi" msgid "Yes, continue" msgstr "Sì, continuare" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Hai acceduto all'interfaccia di Assertion Consumer Service, ma senza fornire un messaggio SAML di Authentication Response." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Hai acceduto all'interfaccia di SingleLogoutService, ma senza fornire un messaggio SAML di LogoutRequest o LogoutResponse." @@ -715,8 +791,15 @@ msgstr "Sono state inviate delle informazioni alla pagina di login, ma per qualc msgid "Your attributes" msgstr "I tuoi attributi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "La tua sessione è valida per ulteriori %remaining% secondi." msgid "[Preferred choice]" msgstr "[Scelta preferita]" + +msgid "not set" +msgstr "" diff --git a/locales/ja/LC_MESSAGES/messages.po b/locales/ja/LC_MESSAGES/messages.po index ecc85dfea2..a0738ee37d 100644 --- a/locales/ja/LC_MESSAGES/messages.po +++ b/locales/ja/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "所属" @@ -50,6 +63,9 @@ msgstr "認証失敗: あなたのブラウザは証明書を送信しません 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 "不正なリクエストを受信しました" @@ -62,6 +78,10 @@ msgstr "サービスディスカバリ中の不正なリクエスト" msgid "CAS Error" msgstr "CASエラー" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Change your home organization" msgstr "あなたの組織を変更してください" @@ -90,6 +110,9 @@ 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 "認証応答を生成出来ませんでした" @@ -100,6 +123,9 @@ msgstr "生年月日" msgid "Debug information" msgstr "デバッグ情報" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "表示名" @@ -174,6 +200,9 @@ msgstr "何をした際にこのエラーが発生したかを教えてくださ msgid "Fax number" msgstr "FAX番号" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "名" @@ -183,6 +212,9 @@ msgstr "SimpleSAMLphpの設定ページに戻る" msgid "Go back to the file list" msgstr "ファイルリストに戻る" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "ヘルプデスクページ" @@ -229,6 +261,9 @@ 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" @@ -248,6 +283,9 @@ msgstr "あなたがログインを行う時、LDAPというユーザーデー msgid "Labeled URI" msgstr "URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "正式名称" @@ -301,6 +339,10 @@ msgstr "メタデータが見つかりません" msgid "Metadata overview" msgstr "メタデータの概要" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "携帯電話" @@ -322,6 +364,10 @@ msgstr "RelayStateがありません" msgid "No SAML message provided" msgstr "SAMLメッセージがありません" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "SAMLレスポンスがありません" @@ -337,6 +383,9 @@ msgstr "証明書がありません" msgid "No errors found." msgstr "エラーは見つかりませんでした。" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "いいえ" @@ -451,6 +500,9 @@ msgstr "SAML 2.0 SPメタデータ" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0サービスプロバイダ(ホスト)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "選択" @@ -506,6 +558,9 @@ msgstr "SimpleSAMLphpの設定にミスがあるようです。" msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphpエラー" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "幾つかのエラーが発生しました" @@ -575,6 +630,10 @@ msgstr "リクエスト生成時にはRelayStateパラメーターを提供さ msgid "The parameters sent to the discovery service were not according to specifications." msgstr "サービスディスカバリに送信したパラメータが仕様に従っていません。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "設定のパスワード(auth.adminpassword)は既定値から変更されていません設定ファイルを編集してください。" @@ -604,6 +663,9 @@ 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%" @@ -638,6 +700,9 @@ 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 "アイデンティティプロバイダから送信されたレスポンスを受け付けませんでした。" @@ -649,6 +714,9 @@ 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メタデータ" @@ -658,10 +726,18 @@ msgstr "はい、全てのサービスからログアウトします" msgid "Yes, continue" msgstr "はい、続けます" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Assertion Consumer Serviceインターフェースへアクセスしましたが、SAML認証レスポンスが提供されませんでした。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "SingleLogoutServiceインターフェースへアクセスしましたが、SAML LogoutRequestやLogoutResponseが提供されませんでした。" @@ -709,8 +785,15 @@ msgstr "あなたはログインページで何かを送信しましたが、何 msgid "Your attributes" msgstr "属性" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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/lb/LC_MESSAGES/messages.po b/locales/lb/LC_MESSAGES/messages.po index 115e0c89ee..41bbc9db12 100644 --- a/locales/lb/LC_MESSAGES/messages.po +++ b/locales/lb/LC_MESSAGES/messages.po @@ -1,49 +1,107 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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." +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:103 +msgid "Admin password not set to a hashed value" +msgstr "" msgid "Affiliation" msgstr "Zesummenschloss" msgid "Affiliation at home organization" -msgstr "Gruppen Zougehéiregket" +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 Unfro as en Fehler geschitt." +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 "En Fehler as geschit beim Bearbeschten vun der Logout Unfro" +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 Unfro fir den 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 "Allgeméngen Numm" +msgstr "Allgemengen Numm" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:75 msgid "Configuration error" -msgstr "Konfiguratiounsfehler" +msgstr "Konfiguratiounsfeeler" + +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" msgid "Date of birth" -msgstr "Gebuertsdaag" +msgstr "Gebuertsdag" msgid "Debug information" msgstr "Debug Informatiounen" +msgid "Debug information to be used by your support staff" +msgstr "Debug Informatiounen déi vun eisem Support genotzt ginn" + msgid "Display name" msgstr "Ugewisenen Numm" @@ -59,50 +117,67 @@ msgstr "Domain Komponent" msgid "E-mail address:" msgstr "E-mail Adress" +#: /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" + msgid "Enter your username and password" -msgstr "Gid w.e.g Aeren Benotzernumm an d Passwuert an" +msgstr "Gitt w.e.g Ären Benotzernumm an d'Passwuert an" msgid "Entitlement regarding the service" msgstr "Berechtegung" msgid "Error" -msgstr "Fehler" +msgstr "Feeler" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:76 msgid "Error creating request" -msgstr "Fehler beim Erstellen vun der Unfro" +msgstr "Feeler beim Erstellen vun der Ufro" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 msgid "Error loading metadata" -msgstr "Fehler beim Lueden vun den Meta Données" +msgstr "Feeler beim Luede vun de Meta Donnéeë" #: /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" +msgstr "Feeler beim Beaarbechte vun der Ufro vum Service Provider" #: /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" +msgstr "Feeler beim Beaarbechte vun de Äntwert vum IdP" #: /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" +msgstr "Feeler beim Beaarbechte vun der Logout Ufro" + +#: /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:194 msgid "Error when communicating with the CAS server." -msgstr "Fehler beim Kommunizeiren mam CAS Server" +msgstr "Feeler beim Kommunizéiere mam CAS Server" msgid "Explain what you did when this error occurred..." -msgstr "Erklaert w.e.g genau waat dir gemaacht hud fir den Fehler auszeléisen..." +msgstr "Erkläert w.e.g genau wat Dir gemaacht hutt fir de Feeler auszeléisen..." msgid "Fax number" msgstr "Fax Nummer" +msgid "Format" +msgstr "Format" + msgid "Given name" -msgstr "Familliennumm" +msgstr "Familljennumm" + +msgid "Hello, Untranslated World!" +msgstr "Hallo, net iwwersate Welt" msgid "Help! I don't remember my password." -msgstr "Hellef! Ech hun mäin Passwuert vergiess!" +msgstr "Hëllef! Ech hu mäi Passwuert vergiess!" + +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 "Home organization domain name" msgstr "Eendeiteg Heemorganisatiouns ID" @@ -114,16 +189,23 @@ 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" +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:" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Incorrect username or password" +msgstr "Falsche Benotzernumm oder Passwuert" msgid "Incorrect username or password." -msgstr "Falschen Benotzernumm oder Passwuert" +msgstr "Falsche Benotzernumm oder Passwuert" + +msgid "Information about your current session" +msgstr "Informatiounen iwwer Är aktuell Sessioun" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 @@ -131,18 +213,21 @@ msgid "Invalid certificate" msgstr "Ongültegen Zertifikat" msgid "JPEG Photo" -msgstr "Photo am JPEG Format" +msgstr "Foto am JPEG Format" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 msgid "LDAP Error" -msgstr "LDAP Fehler" +msgstr "LDAP Feeler" #: /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." +msgstr "LDAP ass eng Benotzerdatenbank a wann een alogge well geet se kontaktéiert. Dobäi ass des Kéier ee Fehler geschitt." msgid "Labeled URI" -msgstr "Beschrëfteten URI" +msgstr "Beschrëften URI" + +msgid "Language" +msgstr "Sprooch" msgid "Local identity number" msgstr "Identitéitsnummer" @@ -151,7 +236,14 @@ msgid "Locality" msgstr "Uertschaft" msgid "Login" -msgstr "Login" +msgstr "Aloggen" + +msgid "Logout" +msgstr "Ausloggen" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Logout information lost" +msgstr "Auslogg Informatioune verluer" msgid "Mail" msgstr "E-mail" @@ -159,6 +251,14 @@ msgstr "E-mail" msgid "Manager" msgstr "Manager" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Metadata not found" +msgstr "Metadate net fonnt" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "GSM Nummer" @@ -167,26 +267,37 @@ msgstr "Spëtznumm" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:88 msgid "No RelayState" -msgstr "Den ReplayState Parameter fehlt" +msgstr "De ReplayState Parameter feelt" #: /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" +msgstr "Keen SAML Message uginn" + +#: /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 Aentwert ungin" +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 "Optionnal kennt dir aer E-mail Adress angin, fir dass den Administrator aerch fir weider Froen kontaktéieren kann:" +msgstr "Optional kennt dir Är E-mail Adress aginn, fir dass den Administrateur Iech fir weider Froe kontaktéiere kann:" msgid "Organization" msgstr "Organisatioun" @@ -198,7 +309,7 @@ msgid "Organization's legal name" msgstr "Numm vun der Organisatioun" msgid "Organizational homepage" -msgstr "Organisatiouns Websait" +msgstr "Organisatiouns Websäit" msgid "Organizational number" msgstr "Organisatiounsnummer" @@ -206,12 +317,17 @@ msgstr "Organisatiounsnummer" msgid "Organizational unit" msgstr "Organisatiounseenheet" +#: /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 "Password" msgstr "Passwuert" #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 msgid "Password not set" -msgstr "Passwuert net angin" +msgstr "Passwuert net aginn" msgid "Persistent pseudonymous ID" msgstr "Persistent anonym ID" @@ -219,6 +335,9 @@ msgstr "Persistent anonym ID" msgid "Person's principal name at home organization" msgstr "Haaptnumm bei der Heemorganisatioun" +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" @@ -229,7 +348,7 @@ msgid "Postal code" msgstr "Postleitzuel" msgid "Preferred language" -msgstr "Lieblingssprooch" +msgstr "Liblingssprooch" msgid "Primary affiliation" msgstr "Haapt Zougehéiregkeet" @@ -237,21 +356,47 @@ msgstr "Haapt Zougehéiregkeet" msgid "Remember" msgstr "Zoustëmmung verhalen" +msgid "Remember my choice" +msgstr "Verhal mäi Choix" + msgid "Report errors" -msgstr "Fehler matdeelen" +msgstr "Feeler matdeelen" + +msgid "SAML Subject" +msgstr "SAML Sijet" + +msgid "Select" +msgstr "Wielt" + +msgid "Select your identity provider" +msgstr "Wielt Ären Identity Provider" msgid "Send error report" -msgstr "Fehlerbericht schécken" +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 sin." +msgstr "SimpleSAMLphp schéint falsch konfiguréiert ze sinn." msgid "SimpleSAMLphp error" -msgstr "SimpleSAMLphp Fehler" +msgstr "SimpleSAMLphp Feeler" + +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" @@ -262,70 +407,141 @@ msgstr "Virnumm" 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 "Dei Debug Informatiounen hei drënner kinnten den Administrator interesséiren:" +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%" + +#: /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 Unfro huet ken ReplayState Parameter matgeschekt." +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 woren net korrekt par rapport zur Specifikatioun" +msgstr "D'Parameter fir den Disovery Service waren net korrekt par Rapport zur Spezifikatioun" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 Konfiguration (auth.adminpassword) as bis elo net geännertgin. W.e.g aennert daat an der Konfiguratioun." +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 sin. Wann dir den Administrator vun dësem Service sid, dann stellt sëcher dass d Meta Données richteg angeriicht sin." +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 kruut eng Authenticatiounsunfro vun engem Service provider, mais et gouf en Fehler wéi déi sollt bearbescht gin." +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ësen Punkt as net aktivéiert. Verifizéiert d Optiounen an der SimpleSAMLphp Konfiguratioun." +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ë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" +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 "Tracking number" +msgstr "Tracking Nummer" + +#: /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" + +#: /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 Aentwert vum Identity Provider net akzeptéiren" +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 Authenticatiounsaentwert as en Fehler passéiert" +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 "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." +msgid "World" +msgstr "Welt" msgid "Yes, continue" msgstr "Jo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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:272 +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 hud keen gültegen Zertifikat" +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 "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." +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 71045a8224..9b74860e5a 100644 --- a/locales/lt/LC_MESSAGES/messages.po +++ b/locales/lt/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Pareigos" @@ -50,6 +63,9 @@ msgstr "Autentikacija nepavyko: Jūsų naršyklė neišsiuntė jokio sertifikato 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" @@ -62,6 +78,10 @@ msgstr "Neteisinga užklausa kreipiantis į \"discovery\" servisą" msgid "CAS Error" msgstr "CAS klaida" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Sertifikatai" @@ -93,6 +113,9 @@ msgstr "Kontaktai:" 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" @@ -103,6 +126,9 @@ msgstr "Gimimo data" msgid "Debug information" msgstr "Detali informacija" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Rodomas vardas" @@ -180,6 +206,9 @@ msgstr "Aprašykite kokius veiksmus atlikote, kuomet pasirodė ši klaida..." msgid "Fax number" msgstr "Fakso numeris" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Vardas" @@ -189,6 +218,9 @@ msgstr "Grįžti atgal į SimpleSAMLphp diegimo puslapį" msgid "Go back to the file list" msgstr "Grįžti į failų sąrašą" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Naudotojų aptarnavimo puslapis" @@ -235,6 +267,9 @@ msgstr "Neteisingas prisijungimo vardas arba slaptažodis" msgid "Incorrect username or password." msgstr "Neteisingas prisijungimo vardas arba slaptažodis." +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" @@ -254,6 +289,9 @@ msgstr "LDAP yra naudotojų duomenų bazė. Jums jungiantis, mums reikalinga pri msgid "Labeled URI" msgstr "Žymėtasis URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Juridinis vardas" @@ -307,6 +345,10 @@ msgstr "Metaduomenys nerasti" msgid "Metadata overview" msgstr "Metaduomenų peržiūra" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobiliojo numeris" @@ -328,6 +370,10 @@ msgstr "Nėra perdavimo statuso" msgid "No SAML message provided" msgstr "Nepateikta SAML žinutė" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Nepateiktas SAML atsakymas" @@ -343,6 +389,9 @@ msgstr "Nėra sertifikato" msgid "No errors found." msgstr "Klaidų nerasta." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Ne" @@ -457,6 +506,9 @@ msgstr "SAML 2.0 SP Metaduomenys" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 Paslaugos teikėjas (vietinis)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Pasirinkite" @@ -512,6 +564,9 @@ msgstr "SimpleSAMLphp tikriausiai klaidingai sukonfigūruotas." msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp klaida" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Įvyko tam tikra klaida" @@ -581,6 +636,10 @@ msgstr "Šios užklausos iniciatorius nepateikė perdavimo statuso parametro, ku msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Parametrai, nusiųsti \"discovery\" servisui neatitiko specifikacijų." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Konfigūracijoje esantis slaptažodis (auth.adminpassword) nepakeistas iš pradinės reikšmės. Prašome pakeisti konfigūracijos failą." @@ -610,6 +669,9 @@ msgstr "Pavadinimas" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -644,6 +706,9 @@ msgstr "WS-Federacijos Paslaugos teikėjas (nutolęs)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federacijos Paslaugos teikėjas (vietinis)" +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 "Mes nepriimame užklausos, siųstos iš tapatybių teikėjo." @@ -655,6 +720,9 @@ msgstr "Šiam tapatybių teikėjui bandant sukurti autentikacijos atsakymą įvy 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 "World" +msgstr "" + msgid "XML metadata" msgstr "XML metaduomenys" @@ -664,10 +732,18 @@ msgstr "Taip, visų paslaugų" msgid "Yes, continue" msgstr "Taip, tęsti" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Jūs pasiekėte vartotojų aptarnavimo servisą, tačiau nepateikėte SAML autentikacijos atsakymo." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Jūs pasiekėte SingleLogoutService paslaugą, tačiau nepateikėte SAML LogoutRequest ar LogoutResponse užklausų." @@ -715,8 +791,15 @@ msgstr "Jūs kažką nusiuntėte į prisijungimo puslapį, tačiau dėl kažkoki msgid "Your attributes" msgstr "Jūsų atributai" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Jūsų sesija galioja %remaining% sekundžių, skaičiuojant nuo šio momento." msgid "[Preferred choice]" msgstr "[Rekomenduojame]" + +msgid "not set" +msgstr "" diff --git a/locales/lv/LC_MESSAGES/messages.po b/locales/lv/LC_MESSAGES/messages.po index 2874d7abbd..3c9f642925 100644 --- a/locales/lv/LC_MESSAGES/messages.po +++ b/locales/lv/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Piederība" @@ -50,6 +63,9 @@ msgstr "Autentifikācija neizdevās, jo Jūsu interneta pārlūks nav atsūtīji 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" @@ -62,6 +78,10 @@ msgstr "Nepareizs pieprasījums discovery servisam" msgid "CAS Error" msgstr "CAS kļūda" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Sertifikāti" @@ -93,6 +113,9 @@ msgstr "Kontaktinformācija" 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" @@ -103,6 +126,9 @@ msgstr "Dzimšanas datums" msgid "Debug information" msgstr "Atkļūdošanas infomācija" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Parādāmais vārds" @@ -180,6 +206,9 @@ msgstr "Aprakstiet, ko Jūs darījāt, kad notika kļūda." msgid "Fax number" msgstr "Fakss" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Vārds" @@ -189,6 +218,9 @@ msgstr "Iet atpakaļ uz SimpleSAMLphp instalācijas lapu" msgid "Go back to the file list" msgstr "Iet atpakaļ uz sarakstu" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Palīdzības dienesta interneta lapa" @@ -235,6 +267,9 @@ msgstr "Nekorekts lietotāja vārds vai parole" msgid "Incorrect username or password." msgstr "Nekorekts lietotāja vārds vai parole." +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" @@ -254,6 +289,9 @@ msgstr "LDAP ir lietotāju datu bāze. Pieslēdzoties pie tās ir jāspēj piek msgid "Labeled URI" msgstr "URI nosaukums" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Juridiskais nosaukums" @@ -307,6 +345,10 @@ msgstr "Metadati nav atrasti" msgid "Metadata overview" msgstr "Metadatu pārskats" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobilais telefons" @@ -328,6 +370,10 @@ msgstr "Nav RelayState" msgid "No SAML message provided" msgstr "Nav SAML ziņojuma" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Nav SAML atbildes" @@ -343,6 +389,9 @@ msgstr "Nav sertifikāta" msgid "No errors found." msgstr "Kļūdas nav atrastas." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Nē" @@ -457,6 +506,9 @@ msgstr "SAML 2.0 SP metadati" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 servisa piegādātājs (hostēts)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Izvēlēties" @@ -512,6 +564,9 @@ msgstr "SimpleSAMLphp nav pareizi nokonfigurēts." msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp kļūda" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Notikusi kļūda" @@ -581,6 +636,10 @@ msgstr "Pieprasījuma veidotājs nav norādījis RelayState parametru, kas parā msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Discovery servisam nosūtītie parametri neatbilst specifikācijām." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Konfigurācijā auth.adminpassword parolei ir noklusētā vērtība, tā nav mainīta. Lūdzu nomainiet to, labojot failu." @@ -610,6 +669,9 @@ msgstr "Amats" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -644,6 +706,9 @@ msgstr "WS-Federation servisa piegādātājs (attālināts)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation servisa piegādātājs (hostēts)" +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 "Netiek akceptēta atbilde no identitātes piegādātāja." @@ -655,6 +720,9 @@ msgstr "Kad identitātes piegādātājs mēģināja izveigot autentifikācijas 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 "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 "World" +msgstr "" + msgid "XML metadata" msgstr "XML metadati" @@ -664,10 +732,18 @@ msgstr "Jā, no visiem" msgid "Yes, continue" msgstr "Jā, turpināt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Jūs izmantojat Assertion Consumer Service interfeisu, bet neesat devis SAML autentifikācijas atbildi." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Jūs izmantojat SingleLogoutService interfeisu, bet neesat devis SAML atslēgšanās pieprasījumu vai atslēgšanās atbildi." @@ -715,8 +791,15 @@ msgstr "Kaut kādu iemeslu dēļ parole nav nosūtīta. Lūdzu mēģiniet vēlre msgid "Your attributes" msgstr "Atribūti" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Sesija ir derīga %remaining% sekundes no šī brīža." msgid "[Preferred choice]" msgstr "(Mana labākā izvēle)" + +msgid "not set" +msgstr "" diff --git a/locales/nb/LC_MESSAGES/messages.po b/locales/nb/LC_MESSAGES/messages.po index 7e7d8b1a1d..96afebde0a 100644 --- a/locales/nb/LC_MESSAGES/messages.po +++ b/locales/nb/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Tilhørighet" @@ -50,6 +63,9 @@ msgstr "Autentisering feilet: nettleseren din sendte ikke noe klient-sertifikat" 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" @@ -62,6 +78,10 @@ msgstr "Ugyldig forespørsel til SAML 2.0 Discovery-tjenesten" msgid "CAS Error" msgstr "CAS-feil" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Sertifikater" @@ -93,6 +113,9 @@ msgstr "Kontaktinformasjon:" 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" @@ -103,6 +126,9 @@ msgstr "Fødselsdato" msgid "Debug information" msgstr "Detaljer for feilsøking" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Navn som normalt vises" @@ -180,6 +206,9 @@ msgstr "Forklar hva du gjorde da feilen oppsto..." msgid "Fax number" msgstr "Faksnummer" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Fornavn" @@ -241,6 +270,9 @@ msgstr "Feil brukernavn og passord" msgid "Incorrect username or password." msgstr "Feil brukernavn eller passord." +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" @@ -260,6 +292,9 @@ msgstr "LDAP er brukerkatalogen, og når du forsøker å logge inn prøver vi å msgid "Labeled URI" msgstr "URI med valgfri tilleggskommentar" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Folkeregistrert navn" @@ -313,6 +348,10 @@ msgstr "Ingen metadata funnet" msgid "Metadata overview" msgstr "Oversikt over metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobiltelefon" @@ -334,6 +373,10 @@ msgstr "Spesifikasjon av RelayState mangler" msgid "No SAML message provided" msgstr "Ingen SAML-melding angitt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Ingen SAML-respons angitt" @@ -349,6 +392,9 @@ msgstr "Ikke noe sertifikat mottatt" msgid "No errors found." msgstr "Ingen feil funnet" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Nei" @@ -463,6 +509,9 @@ msgstr "SAML 2.0 SP metadata" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 tjenesteleverandør (intern)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Velg" @@ -518,6 +567,9 @@ msgstr "Det virker som det er en feil i oppsettet av SimpleSAMLphp." msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp-feil" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "En feil har oppstått" @@ -587,6 +639,10 @@ msgstr "Kilden til denne forespørselen har ikke angitt noen RelayState-paramete msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Parametere sendt til discovery-tjenesten var ikke i korrekt format." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Admin passordet i konfigurasjonen (auth.adminpassword) er ikke satt til noe annet enn default verdien. Bytt passord i config.php." @@ -616,6 +672,9 @@ msgstr "Tittel" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -650,6 +709,9 @@ msgstr "WS-Federation identitetsleverandør (ekstern)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation tjenesteleverandør (intern)" +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 "Svaret mottatt fra innloggingstjenesten kan ikke aksepteres." @@ -673,10 +735,18 @@ msgstr "Ja, alle tjenestene over" msgid "Yes, continue" msgstr "Ja, fortsett" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Du brukte AssertionConsumerService-grensesnittet uten å angi en SAML AuthenticationResponse." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Du brukte SingleLogoutService-grensesnittet uten å angi enten en SAML LogoutRequest eller en LogoutResponse." @@ -724,8 +794,15 @@ msgstr "Du kontaktet loginsiden, men passordet ble ikke sendt med. Forsøk igjen msgid "Your attributes" msgstr "Dine attributter" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Din sesjon er gyldig i %remaining% sekunder fra nå." msgid "[Preferred choice]" msgstr "[Foretrukket valg]" + +msgid "not set" +msgstr "" diff --git a/locales/nl/LC_MESSAGES/messages.po b/locales/nl/LC_MESSAGES/messages.po index 5b56248a38..591895b340 100644 --- a/locales/nl/LC_MESSAGES/messages.po +++ b/locales/nl/LC_MESSAGES/messages.po @@ -1,7 +1,16 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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." @@ -17,6 +26,10 @@ msgstr "ADFS SP Metadata" msgid "ADFS Service Provider (Remote)" msgstr "ADFS Service Provider (Remote)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Affiliatie" @@ -62,6 +75,9 @@ msgstr "Authenticatie niet gelukt: uw browser stuurde geen certificaat" msgid "Authentication source error" msgstr "Fout in authenticatiebron" +msgid "Authentication status" +msgstr "" + msgid "Back" msgstr "Terug" @@ -112,6 +128,9 @@ msgstr "Contactinformatie" msgid "Converted metadata" msgstr "Geconverteerde metadata" +msgid "Copy to clipboard" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:78 msgid "Could not create authentication response" msgstr "Authenticatie response kon niet worden aangemaakt" @@ -122,6 +141,9 @@ msgstr "Geboortedatum" msgid "Debug information" msgstr "Debuginformatie" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Weergavenaam" @@ -214,6 +236,9 @@ msgstr "Ga terug naar de lijst van files." msgid "Group membership" msgstr "Groepslidmaatschap" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Helpdesk homepage" @@ -260,6 +285,9 @@ msgstr "Incorrecte gebruikersnaam of wachtwoord" msgid "Incorrect username or password." msgstr "Gebruikersnaam of wachtwoord niet bekend." +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" @@ -279,6 +307,9 @@ msgstr "De account database is in LDAP opgeslagen en bij het inloggen moet er wo msgid "Labeled URI" msgstr "URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Officiële naam" @@ -332,6 +363,10 @@ msgstr "Metadata niet gevonden" msgid "Metadata overview" msgstr "Metadata-overzicht" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobiel" @@ -372,6 +407,9 @@ msgstr "Geen certificaat" msgid "No errors found." msgstr "Geen fouten gevonden." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Nee" @@ -559,6 +597,9 @@ msgstr "SimpleSAMLphp is niet goed geconfigureerd." msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp-fout" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Er is een fout opgetreden" @@ -628,6 +669,10 @@ msgstr "De afzender van deze request heeft geen RelayState parameter meegestuurd 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Het default wachtwoord in de configuratie (auth.adminpassword) is niet aangepast; pas de configuratie aan aub." @@ -657,6 +702,9 @@ msgstr "Titel" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -691,6 +739,9 @@ msgstr "WS-Federation Identity Provider (Remote)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation Service Provider (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 "Het antwoord van de Identity Provider is niet geaccepteerd." @@ -702,6 +753,9 @@ msgstr "Tijdens het aanmaken van een authenticatie response door deze Identity P 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 "World" +msgstr "" + msgid "XML metadata" msgstr "XML metadata" diff --git a/locales/nn/LC_MESSAGES/messages.po b/locales/nn/LC_MESSAGES/messages.po index e745298533..3f30bf480d 100644 --- a/locales/nn/LC_MESSAGES/messages.po +++ b/locales/nn/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Rolle ved organisasjonen" @@ -50,6 +63,9 @@ msgstr "Feil autentisering: din browser sender ikkje sertifikat" 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" @@ -62,6 +78,10 @@ msgstr "Feilforma spørsmål til Discovery Service" msgid "CAS Error" msgstr "CAS-feil" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Sertifikat" @@ -93,6 +113,9 @@ msgstr "Kontaktinformasjon:" 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" @@ -103,6 +126,9 @@ msgstr "Fødselsdato" msgid "Debug information" msgstr "Detaljar for feilsøking" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Namn slik det normalt blir vist fram" @@ -180,6 +206,9 @@ msgstr "Forklar kva du gjorde og korleis feilen oppsto..." msgid "Fax number" msgstr "Faksnummer" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Fornamn" @@ -241,6 +270,9 @@ msgstr "Feil brukarnamn eller passord" msgid "Incorrect username or password." msgstr "Feil brukarnamn eller passord." +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" @@ -260,6 +292,9 @@ msgstr "LDAP er brukardatabase din. Når du prøver å logga inn må vi kontakt msgid "Labeled URI" msgstr "URI med valfri tilleggskommentar" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Namn registrert i Folkeregisteret" @@ -313,6 +348,10 @@ msgstr "Finn ikkje metadata" msgid "Metadata overview" msgstr "Oversikt over metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobiltelefon" @@ -334,6 +373,10 @@ msgstr "Ingen RelayState" msgid "No SAML message provided" msgstr "Fann ikkje SAML-melding" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Fann ikkje SAML-svar" @@ -349,6 +392,9 @@ msgstr "Manglar sertifikat" msgid "No errors found." msgstr "Fann ingen feil" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Nei" @@ -463,6 +509,9 @@ msgstr "SAML 2.0 Service Provider (Hosted)" msgid "SAML 2.0 Service Provider (Remote)" msgstr "SAML 2.0 Service Provider (Remote)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Vel" @@ -518,6 +567,9 @@ msgstr "SimpleSAMLphp ser ut til å vera feilkonfigurert" msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp feil" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Ein feilsituasjon oppsto" @@ -587,6 +639,10 @@ msgstr "Opphavsmann til denne meldinga har ikkje sendt med RelayState-parameter. 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Passordet i konfigurasjonen din (auth.adminpassword) er ikkje endra frå opprinneleg verdi, dette er usikkert. Gå inn i konfigurasjonen og bytt passord." @@ -616,6 +672,9 @@ msgstr "Tittel" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -650,6 +709,9 @@ msgstr "WS-Federation Identity Provider (Remote)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation Service Provider (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 "Svaret frå IdP var ikkje akseptabelt for oss" @@ -673,10 +735,18 @@ msgstr "Ja, logg ut frå alle" msgid "Yes, continue" msgstr "Ja, fortsett" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Du har brukt grensesnittet for mottak av meldingar (Assertion Consumer Service), men utan å senda SAML autentiseringssvar (Authentication Response)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Du har bruk utloggingstenesta (SingleLogoutService), men har ikkje sendt utloggingsmelding (SAML LogoutRequest) eller utloggingssvar (SAML LogoutResponse)" @@ -724,8 +794,15 @@ msgstr "Passordet blei ikkje sendt. Prøv på nytt." msgid "Your attributes" msgstr "Dine attributtar" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Din sesjon er gyldig i %remaining% sekund frå no." msgid "[Preferred choice]" msgstr "Beste val" + +msgid "not set" +msgstr "" diff --git a/locales/no/LC_MESSAGES/messages.po b/locales/no/LC_MESSAGES/messages.po index 7e7d8b1a1d..46cdfd1e18 100644 --- a/locales/no/LC_MESSAGES/messages.po +++ b/locales/no/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Tilhørighet" @@ -50,6 +63,9 @@ msgstr "Autentisering feilet: nettleseren din sendte ikke noe klient-sertifikat" 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" @@ -62,6 +78,10 @@ msgstr "Ugyldig forespørsel til SAML 2.0 Discovery-tjenesten" msgid "CAS Error" msgstr "CAS-feil" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Sertifikater" @@ -93,6 +113,9 @@ msgstr "Kontaktinformasjon:" 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" @@ -103,6 +126,9 @@ msgstr "Fødselsdato" msgid "Debug information" msgstr "Detaljer for feilsøking" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Navn som normalt vises" @@ -180,6 +206,9 @@ msgstr "Forklar hva du gjorde da feilen oppsto..." msgid "Fax number" msgstr "Faksnummer" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Fornavn" @@ -241,6 +270,9 @@ msgstr "Feil brukernavn og passord" msgid "Incorrect username or password." msgstr "Feil brukernavn eller passord." +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" @@ -260,6 +292,9 @@ msgstr "LDAP er brukerkatalogen, og når du forsøker å logge inn prøver vi å msgid "Labeled URI" msgstr "URI med valgfri tilleggskommentar" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Folkeregistrert navn" @@ -313,6 +348,10 @@ msgstr "Ingen metadata funnet" msgid "Metadata overview" msgstr "Oversikt over metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobiltelefon" @@ -334,6 +373,10 @@ msgstr "Spesifikasjon av RelayState mangler" msgid "No SAML message provided" msgstr "Ingen SAML-melding angitt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Ingen SAML-respons angitt" @@ -349,6 +392,9 @@ msgstr "Ikke noe sertifikat mottatt" msgid "No errors found." msgstr "Ingen feil funnet" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Nei" @@ -463,6 +509,9 @@ msgstr "SAML 2.0 SP metadata" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 tjenesteleverandør (intern)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Velg" @@ -518,6 +567,9 @@ msgstr "Det virker som det er en feil i oppsettet av SimpleSAMLphp." msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp-feil" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "En feil har oppstått" @@ -587,6 +639,10 @@ msgstr "Kilden til denne forespørselen har ikke angitt noen RelayState-paramete msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Parametere sendt til discovery-tjenesten var ikke i korrekt format." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Admin passordet i konfigurasjonen (auth.adminpassword) er ikke satt til noe annet enn default verdien. Bytt passord i config.php." @@ -616,6 +672,9 @@ msgstr "Tittel" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -650,6 +709,9 @@ msgstr "WS-Federation identitetsleverandør (ekstern)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation tjenesteleverandør (intern)" +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 "Svaret mottatt fra innloggingstjenesten kan ikke aksepteres." @@ -673,10 +735,18 @@ msgstr "Ja, alle tjenestene over" msgid "Yes, continue" msgstr "Ja, fortsett" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Du brukte AssertionConsumerService-grensesnittet uten å angi en SAML AuthenticationResponse." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Du brukte SingleLogoutService-grensesnittet uten å angi enten en SAML LogoutRequest eller en LogoutResponse." @@ -724,8 +794,15 @@ msgstr "Du kontaktet loginsiden, men passordet ble ikke sendt med. Forsøk igjen msgid "Your attributes" msgstr "Dine attributter" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Din sesjon er gyldig i %remaining% sekunder fra nå." msgid "[Preferred choice]" msgstr "[Foretrukket valg]" + +msgid "not set" +msgstr "" diff --git a/locales/pl/LC_MESSAGES/messages.po b/locales/pl/LC_MESSAGES/messages.po index 740c51ae50..a5c5cc58f5 100644 --- a/locales/pl/LC_MESSAGES/messages.po +++ b/locales/pl/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Przynależność (Affiliation)" @@ -47,6 +60,9 @@ msgstr "Nie powiodło się uwierzytelnienie: przeglądarka nie przesłała certy 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" @@ -59,6 +75,10 @@ msgstr "nieprawidłowe żadanie do listy serwisow" msgid "CAS Error" msgstr "Błąd CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Change your home organization" msgstr "Zmień swoją domową organizację" @@ -87,6 +107,9 @@ msgstr "Informacje kontaktowe:" 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" @@ -97,6 +120,9 @@ msgstr "Data urodzenia (Date of birth)" msgid "Debug information" msgstr "Informacja debugger'a" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Nazwa wyświetlana (Display name)" @@ -171,6 +197,9 @@ msgstr "Opisz, co zrobiłeś kiedy wystąpił błąd..." msgid "Fax number" msgstr "Numer Faksu (Fax number)" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Imię (Given name)" @@ -180,6 +209,9 @@ msgstr "Wróc do strony \"instalacja SimpleSAMLphp\"" msgid "Go back to the file list" msgstr "Powrót do listy plików" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Strona domowa pomocy technicznej (Helpdesk)" @@ -220,6 +252,9 @@ msgstr "Blędna nazwa użytkownika lub hasło" msgid "Incorrect username or password." msgstr "Nieprawidłowa nazwa użytkownika lub hasło." +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" @@ -239,6 +274,9 @@ msgstr "LDAP jest bazą uzytkowników i kiedy Ty próbujesz się zalogować, to msgid "Labeled URI" msgstr "Labeled URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Formalna nazwa użytkownika" @@ -292,6 +330,10 @@ msgstr "Nie znaleziono metadanych" msgid "Metadata overview" msgstr "Przegląd metadanych" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Telefon komórkowy (Mobile)" @@ -313,6 +355,10 @@ msgstr "Brak RelayState" msgid "No SAML message provided" msgstr "Nie dostarczono komunikatu SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Nie dostarczo odpowiedzi SAML" @@ -328,6 +374,9 @@ msgstr "Brak certyfikatu" msgid "No errors found." msgstr "Nie znaleziono błędów." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Nie" @@ -442,6 +491,9 @@ msgstr "SAML 2.0 SP - Metadane" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 Dostawca Serwisu (Lokalny)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Wybierz" @@ -497,6 +549,9 @@ msgstr "wydaje się, że SimpleSAMLphp jest błędnie skonfigurowany." msgid "SimpleSAMLphp error" msgstr "błąd SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Wystapił jakiś błąd" @@ -566,6 +621,10 @@ msgstr "Inicjator zlecenia nie dostarczył parametru RelayState, wskazującego, 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ą" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Hasło w konfiguracji (auth.adminpassword) ma domyślną wartość. Proszę poprawić konfigurację." @@ -595,6 +654,9 @@ msgstr "Tytuł (Title)" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -626,6 +688,9 @@ msgstr "WS-Federation Dostawca Tożsamości (Zdalny)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation Dostawca Serwisu (Lokalny)" +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 "Nie zakceptowaliśmy odpowiedzi wysłanej przez Dostawcę Tożsamości." @@ -637,6 +702,9 @@ msgstr "Wystapił bład podczas próby utworzenia przez Dostawcę Tożsamości 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 "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 "World" +msgstr "" + msgid "XML metadata" msgstr "XML Metadane" @@ -646,10 +714,18 @@ msgstr "Tak, wszystkie serwisy" msgid "Yes, continue" msgstr "Tak, akceptuję" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Została wywołana usługa Assertion Consumer Service, ale nie dostarczono komunikatu SAML 'Authentication Response'" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Została wywołana usługa SingleLogoutService, ale nie dostarczono komunikatu SAML LogoutRequest lub LogoutResponse." @@ -691,8 +767,15 @@ msgstr "Wysłałeś \"coś\" do strony logowania, ale z jakiś powodów hasło n msgid "Your attributes" msgstr "Twoje atrybuty" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Twoja sesja jest jeszcze ważna przez %remaining% sekund" msgid "[Preferred choice]" msgstr "Preferowany wybór" + +msgid "not set" +msgstr "" diff --git a/locales/pt/LC_MESSAGES/messages.po b/locales/pt/LC_MESSAGES/messages.po index 6f061ba37a..e2ed831e3a 100644 --- a/locales/pt/LC_MESSAGES/messages.po +++ b/locales/pt/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Afiliação com a organização de origem" @@ -26,6 +39,33 @@ 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:112 +msgid "Authentication aborted" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:202 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:214 +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:277 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +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" @@ -38,6 +78,10 @@ msgstr "Pedido incorrecto efectuado ao serviço de descoberta de IdP" msgid "CAS Error" msgstr "Erro de CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Change your home organization" msgstr "Alterar a sua organização de origem" @@ -66,6 +110,9 @@ msgstr "Contactos:" 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" @@ -76,6 +123,9 @@ msgstr "Data de nascimento" msgid "Debug information" msgstr "Informação de debug" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Nome de apresentação" @@ -150,6 +200,9 @@ msgstr "Introduza uma breve explicação do sucedido..." msgid "Fax number" msgstr "Número de Fax" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Nome Próprio" @@ -159,6 +212,9 @@ msgstr "Voltar à página de instalação do SimpleSAMLphp" msgid "Go back to the file list" msgstr "Voltar à lista de ficheiros" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Página do serviço de apoio ao utilizador" @@ -202,6 +258,9 @@ msgstr "Utilizador ou senha incorrecto" msgid "Incorrect username or password." msgstr "Nome de utilizador ou senha incorrecta." +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" @@ -221,6 +280,9 @@ msgstr "Ocorreu um erro ao contactar a base de dados LDAP." msgid "Labeled URI" msgstr "Página web" +msgid "Language" +msgstr "" + msgid "Local identity number" msgstr "Número de Identificação local" @@ -264,9 +326,17 @@ msgstr "Mensagem" msgid "Metadata" msgstr "Metadados" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Metadata not found" +msgstr "" + msgid "Metadata overview" msgstr "Vista geral dos metadados" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Telemóvel" @@ -288,6 +358,10 @@ msgstr "RelayState não definido" msgid "No SAML message provided" msgstr "Mensagem SAML não fornecida" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +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" @@ -296,9 +370,16 @@ msgstr "Mensagem SAML não fornecida" msgid "No access" msgstr "Acesso negado" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No certificate" +msgstr "" + msgid "No errors found." msgstr "Não foram encontrados erros." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Não" @@ -413,6 +494,9 @@ msgstr "Metadados SAML 2.0 SP" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "Fornecedor de serviço (SP) SAML 2.0 (Local)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Escolher" @@ -468,9 +552,20 @@ msgstr "O software SimpleSAMLphp tem um problema de configuração." msgid "SimpleSAMLphp error" msgstr "Erro no SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Ocorreu um erro" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "State information lost" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "State information lost, and no way to restart the request" +msgstr "" + msgid "Street" msgstr "Rua" @@ -490,6 +585,10 @@ msgstr "Telefone" 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)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:278 +msgid "The authentication was aborted by the user" +msgstr "" + 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:" @@ -525,6 +624,10 @@ msgstr "Este pedido foi iniciado sem o parâmetro RelayState necessário para co 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "A password presente na configuração (auth.adminpassword) tem o valor de omissão. Por favor altere esta password no ficheiro de configuração." @@ -554,6 +657,14 @@ msgstr "Título" 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 "Tracking number" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:237 +#, 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 "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." @@ -561,6 +672,10 @@ msgstr "Não foi possível sair de um ou mais serviços. Para garantir que todas msgid "Unhandled exception" msgstr "Excepção não tratada" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:111 +msgid "Unknown certificate" +msgstr "" + msgid "User ID" msgstr "Identificação de utilizador" @@ -579,6 +694,9 @@ msgstr "Fornecedor de identidade (IdP) WS-Federation (Remoto)" msgid "WS-Federation Service Provider (Hosted)" msgstr "Fornecedor de serviço (SP) WS-Federation (Local)" +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 "A resposta emitida pelo fornecedor de identidade não foi aceite." @@ -590,6 +708,9 @@ msgstr "Ocorreu um erro ao criar uma resposta de autenticação neste fornecedor 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 "World" +msgstr "" + msgid "XML metadata" msgstr "Metadados em XML" @@ -599,10 +720,18 @@ msgstr "Sim, todos os serviços" msgid "Yes, continue" msgstr "Sim, Aceito" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Na interface Assertion Consumer Service deve fornecer uma mensagem SAML do tipo Authentication Response." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Na interface SingleLogoutService deve fornecer uma mensagem SAML do tipo LogoutRequest ou LogoutResponse." @@ -650,8 +779,15 @@ msgstr "A senha não foi enviada no seu pedido. Por favor tente de novo." msgid "Your attributes" msgstr "Os seus atributos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "A sua sessão é válida por %remaining% segundos." msgid "[Preferred choice]" msgstr "Escolha preferida" + +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 91% rename from locales/pt-br/LC_MESSAGES/messages.po rename to locales/pt_BR/LC_MESSAGES/messages.po index 86673339fc..da08755257 100644 --- a/locales/pt-br/LC_MESSAGES/messages.po +++ b/locales/pt_BR/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Filiação" @@ -50,6 +63,9 @@ msgstr "Falha na Autenticação: Seu navegador (browser) não enviou nenhum cert 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" @@ -62,6 +78,10 @@ msgstr "Pedido incorreto para o serviço de descoberta" msgid "CAS Error" msgstr "Erro CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Change your home organization" msgstr "Mudar a organização principal" @@ -90,6 +110,9 @@ msgstr "Informações de Contato" 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" @@ -100,6 +123,9 @@ msgstr "Data de Nascimento" msgid "Debug information" msgstr "Informação do Debug" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Nome a ser mostrado" @@ -171,6 +197,9 @@ msgstr "Explique o que você estava fazendo quando aconteceu o erro..." msgid "Fax number" msgstr "Número do Fax" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Nome" @@ -180,6 +209,9 @@ msgstr "Voltar a instalação do SimpleSAMLphp" msgid "Go back to the file list" msgstr "Voltar a lista de arquivos" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Central de Ajuda" @@ -223,6 +255,9 @@ msgstr "Nome de usuário ou senha incorreto." msgid "Incorrect username or password." msgstr "Nome de usuário ou senha incorretos." +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" @@ -242,6 +277,9 @@ msgstr "O banco de dados de usuários é LDAP e quando você tentar efetuar o lo msgid "Labeled URI" msgstr "URI rotulado" +msgid "Language" +msgstr "" + msgid "Local identity number" msgstr "Número de Identificação Local" @@ -292,6 +330,10 @@ msgstr "Metadado não encontrado" msgid "Metadata overview" msgstr "Visão geral da metadata" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Celular" @@ -313,6 +355,10 @@ msgstr "Sem RelayState" msgid "No SAML message provided" msgstr "Não fornecida a mensagem SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Não fornecida a resposta SAML" @@ -328,6 +374,9 @@ msgstr "Sem Certificado" msgid "No errors found." msgstr "Não foram encontrados erros." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Não" @@ -445,6 +494,9 @@ msgstr "SAML 2.0 SP Metadata" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 Service Provider (Local)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Selecione" @@ -500,6 +552,9 @@ msgstr "SimpleSAMLphp parece estar mal configurado." msgid "SimpleSAMLphp error" msgstr "Erro do SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Ocorreu algum erro" @@ -569,6 +624,10 @@ msgstr "O promotor deste pedido não fornecer um parâmetro RelayState indicando 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "A senha na configuração (auth.adminpassword) não foi alterada. Edite o arquivo de configuração." @@ -598,6 +657,9 @@ msgstr "Título" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -632,6 +694,9 @@ msgstr "WS-Federation Identity Provider (Remoto)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation Service Provider (Local)" +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 "Nós não aceitamos a resposta enviada pelo Provedor de Identidade." @@ -643,6 +708,9 @@ msgstr "Ocorreu um erro quando este servidor de identidade tentou criar uma resp 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 "World" +msgstr "" + msgid "XML metadata" msgstr "Metadata XML" @@ -652,10 +720,18 @@ msgstr "Sim, todos os serviços" msgid "Yes, continue" msgstr "Sim, Aceito" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Você acessou a interface do Assertion Consumer Service, mas não forneceu uma SAML Authentication Response." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Você acessou a interface do SingleLogoutService, mas não forneceu a SAML LogoutRequest ou LogoutResponse." @@ -703,8 +779,15 @@ msgstr "Você enviou alguma coisa para a página de login, mas por alguma razão msgid "Your attributes" msgstr "Seus atributos" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Sua sessão é válida por %remaining% segundos a partir de agora." msgid "[Preferred choice]" msgstr "[Opção preferida]" + +msgid "not set" +msgstr "" diff --git a/locales/ro/LC_MESSAGES/messages.po b/locales/ro/LC_MESSAGES/messages.po index e54a7ec199..fd96f78eaf 100644 --- a/locales/ro/LC_MESSAGES/messages.po +++ b/locales/ro/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Afiliere" @@ -50,6 +63,9 @@ msgstr "Autentificare eșuată: browser-ul dumneavoastră nu a trimis niciun cer 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ă" @@ -62,6 +78,10 @@ msgstr "Cerere eronată către serviciul de căutare" msgid "CAS Error" msgstr "Eroare CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Certificate" @@ -93,6 +113,9 @@ msgstr "Informații de contact:" 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" @@ -103,6 +126,9 @@ msgstr "Data nașterii" msgid "Debug information" msgstr "Informații de depanare" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Nume afișat" @@ -180,6 +206,9 @@ msgstr "Descrieți ce operațiuini executați când a apărut această eroare . msgid "Fax number" msgstr "Număr de fax" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Prenume" @@ -189,6 +218,9 @@ msgstr "Mergeți înapoi la pagina de instalare a SimpleSAMLphp" msgid "Go back to the file list" msgstr "Mergeți înapoi la lista de fișiere" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Pagina echipei de suport tehnic" @@ -235,6 +267,9 @@ msgstr "Nume de utilizator incorect sau parolă incorectă" msgid "Incorrect username or password." msgstr "Nume de utilizator incorect sau parola incorectă." +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" @@ -254,6 +289,9 @@ msgstr "LDAP reprezintă o bază de date cu utilizatori. Când încercați să v msgid "Labeled URI" msgstr "URI etichetat" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Nume legal" @@ -307,6 +345,10 @@ msgstr "Metadatele nu au fost găsite" msgid "Metadata overview" msgstr "Prezentare generală a metadatelor" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobil" @@ -328,6 +370,10 @@ msgstr "Nu există RelayState" msgid "No SAML message provided" msgstr "Nu a fost furnizat mesajul SAML" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Nu a fost furnizat răspunsul SAML" @@ -343,6 +389,9 @@ msgstr "Lipsește certificatul" msgid "No errors found." msgstr "Nu au fost depistate erori." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Nu" @@ -457,6 +506,9 @@ msgstr "Metadate furnizor de servicii (SP) SAML 2.0" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "Furnizor de servicii SAML 2.0 (găzduit)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Selectați" @@ -512,6 +564,9 @@ msgstr "Probleme la configurarea SimpleSAMLphp." msgid "SimpleSAMLphp error" msgstr "Eroare SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "A apărut o eroare" @@ -581,6 +636,10 @@ msgstr "Inițiatorul acestei cereri nu a furnizat parametrul RelayState c 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Parola din configurare (auth.adminpassword) este cea implicită, vă rugăm să o modificați." @@ -610,6 +669,9 @@ msgstr "Titlu/titulatură" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -644,6 +706,9 @@ msgstr "Furnizor de servicii federație WS (distant)" msgid "WS-Federation Service Provider (Hosted)" msgstr "Furnizor de servicii federație WS (găzduit)" +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 "Răspunsul de la acest furnizor de identitate nu a fost acceptat." @@ -655,6 +720,9 @@ msgstr "A apărut o eroare când furnizorul de identitate încerca să creeze un 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 "World" +msgstr "" + msgid "XML metadata" msgstr "Metadate XML" @@ -664,10 +732,18 @@ msgstr "Da, toate serviciile" msgid "Yes, continue" msgstr "Da, continuă" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Ați accesat interfața Assertion Consumer Service dar nu ați furnizat răspunsul de autentificare SAML." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Ați accesat interfața SingleLogoutService, dar nu ați furnizat o cerere de deautentificare sau un răspuns de deautentificare SAML." @@ -715,8 +791,15 @@ msgstr "Ați trimis informații către pagina de autentificare dar din motive ne msgid "Your attributes" msgstr "Atributele dumneavoastră" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Sesiunea dumneavoastră mai este validă încă %remaining%." msgid "[Preferred choice]" msgstr "[Varianta preferată]" + +msgid "not set" +msgstr "" diff --git a/locales/ru/LC_MESSAGES/messages.po b/locales/ru/LC_MESSAGES/messages.po index 327189bbd4..82133ed355 100644 --- a/locales/ru/LC_MESSAGES/messages.po +++ b/locales/ru/LC_MESSAGES/messages.po @@ -1,7 +1,16 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." msgstr "Служба запрашивает авторизацию. Пожалуйста, введите имя пользователя и пароль." @@ -17,6 +26,10 @@ msgstr "Метаданные сервис провайдера ADFS" msgid "ADFS Service Provider (Remote)" msgstr "Сервис провайдер ADFS (удаленное размещение)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Членство" @@ -62,6 +75,9 @@ msgstr "Ошибка при аутентификации: ваш браузер 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 "Получен неправильный отклик" @@ -74,6 +90,10 @@ msgstr "Неправильный запрос к службе обнаружен msgid "CAS Error" msgstr "Ошибка CAS" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Сертификаты" @@ -105,6 +125,9 @@ 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 "Невозможно создать ответ по аутентификации" @@ -115,6 +138,9 @@ msgstr "Дата рождения" msgid "Debug information" msgstr "Отладочная информация" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Отображаемое имя" @@ -207,6 +233,9 @@ msgstr "Вернуться к списку файлов" msgid "Group membership" msgstr "Членство в группе" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Домашняя страница службы поддержки" @@ -253,6 +282,9 @@ 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" @@ -272,6 +304,9 @@ msgstr "LDAP - это база данных пользователей, при msgid "Labeled URI" msgstr "Маркированный URI (LabeledURI)" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Официальное название" @@ -325,6 +360,10 @@ msgstr "Метаданные не найдены" msgid "Metadata overview" msgstr "Краткое описание метаданных" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Мобильный" @@ -346,6 +385,10 @@ msgstr "Отсутствует параметр RelayState" msgid "No SAML message provided" msgstr "Отсутствует утверждение SAML " +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Отсутствует SAML отклик" @@ -361,6 +404,9 @@ msgstr "Сертификат отсутствует" msgid "No errors found." msgstr "Ошибок не обнаружено." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Нет" @@ -542,6 +588,9 @@ msgstr "Видимо, SimpleSAMLphp сконфигурирован неправ msgid "SimpleSAMLphp error" msgstr "Ошибка SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Произошла ошибка" @@ -611,6 +660,10 @@ msgstr "Инициатор данного запроса не предостав msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Параметры, отправленные в службу обнаружения, не соответствуют спецификации." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Пароль в файле конфигурации (auth.adminpassword) не изменен от значения по умолчанию. Пожалуйста, отредактируйте файл конфигурации." @@ -640,6 +693,9 @@ 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%" @@ -674,6 +730,9 @@ 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 "Отклик от провайдера идентификации не получен." @@ -685,6 +744,9 @@ 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 метаданные" @@ -694,10 +756,18 @@ msgstr "Да, для всех служб" msgid "Yes, continue" msgstr "Да, продолжить" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Вы получили доступ к интерфейсу Assertion Consumer Service, но не предоставили отклик SAML аутентификации." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Вы получили доступ к интерфейсу SingleLogoutService, но не предоставили SAML LogoutRequest или LogoutResponse утверждения." @@ -745,6 +815,10 @@ msgstr "Вы отправили информацию на страницу вх msgid "Your attributes" msgstr "Ваши атрибуты" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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% секунд." diff --git a/locales/se/LC_MESSAGES/messages.po b/locales/se/LC_MESSAGES/messages.po index 665fc0a6b5..089c213f16 100644 --- a/locales/se/LC_MESSAGES/messages.po +++ b/locales/se/LC_MESSAGES/messages.po @@ -1,57 +1,433 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +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:207 +msgid "An error occurred when trying to create the SAML request." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:229 +msgid "An error occurred when trying to process the Logout Request." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:276 +msgid "An unhandled exception was thrown." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:112 +msgid "Authentication aborted" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:202 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:214 +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:277 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +msgid "Authentication source error" +msgstr "" + +msgid "Authentication status" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:82 +msgid "Bad request received" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:86 +msgid "Bad request to discovery service" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:83 +msgid "CAS Error" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Common name" msgstr "Olles namma" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:84 +msgid "Configuration error" +msgstr "" + +msgid "Copy to clipboard" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:87 +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" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:279 +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 "URI mii čilge dihto vuoigatvuođa dihto ressurssaide" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:85 +msgid "Error creating request" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:93 +msgid "Error loading metadata" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:106 +msgid "Error processing request from Service Provider" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:105 +msgid "Error processing response from Identity Provider" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:91 +msgid "Error processing the Logout Request" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:107 +msgid "Error received from Identity Provider" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:205 +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 "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:113 +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:88 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:104 +msgid "Invalid certificate" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:89 +msgid "LDAP Error" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:217 +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:90 +msgid "Logout information lost" +msgstr "" + msgid "Mail" msgstr "Elektrovnnalaš poastačijuhus" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Metadata not found" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mátketelefovdna" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:98 +msgid "No RelayState" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:80 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:108 +msgid "No SAML message provided" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:79 +msgid "No SAML response provided" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:96 +msgid "No access" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +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:100 +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:101 +msgid "Page not found" +msgstr "" + msgid "Password" msgstr "Beassansátni" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:102 +msgid "Password not set" +msgstr "" + 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:206 +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:99 +msgid "State information lost" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +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:265 +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:278 +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:247 +msgid "The given page was not found. The URL was: %URL%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:248 +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:220 +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:243 +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:208 +msgid "The parameters sent to the discovery service were not according to specifications." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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:250 +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:204 +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:233 +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:262 +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:239 +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:237 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:110 +msgid "Unhandled exception" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:111 +msgid "Unknown certificate" +msgstr "" + msgid "User ID" msgstr "Namahus" msgid "Username" msgstr "Geavahusnamma" + +msgid "Warning" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:261 +msgid "We did not accept the response sent from the Identity Provider." +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:211 +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:198 +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:194 +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:272 +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:268 +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:260 +msgid "You did not present a valid certificate." +msgstr "" + +msgid "Your attributes" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 2b2320b424..10876e5ed1 100644 --- a/locales/sk/LC_MESSAGES/messages.po +++ b/locales/sk/LC_MESSAGES/messages.po @@ -1,7 +1,16 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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." @@ -17,6 +26,10 @@ msgstr "ADFS SP Metadata" msgid "ADFS Service Provider (Remote)" msgstr "ADFS Service Provider (vzdialené)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Vzťah k organizácii" @@ -356,6 +369,10 @@ msgstr "Metadáta neboli nájdené" msgid "Metadata overview" msgstr "Prehľad metadát" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobil" @@ -658,6 +675,10 @@ msgstr "Iniciátor tejto požiadavky neposkytol parameter RelayState indikujúci 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Heslo v konfiguračnom súbore (auth.adminpassword) nie je zmenené z prednastavenej hodnoty. Zmeňte prosím konfiguračný súbor." diff --git a/locales/sl/LC_MESSAGES/messages.po b/locales/sl/LC_MESSAGES/messages.po index 923a9a9f99..add024fe7e 100644 --- a/locales/sl/LC_MESSAGES/messages.po +++ b/locales/sl/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Vloga uporabnika" @@ -50,6 +63,9 @@ msgstr "Avtentikacija je spodletela: vaš spletni brskalnik ni posredoval digita 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." @@ -62,6 +78,10 @@ msgstr "Zahteva, ki je bila poslana \"Discovery service-u\" je napačna." msgid "CAS Error" msgstr "CAS napaka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Digitalna potrdila" @@ -93,6 +113,9 @@ msgstr "Kontakt" 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" @@ -103,6 +126,9 @@ msgstr "Datum rojstva" msgid "Debug information" msgstr "Pomoč pri odpravljanju napak (debug)" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Prikazno ime" @@ -180,6 +206,9 @@ msgstr "Opišite, kako je prišlo do napake..." msgid "Fax number" msgstr "Fax" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Ime" @@ -189,6 +218,9 @@ msgstr "Nazaj na namestitveno stran SimpleSAMLphp" msgid "Go back to the file list" msgstr "Vrnite se na seznam datotek" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Spletna stran tehnične podpore uporabnikom." @@ -235,6 +267,9 @@ msgstr "Napačno uporabniško ime ali geslo" msgid "Incorrect username or password." msgstr "Napačno uporabniško ime ali geslo!" +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" @@ -254,6 +289,9 @@ msgstr "LDAP je zbirka uporabnikov. Ko se želite prijaviti, je potrebno prijavo msgid "Labeled URI" msgstr "Označen URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Uradno ime" @@ -307,6 +345,10 @@ msgstr "Metapodatkov ni bilo moč najti" msgid "Metadata overview" msgstr "Pregled metapodatkov" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobilni telefon" @@ -328,6 +370,10 @@ msgstr "RelayState parameter ne obstaja" msgid "No SAML message provided" msgstr "SAML sporočilo ni na voljo" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Nobenega odgovora za SAML ni na voljo" @@ -343,6 +389,9 @@ msgstr "Ni digitalnega potrdila" msgid "No errors found." msgstr "Ni napak" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Ne" @@ -457,6 +506,9 @@ msgstr "SAML 2.0 SP Metapodatki" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 SP (Lokalni)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Izberite" @@ -512,6 +564,9 @@ msgstr "Nastavitve SimpleSAMLphp so napačne ali se med seboj izključujejo." msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp napaka" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Prišlo je do napake!" @@ -581,6 +636,10 @@ msgstr "Pobudnik te zahteve ni posredoval RelayState parametra." 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "V nastavitvah je geslo skrbnika (auth.adminpassword) še vedno nastavljeno na začetno vrednost. Spremenite ga!" @@ -610,6 +669,9 @@ msgstr "Naziv" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -644,6 +706,9 @@ msgstr "WS-Federation Idp (Oddaljni)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Fedration SP (Lokalni)" +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 "Odgovor, poslan od IdP-ja, ni bil sprejet." @@ -655,6 +720,9 @@ msgstr "Ko je IdP želel ustvariti odgovor o prijavi, je prišlo do napake." 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 "World" +msgstr "" + msgid "XML metadata" msgstr "XML metapodatki" @@ -664,10 +732,18 @@ msgstr "Da, odjavi me z vseh storitev" msgid "Yes, continue" msgstr "Da, nadaljuj" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Dostopili ste do \"Assertion Consumer Service\" vmesnika, ampak niste zagotovili \"SAML Authentication Responsa\"." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Dostopili ste do SingleLogoutService vmesnika, ampak niste zagotovili SAML LogoutRequest ali LogoutResponse." @@ -715,8 +791,15 @@ msgstr "Prišlo je do napake, poskusite znova." msgid "Your attributes" msgstr "Vaši atributi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Vaša trenutna seja je veljavna še %remaining% sekund." msgid "[Preferred choice]" msgstr "Prioritetna izbira" + +msgid "not set" +msgstr "" diff --git a/locales/sr/LC_MESSAGES/messages.po b/locales/sr/LC_MESSAGES/messages.po index adeba24d95..55faad8992 100644 --- a/locales/sr/LC_MESSAGES/messages.po +++ b/locales/sr/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Povezanost sa institucijom" @@ -50,6 +63,9 @@ msgstr "Neuspešna autentifikacija: vaš web pretraživač nije poslao digitalni 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" @@ -62,6 +78,10 @@ msgstr "Servisu za lociranje poslat je neispravan zahtev" msgid "CAS Error" msgstr "CAS greška" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Sertifikati" @@ -93,6 +113,9 @@ msgstr "Kontakt podaci:" 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" @@ -103,6 +126,9 @@ msgstr "Datum rođenja" msgid "Debug information" msgstr "Informacije o greški" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Ime za prikaz" @@ -180,6 +206,9 @@ msgstr "Opišite šta ste radili kada se ova greška desila..." msgid "Fax number" msgstr "Fax broj" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Ime" @@ -189,6 +218,9 @@ msgstr "Natrag na početnu stranicu SimpleSAMLphp instalacije" msgid "Go back to the file list" msgstr "Vrati se natrag na listu fajlova" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Stranice službe za podršku korisnicima" @@ -235,6 +267,9 @@ msgstr "Neispravno korisničko ime ili lozinka" msgid "Incorrect username or password." msgstr "Neispravno korisničko ime ili lozinka." +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" @@ -254,6 +289,9 @@ msgstr "Podaci o korisničkim nalozima čuvaju se u LDAP bazi, a kada pokušate msgid "Labeled URI" msgstr "URI adresa" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Pravno ime" @@ -307,6 +345,10 @@ msgstr "Metapodaci nisu pronađeni" msgid "Metadata overview" msgstr "Pregled metapodataka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Broj mobilnog telefona" @@ -328,6 +370,10 @@ msgstr "Parametar RelayState nije zadan" msgid "No SAML message provided" msgstr "Nije dostavljena SAML poruka" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Nije dostavljen SAML odgovor" @@ -343,6 +389,9 @@ msgstr "Nema digitalnog sertifikata" msgid "No errors found." msgstr "Nije pronađena nijedna greška." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Ne" @@ -457,6 +506,9 @@ msgstr "SAML 2.0 SP metapodaci" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 Davalac Servisa (lokalni)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Odaberi" @@ -512,6 +564,9 @@ msgstr "Izgleda da postoji greška u podešavanjima SimpleSAMLphp-a." msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp greška" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Desila se greška" @@ -581,6 +636,10 @@ msgstr "Servis koji je inicirao ovaj zahtjev nije poslao RelayState parametar ko msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Parametri poslati servisu za lociranje nisu u ispravnom formatu." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Administratorska lozinka u podešavanjima(parametar auth.adminpassword) i dalje ima izvornu vrednost. Molimo Vas izmenite konfiguracioni fajl." @@ -610,6 +669,9 @@ msgstr "Zvanje" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -644,6 +706,9 @@ msgstr "WS-Federation Davalac Servisa (udaljeni)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation Davalac Servisa (lokalni)" +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 "Odgovor koji je poslao Davalac Identiteta nije prihvaćen." @@ -655,6 +720,9 @@ msgstr "Desila se greška prilikom kreiranja autentifikacionog odgovora od stran 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 "World" +msgstr "" + msgid "XML metadata" msgstr "Metapodaci u XML formatu" @@ -664,10 +732,18 @@ msgstr "Da, iz svih servisa" msgid "Yes, continue" msgstr "Da, nastavi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Pristupili ste sistemu za obradu SAML potvrda, ali niste dostavili SAML autentikacioni odgovor." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Pristupili ste interfejsu za jedinstvenu odjavu sa sistema, ali niste poslali SAML LogoutRequest ili LogoutResponse poruku." @@ -715,8 +791,15 @@ msgstr "Iz nekog razloga autentifikacionom servisu nije prosleđena vaša lozink msgid "Your attributes" msgstr "Vaši atributi" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Vaša sesija će biti validna još %remaining% sekundi." msgid "[Preferred choice]" msgstr "[Preferirani izbor]" + +msgid "not set" +msgstr "" diff --git a/locales/st/LC_MESSAGES/messages.po b/locales/st/LC_MESSAGES/messages.po index 1ae9cdde96..cfdf76345b 100644 --- a/locales/st/LC_MESSAGES/messages.po +++ b/locales/st/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +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." @@ -44,6 +57,9 @@ msgstr "Netefatso e hlolehile: sebadi sa hao ha se a romela setifikeiti sa letho 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" @@ -82,6 +98,9 @@ msgstr "Phoso ya Netefatso" msgid "Contact information:" msgstr "Tlhahisoleseding ya boikopanyo:" +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" @@ -89,6 +108,9 @@ msgstr "Ha e a kgona ho theha karabelo ya ntefatso" msgid "Debug information" msgstr "Tlhahisoleseding ya debug" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Do you want to logout from all the services above?" msgstr "Na o batla ho tswa ditshebeletsong tsohle tse ka hodimo moo?" @@ -145,6 +167,9 @@ msgstr "Fomata" msgid "Go back to SimpleSAMLphp installation page" msgstr "Kgutlela leqepheng la ho instola la SimpleSAMLphp" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Leqephe la lapeng la ba deske ya thuso" @@ -167,6 +192,9 @@ msgstr "Lebitso la mosebedisi kapa phasewete e fosahetseng" msgid "Incorrect username or password." msgstr "Lebitso la mosebedisi kapa phasewete e fosahetse." +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" @@ -180,6 +208,9 @@ msgstr "Phoso ya LDAP" 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." +msgid "Language" +msgstr "" + msgid "Logged out" msgstr "O ntshitswe" @@ -209,6 +240,10 @@ msgstr "Tlhahisoleseding ya ho tswa e lahlehile" msgid "Metadata not found" msgstr "Metadata ha e a fumanwa" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Next" msgstr "E latelang" @@ -240,6 +275,9 @@ msgstr "Ha ho phihlello" msgid "No certificate" msgstr "Ha ho setifikeiti" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Tjhe" @@ -312,6 +350,9 @@ msgstr "Romela imeile ho ba deske ya thuso" msgid "Send error report" msgstr "Romela tlaleho ya phoso" +msgid "Sending message" +msgstr "" + msgid "Service Provider" msgstr "Mofani wa Tshebeletso" @@ -331,6 +372,9 @@ msgstr "SimpleSAMLphp e bonahala e hlophisitswe hampe." msgid "SimpleSAMLphp error" msgstr "Phoso ya SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Ho na le phoso e etsahetseng" @@ -376,6 +420,10 @@ msgstr "Moqadi wa kopo ena ha a fana pharamitha ya RelayState e bontshang hore h 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Phasewete ya tlhophiso (auth.adminpassword) ha e a fetolwa ho tswa palong ya tlwaelo. Ka kopo edita faele ya tlhophiso." @@ -399,6 +447,9 @@ msgstr "Ntlha ya bofelo ha e a bulelwa. Hlahloba dikgetho tse tlhophisong ya hao 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -418,6 +469,9 @@ msgstr "Setifikeiti se sa tsejweng" msgid "Username" msgstr "Lebitso la mosebedisi" +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 "Ha re a amohela karabelo ho tswa ho Mofani wa Boitsebiso." @@ -429,6 +483,9 @@ msgstr "Ha mofani enwa wa boitsebiso a leka ho theha karabelo ya netefatso, phos 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 "World" +msgstr "" + msgid "Yes, all services" msgstr "E, ditshebeletso tsohle" @@ -486,6 +543,9 @@ msgstr "Datha ya seshene ya hao ha e kgone ho fumanwa hona jwale ka lebaka la ma 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 "Your session is valid for %remaining% seconds from now." +msgstr "" + msgid "[Preferred choice]" msgstr "[Kgetho e kgethwang]" diff --git a/locales/sv/LC_MESSAGES/messages.po b/locales/sv/LC_MESSAGES/messages.po index bcf13732d9..49087fc161 100644 --- a/locales/sv/LC_MESSAGES/messages.po +++ b/locales/sv/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Anknytning" @@ -50,6 +63,9 @@ msgstr "Inloggning mislyckades: Din webbläsare skickade inget certifikat" 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" @@ -62,6 +78,10 @@ msgstr "Ogiltig förfrågan till lokaliseringstjänsten (Discovery Service)" msgid "CAS Error" msgstr "CAS-error" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "Certifikat" @@ -93,6 +113,9 @@ msgstr "Kontaktinformation:" 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" @@ -103,6 +126,9 @@ msgstr "Födelsedata" msgid "Debug information" msgstr "Detaljer för felsökning" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Visningsnamn" @@ -180,6 +206,9 @@ msgstr "Förklara hur felet uppstod..." msgid "Fax number" msgstr "Faxnummer" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "Förnamn" @@ -189,6 +218,9 @@ msgstr "Åter till installationssidan för SimpleSAMLphp" msgid "Go back to the file list" msgstr "Gå tillbaka till fillistan" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Hemsida för helpdesk" @@ -235,6 +267,9 @@ msgstr "Felaktig användaridentitet eller lösenord" msgid "Incorrect username or password." msgstr "Fel användarnamn eller lösenord." +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" @@ -254,6 +289,9 @@ msgstr "LDAP används som användardatabas och när du försöker logga måste L msgid "Labeled URI" msgstr "Hemsida" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "Officiellt (legalt) namn" @@ -307,6 +345,10 @@ msgstr "Metadata saknas" msgid "Metadata overview" msgstr "Metadataöversikt" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Mobiltelefon" @@ -328,6 +370,10 @@ msgstr "Ingen RelayState definierad" msgid "No SAML message provided" msgstr "Inget SAML-meddelande tillhandahölls" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "Inget SAML-svar tillhandahölls" @@ -343,6 +389,9 @@ msgstr "Inget certfikat" msgid "No errors found." msgstr "Inga fel funna." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Nej" @@ -457,6 +506,9 @@ msgstr "SAML 2.0 SP Metadata" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 Service Provider (Värd)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Välj" @@ -512,6 +564,9 @@ msgstr "Det förfaller som SimpleSAMLphp är felkonfigurerat." msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp fel" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Ett fel har inträffat" @@ -581,6 +636,10 @@ msgstr "Avsändaren av denna förfrågan hade ingen parameter för RelayState vi msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Parametrarna som skickades till lokaliseringstjänsten följde inte specifikationen." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Konfigurationslösenordet (auth.adminpassword) är inte ändrat från standardvärdet. Uppdatera kongiruationen med ett nytt lösenord!" @@ -610,6 +669,9 @@ msgstr "Titel" 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -644,6 +706,9 @@ msgstr "WS-Federation Service Provider (Fjärr)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federation Service Provider (Värd)" +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 "Svaret från identitetshanteraren (Identity Provider) är inte accepterat." @@ -655,6 +720,9 @@ msgstr "När identitetshanteraren (Identity Provider) försökte skapa inlogging 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 "World" +msgstr "" + msgid "XML metadata" msgstr "XML-metadata" @@ -664,10 +732,18 @@ msgstr "Ja, alla tjänster" msgid "Yes, continue" msgstr "Ja" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "Du har anropat gränssnittet för Assertion Consumer Service utan att skicka med någon SAML Authentication Responce." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "Du har anroppat tjänsten för Single Sing-Out utan att skicka med någon SAML LogoutRequest eller LogoutResponse." @@ -715,8 +791,15 @@ msgstr "Du skicka in en inloggningsförfrågan men det verkar som om ditt lösen msgid "Your attributes" msgstr "Dina attribut" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Din session är giltig för %remaining% sekunder från nu." msgid "[Preferred choice]" msgstr "Prioriterat val" + +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..7f8a6904ea --- /dev/null +++ b/locales/th/LC_MESSAGES/messages.po @@ -0,0 +1,805 @@ +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 "ใบรับรองไม่ถูกต้อง" + +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: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 bfa73133b9..1871061a68 100644 --- a/locales/tr/LC_MESSAGES/messages.po +++ b/locales/tr/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "Bağlantı" @@ -26,6 +39,33 @@ 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:112 +msgid "Authentication aborted" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:202 +msgid "Authentication error in source %AUTHSOURCE%. The reason was: %REASON%" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:214 +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:277 +msgid "Authentication failed: the certificate your browser sent is unknown" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:242 +msgid "Authentication failed: your browser did not send any certificate" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:81 +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ı" @@ -38,6 +78,10 @@ msgstr "Tanıma servisine giden hatalı istek" msgid "CAS Error" msgstr "CAS Hatası" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Change your home organization" msgstr "Organizasyonunuzu değiştirin" @@ -66,6 +110,9 @@ msgstr "İletişim bilgileri:" 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ı" @@ -76,6 +123,9 @@ msgstr "Doğum tarihi" msgid "Debug information" msgstr "Hata ayıklama bilgisi" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "Görüntülenen isim" @@ -150,6 +200,9 @@ 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" @@ -159,6 +212,9 @@ 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ı" @@ -202,6 +258,9 @@ msgstr "Geçersiz kullanıcı adı yada şifre" msgid "Incorrect username or password." msgstr "Kullanıcı adı ve/veya şifre yanlış." +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" @@ -221,6 +280,9 @@ msgstr "LDAP kullanıcı veritabanı ve siz giriş yapmaya çalışırken, LDAP msgid "Labeled URI" msgstr "Etiketlenen URI" +msgid "Language" +msgstr "" + msgid "Local identity number" msgstr "Yerel kimlik numarası" @@ -258,9 +320,17 @@ msgstr "Mesaj" msgid "Metadata" msgstr "Üstveri (metadata)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:94 +msgid "Metadata not found" +msgstr "" + msgid "Metadata overview" msgstr "Üstveri (metada) genel görünümü" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "Cep telefonu numarası" @@ -282,6 +352,10 @@ msgstr "RelayState verilmemiş." msgid "No SAML message provided" msgstr "SAML mesajı verilmemiş" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "SAML cevabı verilmemiş" @@ -290,9 +364,16 @@ msgstr "SAML cevabı verilmemiş" msgid "No access" msgstr "Giriş yok" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:97 +msgid "No certificate" +msgstr "" + msgid "No errors found." msgstr "Hata bulunmadı." +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Hayır" @@ -407,6 +488,9 @@ msgstr "SAML 2.0 SP Üstveri (Metadata)" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 Servis Sağlayıcı (Bu sistemde sunulan)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "Seç" @@ -462,9 +546,20 @@ msgstr "SimpleSAMLphp doğru yapılandırılmış gibi görünmüyor." msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp hatası" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Hata oluştu" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 +msgid "State information lost" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:246 +msgid "State information lost, and no way to restart the request" +msgstr "" + msgid "Street" msgstr "Sokak" @@ -484,6 +579,10 @@ msgstr "Telefon numarası" 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ı)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:278 +msgid "The authentication was aborted by the user" +msgstr "" + 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:" @@ -519,6 +618,10 @@ msgstr "Bu isteğin başlatıcısı, bir sonraki gidiş yerini bildiren RelaySta 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." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Yapılandırmadaki (auth.adminpassword) şifrenin öntanımlı değeri değişmedi. Lütfen yapılandırma dosyasını düzeltin." @@ -548,10 +651,22 @@ msgstr "Başlık" 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 "Tracking number" +msgstr "" + +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:237 +#, php-format +msgid "Unable to locate metadata for %ENTITYID%" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:99 msgid "Unhandled exception" msgstr "Beklenmeyen durum" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:111 +msgid "Unknown certificate" +msgstr "" + msgid "User ID" msgstr "Kullanıcı ID" @@ -570,6 +685,9 @@ msgstr "WS-Federasyon Kimlik Sağlayıcı (Uzak sistemde sunulan)" msgid "WS-Federation Service Provider (Hosted)" msgstr "WS-Federasyon Servis Sağlayıcı (Bu sistemde sunulan)" +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 "Kimlik Sağlayıcı'dan gelen cevabı kabul etmedik." @@ -581,6 +699,9 @@ msgstr "Bu kimlik sağlayıcı bir kimlik doğrulama cevabı oluşturuken hata 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 "Ç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 "World" +msgstr "" + msgid "XML metadata" msgstr "XML üstverisi (metadata)" @@ -590,10 +711,18 @@ msgstr "Evet, tüm servisler." msgid "Yes, continue" msgstr "Evet, devam et" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "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:272 +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 "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." @@ -641,8 +770,15 @@ msgstr "Giriş sayfasına birşeyler gönderdiniz, fakat bazı nedenlerden dolay msgid "Your attributes" msgstr "Bilgileriniz" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "Oturumunuz, şu andan itibaren %remaining% saniyeliğine geçerlidir." msgid "[Preferred choice]" msgstr "[Tercih edilen seçenek]" + +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..85d4f685cc --- /dev/null +++ b/locales/uk/LC_MESSAGES/messages.po @@ -0,0 +1,834 @@ +msgid "" +msgstr "" +"Project-Id-Version: SimpleSAMLphp\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" +"X-Domain: messages\n" +"X-Generator: Poedit 3.7\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 "Недійсний сертифікат" + +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: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..2d627d441e --- /dev/null +++ b/locales/vi/LC_MESSAGES/messages.po @@ -0,0 +1,805 @@ +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ệ" + +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: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 9361f66f28..593f73c214 100644 --- a/locales/xh/LC_MESSAGES/messages.po +++ b/locales/xh/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +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." @@ -41,6 +54,9 @@ msgstr "Ungqinisiso lusilele: ibhrawuza yakho ayithumelanga nasiphi na isatifike 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" @@ -73,6 +89,9 @@ msgstr "Impazamo yolungiselelo" msgid "Contact information:" msgstr "Inkcazelo yoqhagamshelwano:" +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" @@ -80,6 +99,9 @@ msgstr "Ayikwazanga ukuyila impendulo yongqinisiso" msgid "Debug information" msgstr "Inkcazelo yokulungisa" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Do you want to logout from all the services above?" msgstr "Ngaba ufuna ukuphuma kuzo zonke iinkonzo ezingasentla?" @@ -136,6 +158,9 @@ msgstr "Ufomatho" msgid "Go back to SimpleSAMLphp installation page" msgstr "Buyela emva kwikhasi lofakelo le-SimpleSAMLphp" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Ikhasi lekhaya ledesika yoncedo" @@ -148,6 +173,9 @@ msgstr "Molo, eli likhasi lobume be-SimpleSAMLphp. Apha ungabona ukuba ngaba ise msgid "How to get help" msgstr "Indlela yokufumana uncedo" +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 "Igama lomsebenzisi okanye iphaswedi engachanekanga" @@ -155,6 +183,9 @@ msgstr "Igama lomsebenzisi okanye iphaswedi engachanekanga" msgid "Incorrect username or password." msgstr "Igama lomsebenzisi okanye iphaswedi engachanekanga." +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" @@ -168,6 +199,9 @@ msgstr "Impazamo ye-LDAP" 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." +msgid "Language" +msgstr "" + msgid "Logged out" msgstr "Uphumile" @@ -183,6 +217,9 @@ msgstr "Ngena" msgid "Login at" msgstr "Ungeno ngo-" +msgid "Logout" +msgstr "" + msgid "Logout failed" msgstr "Ukuphuma kusilele" @@ -194,6 +231,10 @@ msgstr "Inkcazelo yokuphuma ilahlekile" msgid "Metadata not found" msgstr "Imetadata ayifunyenwanga" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Next" msgstr "Okulandelayo" @@ -225,6 +266,9 @@ msgstr "Akukho fikelelo" msgid "No certificate" msgstr "Akukho satifikethi" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Hayi, rhoxisa" @@ -294,6 +338,9 @@ msgstr "Thumela i-imeyile kwidesika yoncedo" msgid "Send error report" msgstr "Thumela ingxelo yempazamo" +msgid "Sending message" +msgstr "" + msgid "Service Provider" msgstr "Umboneleli Wenkonzo" @@ -313,6 +360,9 @@ msgstr "I-SimpleSAMLphp ibonakala ingalungiselelwanga kakuhle." msgid "SimpleSAMLphp error" msgstr "Impazamo ye-SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Kwenzeke impazamo ethile" @@ -358,6 +408,10 @@ msgstr "Umqalisi wesi sicelo akanikelanga ngepharamitha ye-RelayState apho kufan msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Iipharamitha ezithunyelwe kwinkonzo yofumaniso azihambelani neenkcukacha." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Iphaswedi ekulungiselelo (auth.adminpassword) ayitshintshwanga ukusuka kwixabiso lesiseko. Nceda uhlele ifayile yolungiselelo." @@ -381,6 +435,9 @@ msgstr "Le ndawo yokuphela ayenziwanga yasebenza. Jonga ukhetho lokwenza isebenz 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -400,6 +457,9 @@ msgstr "Isatifikethi esingaziwayo" msgid "Username" msgstr "Igama lomsebenzisi" +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 "Asiyamkelanga impendulo ethunyelwe ukusuka kuMboneleli Wesazisi." @@ -411,6 +471,9 @@ msgstr "Xa lo mboneleli wesazisi ezama ukuyila impendulo yongqinisiso, kwenzeke 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 "World" +msgstr "" + msgid "Yes, all services" msgstr "Ewe, zonke iinkonzo" @@ -458,10 +521,16 @@ msgstr "Uphume ngokuyimpumelelo kuzo zonke iinkonzo ezidweliswe ngasentla." 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 "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 "Ingcombolo yeseshoni yakho ayikwazi ukubuyiselwa okwangoku ngenxa yeengxaki zobugcisa. Nceda uzame kwakhona kwimizuzu embalwa." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" + msgid "[Preferred choice]" msgstr "[Ukhetho olukhethwayo]" diff --git a/locales/zh/LC_MESSAGES/messages.po b/locales/zh/LC_MESSAGES/messages.po index e3bcba39a9..189800d3d4 100644 --- a/locales/zh/LC_MESSAGES/messages.po +++ b/locales/zh/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +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:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "联络方式" @@ -50,6 +63,9 @@ msgstr "认证失败,你的浏览器没有发送任何证书" 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 "收到了错误的请求" @@ -62,6 +78,10 @@ msgstr "错误的搜寻服务请求" msgid "CAS Error" msgstr "CAS错误" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "证书" @@ -93,6 +113,9 @@ 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 "无法创建认证应答" @@ -103,6 +126,9 @@ msgstr "生日" msgid "Debug information" msgstr "调试信息" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "显示名称" @@ -180,6 +206,9 @@ msgstr "说明一下,你正在做什么的时候发生了这个错误" msgid "Fax number" msgstr "传真号码" +msgid "Format" +msgstr "" + msgid "Given name" msgstr "名" @@ -189,6 +218,9 @@ msgstr "返回SimpleSAMLphp安装页面" msgid "Go back to the file list" msgstr "返回至文件列表" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "服务台的主页" @@ -235,6 +267,9 @@ 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" @@ -254,6 +289,9 @@ msgstr "LDAP是一个用户数据库,当你试图登录时,我们需要连 msgid "Labeled URI" msgstr "标签URI" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "正式名称" @@ -307,6 +345,10 @@ msgstr "没有找到元信息" msgid "Metadata overview" msgstr "元信息浏览" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "手机" @@ -328,6 +370,10 @@ msgstr "无依赖状态" msgid "No SAML message provided" msgstr "没有提供SAML消息" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "没有提供SAML应答" @@ -343,6 +389,9 @@ msgstr "无证书" msgid "No errors found." msgstr "没有发现错误" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "没有" @@ -457,6 +506,9 @@ msgstr "SAML 2.0 SP 元信息" msgid "SAML 2.0 Service Provider (Hosted)" msgstr "SAML 2.0 服务提供者(本地)" +msgid "SAML Subject" +msgstr "" + msgid "Select" msgstr "选择" @@ -512,6 +564,9 @@ msgstr "SimpleSAMLphp出现配置错误" msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp错误" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "某些错误发生了" @@ -581,6 +636,10 @@ msgstr "这个请求的发起人没有提供RelayState参数,以说明下一 msgid "The parameters sent to the discovery service were not according to specifications." msgstr "发送给搜寻服务的参数不符合规范" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "你没有修改配置文件中的默认密码,请修改该密码" @@ -610,6 +669,9 @@ 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%" @@ -644,6 +706,9 @@ 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 "我们不接受来自身份提供者的应答" @@ -655,6 +720,9 @@ 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元信息" @@ -664,10 +732,18 @@ msgstr "是的,所有的服务" msgid "Yes, continue" msgstr "是的,继续" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "你访问了Assertion Consumer Service接口,但是并没有提供一个SAML认证应答" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "你访问了SingleLogoutService接口,但是并没有提供一个SAML的LogoutRequest或者LogoutResponse" @@ -715,8 +791,15 @@ msgstr "你确实发送了一些信息给登录页面,但由于某些原因, msgid "Your attributes" msgstr "你的属性" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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/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 91% rename from locales/zh-tw/LC_MESSAGES/messages.po rename to locales/zh_TW/LC_MESSAGES/messages.po index 808e86f921..d019b6f170 100644 --- a/locales/zh-tw/LC_MESSAGES/messages.po +++ b/locales/zh_TW/LC_MESSAGES/messages.po @@ -1,7 +1,16 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + msgid "A service has requested you to authenticate yourself. Please enter your username and password in the form below." msgstr "請使用帳號密碼登入,以便進入系統。" @@ -17,6 +26,10 @@ msgstr "ADFS 服務提供者 Metadata" msgid "ADFS Service Provider (Remote)" msgstr "ADFS 服務提供者(遠端)" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:103 +msgid "Admin password not set to a hashed value" +msgstr "" + msgid "Affiliation" msgstr "連絡方式" @@ -62,6 +75,9 @@ msgstr "認證錯誤:您的瀏覽器並未送出任何憑證" 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 "錯誤請求" @@ -74,6 +90,10 @@ msgstr "無效的請求於搜尋服務" msgid "CAS Error" msgstr "CAS 錯誤" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:92 +msgid "Cannot retrieve session data" +msgstr "" + msgid "Certificates" msgstr "憑證" @@ -105,6 +125,9 @@ 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 "無法建立認證回應" @@ -115,6 +138,9 @@ msgstr "生日" msgid "Debug information" msgstr "除錯資訊" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Display name" msgstr "顯示名稱" @@ -207,6 +233,9 @@ msgstr "回到檔案清單" msgid "Group membership" msgstr "群組成員" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "協助頁面" @@ -253,6 +282,9 @@ 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" @@ -272,6 +304,9 @@ msgstr "LDAP 是使用這資料庫,當您嘗試登入時,我們必須連結 msgid "Labeled URI" msgstr "標籤網址" +msgid "Language" +msgstr "" + msgid "Legal name" msgstr "正式名字" @@ -325,6 +360,10 @@ msgstr "找不到詮釋資料" msgid "Metadata overview" msgstr "Metadata 總覽" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Mobile" msgstr "手機" @@ -346,6 +385,10 @@ msgstr "沒有 RelayState" msgid "No SAML message provided" msgstr "無法提供 SAML 訊息" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:109 +msgid "No SAML request provided" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:70 msgid "No SAML response provided" msgstr "SAML 無回應" @@ -361,6 +404,9 @@ msgstr "無憑證" msgid "No errors found." msgstr "沒有錯誤。" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "不,取消" @@ -545,6 +591,9 @@ msgstr "SimpleSAMLphp 出現無效設定。" msgid "SimpleSAMLphp error" msgstr "SimpleSAMLphp 異常" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "有錯誤發生" @@ -614,6 +663,10 @@ msgstr "初始化請求並未提供一個中繼狀態 RelayState 參數說明下 msgid "The parameters sent to the discovery service were not according to specifications." msgstr "傳遞至搜尋服務的參數並非按照規格所訂。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "設定檔裡的密碼(auth.adminpassword)還是預設值,請編輯設定檔。" @@ -643,6 +696,9 @@ 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%" @@ -677,6 +733,9 @@ 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 "我們無法於驗證提供者完成回應傳送。" @@ -688,6 +747,9 @@ 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 Metadata" @@ -697,10 +759,18 @@ msgstr "Yea,登出所有服務" msgid "Yes, continue" msgstr "是,繼續" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:198 +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 "您連結消費者聲明服務界面,但是沒有提供一個 SAML 認證回應。" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:272 +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 "您連結單一簽出服務界面,但是沒有提供一個 SAML 登出請求或登出回應。" @@ -748,6 +818,10 @@ msgstr "您可能有傳送至網頁,但是密碼因為某些原因未傳送, msgid "Your attributes" msgstr "您的屬性值" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:230 +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 "您的 session 從現在起還有 %remaining% 有效。" diff --git a/locales/zu/LC_MESSAGES/messages.po b/locales/zu/LC_MESSAGES/messages.po index 0dcdc48bbf..c5da6d4af1 100644 --- a/locales/zu/LC_MESSAGES/messages.po +++ b/locales/zu/LC_MESSAGES/messages.po @@ -1,10 +1,23 @@ 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:238 +msgid "%MESSAGE%" +msgstr "" + 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:103 +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." @@ -41,6 +54,9 @@ msgstr "Ukuqinisekisa kuhlulekile: isiphequluli sakho asizange sithumele noma yi 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" @@ -73,6 +89,9 @@ msgstr "Iphutha lomiso" msgid "Contact information:" msgstr "Ulwazi lokuxhumana:" +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" @@ -80,6 +99,9 @@ msgstr "Ayikwazanga ukwakha impendulo yokuqinisekisa" msgid "Debug information" msgstr "Ulwazi lokususwa kwephutha" +msgid "Debug information to be used by your support staff" +msgstr "" + msgid "Do you want to logout from all the services above?" msgstr "Ingabe ufuna ukuphuma kuwo wonke amasevisi angenhla?" @@ -136,6 +158,9 @@ msgstr "Ifomethi" msgid "Go back to SimpleSAMLphp installation page" msgstr "Buyela emuva ekhasini lokufaka le-SimpleSAMLphp" +msgid "Hello, Untranslated World!" +msgstr "" + msgid "Help desk homepage" msgstr "Ikhasi lasekhaya ledeski losizo" @@ -148,6 +173,9 @@ msgstr "Sawubona, leli ikhasi lesimo se-SimpleSAMLphp. Lapha ungakwazi ukubona u msgid "How to get help" msgstr "Indlela yokuthola usizo" +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 "Igama lomsebenzisi elingalungile noma iphasiwedi" @@ -155,6 +183,9 @@ msgstr "Igama lomsebenzisi elingalungile noma iphasiwedi" msgid "Incorrect username or password." msgstr "Igama lomsebenzisi noma iphasiwedi engalungile." +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" @@ -168,6 +199,9 @@ msgstr "Iphutha le-LDAP" 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." +msgid "Language" +msgstr "" + msgid "Logged out" msgstr "Uphume ngemvume" @@ -183,6 +217,9 @@ msgstr "Ngena" msgid "Login at" msgstr "Ngena kokuthi" +msgid "Logout" +msgstr "" + msgid "Logout failed" msgstr "Ukuphuma kuhlulekile" @@ -194,6 +231,10 @@ msgstr "Ulwazi lokuphuma lulahlekile" msgid "Metadata not found" msgstr "Imethadatha ayitholakalanga" +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:95 +msgid "Method not allowed" +msgstr "" + msgid "Next" msgstr "Okulandelayo" @@ -225,6 +266,9 @@ msgstr "Akukho ukufinyelela" msgid "No certificate" msgstr "Asikho isitifiketi" +msgid "No identity providers found. Cannot continue." +msgstr "" + msgid "No, cancel" msgstr "Cha, khansela" @@ -294,6 +338,9 @@ msgstr "Thumela i-imeyili edeskini losizo" msgid "Send error report" msgstr "Thumela umbiko wephutha" +msgid "Sending message" +msgstr "" + msgid "Service Provider" msgstr "Umhlinzeki Wesevisi" @@ -313,6 +360,9 @@ msgstr "I-SimpleSAMLphp ibonakala ingamisiwe ngendlela efanele." msgid "SimpleSAMLphp error" msgstr "Iphutha le-SimpleSAMLphp" +msgid "Since your browser does not support Javascript, you must press the button below to proceed." +msgstr "" + msgid "Some error occurred" msgstr "Kuvele iphutha elithile" @@ -358,6 +408,10 @@ msgstr "Umqalisi walesi sicelo akazange ahlinzeke ngepharamitha ye-RelayState eb msgid "The parameters sent to the discovery service were not according to specifications." msgstr "Amapharamitha athunyelwe kusevisi yokuthola abengavumelani nezici." +#: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:253 +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 "Iphasiwedi kumiso (auth.adminpassword) ayishintshiwe kunani elizenzakalelayo. Sicela uhlele ifayela lomiso." @@ -381,6 +435,9 @@ msgstr "Lesi siphetho asivunyelwe. Hlola izinketho zokuvumela kumiso lwakho lwe- 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 "Tracking number" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/src/SimpleSAML/Error/ErrorCodes.php:226 #, php-format msgid "Unable to locate metadata for %ENTITYID%" @@ -400,6 +457,9 @@ msgstr "Isitifiketi esingaziwa" msgid "Username" msgstr "Igama lomsebenzisi" +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 "Asizange samukele impendulo ethunyelwe ukusuka Kumhlinzeki Kamazisi." @@ -411,6 +471,9 @@ msgstr "Ngenkathi lo mhlinzeki kamazisi ezama ukwakha impendulo yokuqinisekisa, 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 "World" +msgstr "" + msgid "Yes, all services" msgstr "Yebo, wonke amasevisi" @@ -458,10 +521,16 @@ msgstr "Uphume ngempumelelo kuwo wonke amasevisi abhalwe ngenhla." 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 "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 "Idatha yeseshini yakho ayikwazi ukubuyiswa njengamanje ngenxa yezinkinga zobuchwepheshe. Sicela uzame futhi emizuzwini embalwa." +msgid "Your session is valid for %remaining% seconds from now." +msgstr "" + msgid "[Preferred choice]" msgstr "[Ukukhetha okuncanyelwayo]" 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 63a28ed939..a03fbbea5b 100644 --- a/modules/admin/locales/af/LC_MESSAGES/admin.po +++ b/modules/admin/locales/af/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Deprecated" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "" @@ -69,13 +77,14 @@ msgstr "" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "" @@ -140,6 +152,9 @@ msgstr "" msgid "Metadata parser" msgstr "Metadata parser" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/ar/LC_MESSAGES/admin.po b/modules/admin/locales/ar/LC_MESSAGES/admin.po index 9ce0168e89..26e57558af 100644 --- a/modules/admin/locales/ar/LC_MESSAGES/admin.po +++ b/modules/admin/locales/ar/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "استنكار" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "تشخيص اسم المضيف، المنفذ، الطريقة" @@ -69,13 +77,14 @@ msgstr "الدخول الموحد" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "تسجيل الخروج" @@ -140,6 +152,9 @@ msgstr "بيانات وصفية/ ميتاداتا" msgid "Metadata parser" msgstr "محلل البيانات الوصفية/الميتاداتا" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "حلل" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "السمات" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/ca/LC_MESSAGES/admin.po b/modules/admin/locales/ca/LC_MESSAGES/admin.po index b75a05c74a..c2a9834db8 100644 --- a/modules/admin/locales/ca/LC_MESSAGES/admin.po +++ b/modules/admin/locales/ca/LC_MESSAGES/admin.po @@ -1,3 +1,349 @@ 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 PHP installation" +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 f974668425..457aa26172 100644 --- a/modules/admin/locales/cs/LC_MESSAGES/admin.po +++ b/modules/admin/locales/cs/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Zastaralé" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnoza jména počítače, portu a protokolu" @@ -69,13 +77,14 @@ msgstr "Federace" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Odhlášení" @@ -140,6 +152,9 @@ msgstr "Metadata" msgid "Metadata parser" msgstr "Metadata parser" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Analýza" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Vaše atributy" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/da/LC_MESSAGES/admin.po b/modules/admin/locales/da/LC_MESSAGES/admin.po index 4cd9ac7e54..a46dfd940f 100644 --- a/modules/admin/locales/da/LC_MESSAGES/admin.po +++ b/modules/admin/locales/da/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Under udfasning" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnosticér hostnavn, port og protokol" @@ -69,13 +77,14 @@ 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:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Log ud" @@ -140,6 +152,9 @@ msgstr "Metadata" msgid "Metadata parser" msgstr "Metadata parser" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Parse" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Dine oplysninger" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/de/LC_MESSAGES/admin.po b/modules/admin/locales/de/LC_MESSAGES/admin.po index 3287995142..84df1b48ba 100644 --- a/modules/admin/locales/de/LC_MESSAGES/admin.po +++ b/modules/admin/locales/de/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Veraltet" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnose des Hostnamen, Ports und Protokolls" @@ -69,13 +77,14 @@ msgstr "Föderation" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Abmelden" @@ -140,6 +152,9 @@ msgstr "Metadaten" msgid "Metadata parser" msgstr "Metadatenparser" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Parse" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Ihre Attribute" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/el/LC_MESSAGES/admin.po b/modules/admin/locales/el/LC_MESSAGES/admin.po index d11a44bcc8..2a96f4983e 100644 --- a/modules/admin/locales/el/LC_MESSAGES/admin.po +++ b/modules/admin/locales/el/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Υπό απόσυρση" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Διαγνωστικά σχετικά με ρυθμίσεις ονόματος διακομιστή, θύρας και πρωτοκόλλου" @@ -69,13 +77,14 @@ msgstr "Ομοσπονδία" msgid "Format" msgstr "Μορφή (format)" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Αποσύνδεση" @@ -140,6 +152,9 @@ msgstr "Μεταδεδομένα" msgid "Metadata parser" msgstr "Αναλυτής (parser) μεταδεδομένων" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Ανάλυση" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Πληροφορίες" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/en/LC_MESSAGES/admin.po b/modules/admin/locales/en/LC_MESSAGES/admin.po index afa3523f56..0efd9d6fde 100644 --- a/modules/admin/locales/en/LC_MESSAGES/admin.po +++ b/modules/admin/locales/en/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -75,13 +80,14 @@ msgstr "Federation" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -109,14 +115,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "" @@ -243,6 +252,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -288,9 +301,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "" @@ -309,6 +328,9 @@ msgstr "" msgid "cURL (required if automatic version checks are used, also by some modules)" msgstr "" +msgid "default" +msgstr "" + msgid "disabled" msgstr "" diff --git a/modules/admin/locales/st/LC_MESSAGES/admin.po b/modules/admin/locales/en_LS/LC_MESSAGES/admin.po similarity index 89% rename from modules/admin/locales/st/LC_MESSAGES/admin.po rename to modules/admin/locales/en_LS/LC_MESSAGES/admin.po index e825d617b2..0dc9071715 100644 --- a/modules/admin/locales/st/LC_MESSAGES/admin.po +++ b/modules/admin/locales/en_LS/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Deprecated" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "" @@ -69,13 +77,14 @@ msgstr "" msgid "Format" msgstr "Fomata" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Ho tswa" @@ -140,6 +152,9 @@ msgstr "" msgid "Metadata parser" msgstr "Metadata parser" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Makgabane a hao" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/es/LC_MESSAGES/admin.po b/modules/admin/locales/es/LC_MESSAGES/admin.po index 0b47006e6b..448352a1e3 100644 --- a/modules/admin/locales/es/LC_MESSAGES/admin.po +++ b/modules/admin/locales/es/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Obsoleto" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnóstico sobre nombre de host, puerto y protocolo" @@ -69,13 +77,14 @@ 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:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Salir" @@ -140,6 +152,9 @@ msgstr "Metadatos" msgid "Metadata parser" msgstr "Analizar metadatos" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Analizar" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Atributos" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/et/LC_MESSAGES/admin.po b/modules/admin/locales/et/LC_MESSAGES/admin.po index e902088b2f..5ae59afb3e 100644 --- a/modules/admin/locales/et/LC_MESSAGES/admin.po +++ b/modules/admin/locales/et/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Vananenud" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Serverinime, pordi ja protokolli diagnostika" @@ -69,13 +77,14 @@ msgstr "Federeerimine" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Logi välja" @@ -140,6 +152,9 @@ msgstr "Metaandmed" msgid "Metadata parser" msgstr "Metaandmete parsija" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Parsi" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Sinu atribuudid" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/eu/LC_MESSAGES/admin.po b/modules/admin/locales/eu/LC_MESSAGES/admin.po index fb52bb40c0..e768dc245a 100644 --- a/modules/admin/locales/eu/LC_MESSAGES/admin.po +++ b/modules/admin/locales/eu/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Zaharkitua" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Host, ataka eta protokoloen gaineko diagnostikoa" @@ -69,13 +77,14 @@ msgstr "Federazioa" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Irten" @@ -140,6 +152,9 @@ msgstr "Metadatuak" msgid "Metadata parser" msgstr "Metadatuak aztertu" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Aztertu" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Atributuak" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/fa/LC_MESSAGES/admin.po b/modules/admin/locales/fa/LC_MESSAGES/admin.po index b75a05c74a..75b2c8af7c 100644 --- a/modules/admin/locales/fa/LC_MESSAGES/admin.po +++ b/modules/admin/locales/fa/LC_MESSAGES/admin.po @@ -1,3 +1,349 @@ 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 PHP installation" +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 f23e51853f..ddfe2e92d8 100644 --- a/modules/admin/locales/fi/LC_MESSAGES/admin.po +++ b/modules/admin/locales/fi/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Vanhentunut" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Isäntänimen, portin ja protokollan diagnostiikka" @@ -69,13 +77,14 @@ msgstr "Federaatio" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Uloskirjautuminen" @@ -140,6 +152,9 @@ msgstr "Metadata" msgid "Metadata parser" msgstr "Metadata parser" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Attribuuttisi" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/fr/LC_MESSAGES/admin.po b/modules/admin/locales/fr/LC_MESSAGES/admin.po index 78e40d7e73..69c85c0685 100644 --- a/modules/admin/locales/fr/LC_MESSAGES/admin.po +++ b/modules/admin/locales/fr/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "Extension Date/Heure" msgid "Deprecated" msgstr "Obsolète" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnostics sur le nom d'hôte, le port et le protocole" @@ -69,13 +77,14 @@ msgstr "Fédération" msgid "Format" msgstr "Format" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 msgid "Hashing function" msgstr "Fonction de hachage" -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 "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." @@ -105,14 +114,17 @@ msgstr "Extension LDAP" 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/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "Déconnexion" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Déconnexion" @@ -142,6 +154,9 @@ msgstr "Métadonnées" msgid "Metadata parser" msgstr "Analyseur de métadonnées" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "Extension de chaîne multioctets" @@ -166,6 +181,10 @@ msgstr "Extension PDO" 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/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Analyser" @@ -232,6 +251,10 @@ msgstr "Test" msgid "Test Authentication Sources" msgstr "Tester les sources d'authentification" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "L'option de configuration technicalcontact_email doit être définie" @@ -277,6 +300,15 @@ msgstr "Vous utilisez la version %version%\"" 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 "You have been logged out." +msgstr "" + +msgid "You have the following modules installed" +msgstr "" + +msgid "Your PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Vos attributs" @@ -295,12 +327,24 @@ msgstr "cURL (peut être requis par certains modules)" 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 "default" +msgstr "" + +msgid "disabled" +msgstr "" + +msgid "enabled" +msgstr "" + msgid "expired" msgstr "expiré" msgid "expires" msgstr "expire" +msgid "means the module is not enabled" +msgstr "" + msgid "new" msgstr "nouveau" diff --git a/modules/admin/locales/he/LC_MESSAGES/admin.po b/modules/admin/locales/he/LC_MESSAGES/admin.po index 3d7167d399..51f5f4c64a 100644 --- a/modules/admin/locales/he/LC_MESSAGES/admin.po +++ b/modules/admin/locales/he/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "פג תוקף" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "איבחון על שם מחשב, פורט ופרוטוקול" @@ -69,13 +77,14 @@ msgstr "איחוד" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "התנתקות" @@ -140,6 +152,9 @@ msgstr "מטא-מידע" msgid "Metadata parser" msgstr "מנתח מטא-מידע" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "נתח" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "התכונות שלך" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/hr/LC_MESSAGES/admin.po b/modules/admin/locales/hr/LC_MESSAGES/admin.po index 142164ad72..024825e760 100644 --- a/modules/admin/locales/hr/LC_MESSAGES/admin.po +++ b/modules/admin/locales/hr/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Zastarjelo" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Dijagnostika vezana uz naziv poslužitelja, port i protokol" @@ -69,13 +77,14 @@ msgstr "Federacija" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Odjava" @@ -140,6 +152,9 @@ msgstr "Metapodaci" msgid "Metadata parser" msgstr "Analizator metapodataka" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Analiziraj" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Vaši atributi" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/hu/LC_MESSAGES/admin.po b/modules/admin/locales/hu/LC_MESSAGES/admin.po index 502e2656a9..24c77a541f 100644 --- a/modules/admin/locales/hu/LC_MESSAGES/admin.po +++ b/modules/admin/locales/hu/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" 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:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Port és protokoll diagnosztika" @@ -69,13 +77,14 @@ msgstr "Föderáció" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Kilépés" @@ -140,6 +152,9 @@ msgstr "Metaadatok" msgid "Metadata parser" msgstr "Metaadat értelmező" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Értelmez" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Az ön attribútumai" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/id/LC_MESSAGES/admin.po b/modules/admin/locales/id/LC_MESSAGES/admin.po index 1068194d82..0cbafc44f3 100644 --- a/modules/admin/locales/id/LC_MESSAGES/admin.po +++ b/modules/admin/locales/id/LC_MESSAGES/admin.po @@ -1,33 +1,38 @@ 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:411 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 "" +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:401 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. ]" +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/Federation.php:165 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:166 msgid "ADFS IdP metadata" -msgstr "" +msgstr "Metadata ADFS IdP" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:163 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:164 msgid "ADFS SP metadata" -msgstr "" +msgstr "Metadata ADFS SP" msgid "An error occurred" -msgstr "" +msgstr "Terjadi kesalahan" msgid "Authentication data" -msgstr "" +msgstr "Data otentikasi" msgid "Back" -msgstr "" +msgstr "Kembali" msgid "Certificates" msgstr "Sertifikat" @@ -35,228 +40,249 @@ 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 "" +msgstr "Isi atribut jpegPhoto" msgid "Converted metadata" msgstr "Metadata yang telah dikonvesi" msgid "Copy to clipboard" -msgstr "" +msgstr "Salin ke papan klip" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:217 msgid "Date/Time Extension" -msgstr "" +msgstr "Perpanjangan Tanggal/Waktu" msgid "Deprecated" msgstr "Usang" +msgid "Details" +msgstr "Detail" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnostik pada hostname, port dan protokol" msgid "EntityID" -msgstr "" +msgstr "EntityID" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 msgid "Federation" msgstr "Federasi" msgid "Format" -msgstr "" +msgstr "Format" + +msgid "Go back to SimpleSAMLphp installation page" +msgstr "Kembali ke halaman instalasi SimpleSAMLphp" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 msgid "Hashing function" -msgstr "" +msgstr "Fungsi hashing" -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 "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." msgid "Hosted IdP metadata present" -msgstr "" +msgstr "Metadata IdP yang dihosting hadir" msgid "Hosted entities" -msgstr "" +msgstr "Entitas yang dihosting" msgid "In SAML 2.0 Metadata XML format:" -msgstr "Dalam format XML Metadata SAML 2.0" +msgstr "Dalam format XML Metadata SAML 2.0:" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:134 msgid "Information on your PHP installation" -msgstr "" +msgstr "Informasi tentang instalasi PHP Anda" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 msgid "JSON support" -msgstr "" +msgstr "Dukungan JSON" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:303 msgid "LDAP extension" -msgstr "" +msgstr "Ekstensi LDAP" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:302 msgid "LDAP extension (required if an LDAP backend is used)" -msgstr "" +msgstr "Ekstensi LDAP (diperlukan jika backend LDAP digunakan)" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" -msgstr "" +msgstr "Keluar" + +msgid "Logged out" +msgstr "Anda telah keluar" msgid "Logout" -msgstr "Logout" +msgstr "Keluar" msgid "Look up metadata for entity:" -msgstr "" +msgstr "Mencari metadata untuk entitas:" msgid "Matching key-pair for signing assertions" -msgstr "" +msgstr "Mencocokkan pasangan kunci untuk menandatangani pernyataan" msgid "Matching key-pair for signing assertions (rollover key)" -msgstr "" +msgstr "Mencocokkan pasangan kunci untuk menandatangani pernyataan (kunci rollover)" msgid "Matching key-pair for signing metadata" -msgstr "" +msgstr "Mencocokkan pasangan kunci untuk menandatangani metadata" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:333 msgid "Memcache or Memcached extension" -msgstr "" +msgstr "Ekstensi Memcache atau Memcached" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:330 msgid "Memcache or Memcached extension (required if the memcache backend is used)" -msgstr "" +msgstr "Ekstensi Memcache atau Memcached (diperlukan jika backend memcache digunakan)" msgid "Metadata" msgstr "Metadata" msgid "Metadata parser" -msgstr "Parser metadata" +msgstr "Pengurai metadata" + +msgid "Modules" +msgstr "Modul" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" -msgstr "" +msgstr "Ekstensi String Multibyte" msgid "No file selected." -msgstr "" +msgstr "Ttak ada berkas yang dipilih." #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:235 msgid "OpenSSL" -msgstr "" +msgstr "OpenSSL" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:295 msgid "PDO Extension (required if a database backend is used)" -msgstr "" +msgstr "Ekstensi PDO (diperlukan jika backend basis data digunakan)" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:296 msgid "PDO extension" -msgstr "" +msgstr "Perpanjangan PDO" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:200 -#, php-format +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:210 +#, no-php-format,php-format msgid "PHP %minimum% or newer is needed. You are running: %current%" -msgstr "" +msgstr "PHP %minimum% atau yang lebih baru diperlukan. Anda sedang menjalankan: %current%" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "Ekstensi PHP intl" msgid "Parse" msgstr "Parse" msgid "Radius extension" -msgstr "" +msgstr "Perpanjangan radius" msgid "Radius extension (required if a radius backend is used)" -msgstr "" +msgstr "Ekstensi radius (diperlukan jika backend radius digunakan)" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:247 msgid "Regular expression support" -msgstr "" +msgstr "Dukungan ekspresi reguler" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:161 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 msgid "SAML 2.0 IdP metadata" -msgstr "" +msgstr "Metadata SAML 2.0 IdP" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:159 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:160 msgid "SAML 2.0 SP metadata" -msgstr "" +msgstr "Metadata SAML 2.0 SP" msgid "SAML Metadata" -msgstr "" +msgstr "Metadata SAML" msgid "SAML Subject" -msgstr "" +msgstr "Subjek SAML" msgid "Search" -msgstr "" +msgstr "Cari" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:289 msgid "Session extension" -msgstr "" +msgstr "Perpanjangan sesi" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:288 msgid "Session extension (required if PHP sessions are used)" -msgstr "" +msgstr "Ekstensi sesi (diperlukan jika sesi PHP digunakan)" msgid "SimpleSAMLphp Metadata" -msgstr "" +msgstr "Metadata SimpleSAMLphp" msgid "SimpleSAMLphp Show Metadata" -msgstr "" +msgstr "SimpleSAMLphp Tampilkan Metadata" msgid "SimpleSAMLphp installation page" msgstr "Halaman instalasi SimpleSAMLphp" msgid "SimpleSAMLphp is installed in:" -msgstr "" +msgstr "SimpleSAMLphp diinstal di:" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:265 msgid "Standard PHP library (SPL)" -msgstr "" +msgstr "Perpustakaan PHP standar (SPL)" msgid "Technical information" -msgstr "" +msgstr "Informasi teknis" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 msgid "Test" -msgstr "" +msgstr "Uji" msgid "Test Authentication Sources" -msgstr "" +msgstr "Menguji Sumber Autentikasi" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "Opsi konfigurasi \"secretsalt\" mungkin tidak mengandung tanda `%`." #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" -msgstr "" +msgstr "Opsi konfigurasi technicalcontact_email harus ditetapkan" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:361 msgid "The auth.adminpassword configuration option must be set" -msgstr "" +msgstr "Opsi konfigurasi auth.adminpassword harus ditetapkan" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:426 msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." -msgstr "" +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:" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:241 msgid "XML DOM" -msgstr "" +msgstr "XML DOM" msgid "XML metadata" msgstr "metadata XML" @@ -267,12 +293,21 @@ msgstr "Konverter XML ke metadata SimpleSAMLphp" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:451 msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." -msgstr "" +msgstr "Anda menjalankan versi SimpleSAMLphp yang sudah ketinggalan zaman. Harap perbarui ke versi terbaru sesegera mungkin." msgid "You are running version %version%." -msgstr "" +msgstr "Anda sedang menjalankan versi %version%." msgid "You can get the metadata XML on a dedicated URL:" +msgstr "Anda bisa mendapatkan XML metadata pada URL khusus:" + +msgid "You have been logged out." +msgstr "Kamu Sudah Keluar." + +msgid "You have the following modules installed" +msgstr "Anda telah menginstal modul-modul berikut ini" + +msgid "Your PHP installation" msgstr "" msgid "Your attributes" @@ -283,41 +318,53 @@ msgstr "Session anda valid untuk %remaining% detik dari sekarang." #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:229 msgid "ZLib" -msgstr "" +msgstr "ZLib" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:277 msgid "cURL (might be required by some modules)" -msgstr "" +msgstr "cURL (mungkin diperlukan oleh beberapa modul)" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:280 msgid "cURL (required if automatic version checks are used, also by some modules)" -msgstr "" +msgstr "cURL (diperlukan jika pemeriksaan versi otomatis digunakan, juga oleh beberapa modul)" + +msgid "default" +msgstr "bawaan" + +msgid "disabled" +msgstr "dinonaktifkan" + +msgid "enabled" +msgstr "difungsikan" msgid "expired" -msgstr "" +msgstr "kadaluwarsa" msgid "expires" -msgstr "" +msgstr "berakhir" + +msgid "means the module is not enabled" +msgstr "berarti modul tidak diaktifkan" msgid "new" -msgstr "" +msgstr "baru" msgid "not set" -msgstr "" +msgstr "tidak di atur" msgid "optional" -msgstr "" +msgstr "opsional" msgid "or select a file:" -msgstr "" +msgstr "atau pilih sebuah file:" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:322 msgid "predis/predis (required if the redis data store is used)" -msgstr "" +msgstr "predis/predis (diperlukan jika penyimpanan data redis digunakan)" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:323 msgid "predis/predis library" -msgstr "" +msgstr "perpustakaan predis/predis" msgid "required" -msgstr "" +msgstr "diperlukan" diff --git a/modules/admin/locales/it/LC_MESSAGES/admin.po b/modules/admin/locales/it/LC_MESSAGES/admin.po index 09f7085d8f..0aa9bfdb1b 100644 --- a/modules/admin/locales/it/LC_MESSAGES/admin.po +++ b/modules/admin/locales/it/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Deprecato" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnostica su nome dell'host, porta e protocollo" @@ -69,13 +77,14 @@ msgstr "Federazione" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Disconnessione" @@ -140,6 +152,9 @@ msgstr "Metadati" msgid "Metadata parser" msgstr "Parser dei metadati" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Analisi" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "I tuoi attributi" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/ja/LC_MESSAGES/admin.po b/modules/admin/locales/ja/LC_MESSAGES/admin.po index 2dabd970e1..457fff2608 100644 --- a/modules/admin/locales/ja/LC_MESSAGES/admin.po +++ b/modules/admin/locales/ja/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "非推奨" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "ホストネームやポート、プロトコルを診断" @@ -69,13 +77,14 @@ msgstr "連携" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "ログアウト" @@ -140,6 +152,9 @@ msgstr "メタデータ" msgid "Metadata parser" msgstr "メタデータパーサ" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "パース" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "属性" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/lb/LC_MESSAGES/admin.po b/modules/admin/locales/lb/LC_MESSAGES/admin.po index 9d4f8b8d47..2e6916ea6f 100644 --- a/modules/admin/locales/lb/LC_MESSAGES/admin.po +++ b/modules/admin/locales/lb/LC_MESSAGES/admin.po @@ -1,14 +1,19 @@ 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:411 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 "" +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:401 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 ]" +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/Federation.php:165 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:166 @@ -21,23 +26,26 @@ msgid "ADFS SP metadata" msgstr "" msgid "An error occurred" -msgstr "" +msgstr "E Feeler ass opgetrueden" msgid "Authentication data" -msgstr "" +msgstr "Authentifikatiouns-Daten" msgid "Back" -msgstr "" +msgstr "Zeréck" msgid "Certificates" -msgstr "" +msgstr "Zertifikater" msgid "Checking your PHP installation" -msgstr "PHP Installatioun kontrolléiren" +msgstr "PHP Installatioun kontrolléieren" + +msgid "Checks" +msgstr "Kontrollen" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:33 msgid "Configuration" -msgstr "" +msgstr "Konfiguratioun" msgid "Content of jpegPhoto attribute" msgstr "" @@ -48,34 +56,44 @@ msgstr "" msgid "Copy to clipboard" msgstr "" +#: /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:217 msgid "Date/Time Extension" -msgstr "" +msgstr "Datum/Zäit Extensioun" msgid "Deprecated" msgstr "Deprecated" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 +msgid "Details" +msgstr "Detailer" + +#: /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" +msgstr "Diagnose vum Hostname, Port a Protokoll" msgid "EntityID" -msgstr "" +msgstr "EntityID" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:41 msgid "Federation" -msgstr "" +msgstr "Federatioun" msgid "Format" -msgstr "" +msgstr "Format" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 +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 "" +msgstr "Hash-Funktioun" -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 "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" @@ -85,37 +103,40 @@ msgid "Hosted entities" msgstr "" msgid "In SAML 2.0 Metadata XML format:" -msgstr "" +msgstr "Am SAML 2.0 Metadata XML Format" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:134 msgid "Information on your PHP installation" -msgstr "" +msgstr "Informatiounen iwwer Är PHP Installatioun" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 msgid "JSON support" -msgstr "" +msgstr "JSON Support" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:303 msgid "LDAP extension" -msgstr "" +msgstr "LDAP Extensioun" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:302 msgid "LDAP extension (required if an LDAP backend is used)" -msgstr "" +msgstr "LDAP Extnsioun (benéidegt wann een LDAP Backend genotzt gëtt" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" -msgstr "" +msgstr "Ausloggen" + +msgid "Logged out" +msgstr "Aus geloggt" msgid "Logout" -msgstr "" +msgstr "Ausloggen" msgid "Look up metadata for entity:" -msgstr "" +msgstr "Metadate fir d'Entitéit sichen" msgid "Matching key-pair for signing assertions" msgstr "" @@ -135,17 +156,21 @@ msgid "Memcache or Memcached extension (required if the memcache backend is used msgstr "" msgid "Metadata" -msgstr "Meta Données" +msgstr "Metadaten" msgid "Metadata parser" msgstr "Metadata parser" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 +msgid "Modules" +msgstr "Moduler" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:282 msgid "Multibyte String extension" msgstr "" msgid "No file selected." -msgstr "" +msgstr "Keng Datei ausgewielt" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:235 msgid "OpenSSL" @@ -162,6 +187,10 @@ msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:200 #, 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%\"" + +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" msgstr "" msgid "Parse" @@ -180,21 +209,21 @@ msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:161 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:162 msgid "SAML 2.0 IdP metadata" -msgstr "" +msgstr "SAML 2.0 IdP Metadaten" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:159 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:160 msgid "SAML 2.0 SP metadata" -msgstr "" +msgstr "SAML 2.0 SP Metadaten" msgid "SAML Metadata" -msgstr "" +msgstr "SAML Metadaten" msgid "SAML Subject" -msgstr "" +msgstr "SAML Sujet" msgid "Search" -msgstr "" +msgstr "Sich" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:289 msgid "Session extension" @@ -205,51 +234,55 @@ msgid "Session extension (required if PHP sessions are used)" msgstr "" msgid "SimpleSAMLphp Metadata" -msgstr "" +msgstr "SimpleSAMLphp Metadaten" msgid "SimpleSAMLphp Show Metadata" msgstr "" msgid "SimpleSAMLphp installation page" -msgstr "" +msgstr "SimpleSAMLphp Installatiouns-Säit" msgid "SimpleSAMLphp is installed in:" -msgstr "" +msgstr "SimpleSAMLphp ass installéiert op" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:265 msgid "Standard PHP library (SPL)" msgstr "" msgid "Technical information" -msgstr "" +msgstr "Technesch Informatiounen" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Menu.php:37 msgid "Test" -msgstr "" +msgstr "Test" msgid "Test Authentication Sources" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 -msgid "The technicalcontact_email configuration option should be set" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +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 "D'technicalcontact_email Konfiguratiounsoptioun sollt gesat sinn" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:361 msgid "The auth.adminpassword configuration option must be set" -msgstr "" +msgstr "D' auth.adminpassword Konfiguratiounsoptioun muss gesat sinn" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:426 msgid "The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates." -msgstr "" +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 "" @@ -259,11 +292,11 @@ msgid "XML DOM" msgstr "" msgid "XML metadata" -msgstr "" +msgstr "XML Metadaten" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:154 msgid "XML to SimpleSAMLphp metadata converter" -msgstr "XML zu SimpleSAMLphp Meta Données Emwandler" +msgstr "XML zu SimpleSAMLphp Metdaten Ëmwandler" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:451 msgid "You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible." @@ -275,41 +308,62 @@ msgstr "" msgid "You can get the metadata XML on a dedicated URL:" msgstr "" -msgid "Your attributes" +msgid "You have been logged out." +msgstr "Dir gouft ausgeloggt" + +msgid "You have the following modules installed" msgstr "" -msgid "Your session is valid for %remaining% seconds from now." +msgid "Your PHP installation" msgstr "" +msgid "Your attributes" +msgstr "Är Attributer" + +msgid "Your session is valid for %remaining% seconds from now." +msgstr "Är Sessioun ass gülteg fir %remaining% Sekonnen ab elo." + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:229 msgid "ZLib" msgstr "" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:277 msgid "cURL (might be required by some modules)" -msgstr "" +msgstr "cURL (kéint vu verschiddenen Moduler benéidegt ginn)" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:280 msgid "cURL (required if automatic version checks are used, also by some modules)" -msgstr "" +msgstr "cURL (benéidegt wann automatesch Versiouns Kontrollen genotzt ginn, an och vu verschidde Moduler)" + +msgid "default" +msgstr "standard" + +msgid "disabled" +msgstr "ausgeschalt" + +msgid "enabled" +msgstr "ugeschalt" msgid "expired" -msgstr "" +msgstr "ofgelaf" msgid "expires" -msgstr "" +msgstr "leeft of" + +msgid "means the module is not enabled" +msgstr "bedeit dass d'Modul net ugeschalt ass" msgid "new" -msgstr "" +msgstr "nei" msgid "not set" -msgstr "" +msgstr "net gesat" msgid "optional" -msgstr "" +msgstr "optional" msgid "or select a file:" -msgstr "" +msgstr "oder wielt eng Datei" #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:322 msgid "predis/predis (required if the redis data store is used)" @@ -320,4 +374,4 @@ msgid "predis/predis library" msgstr "" msgid "required" -msgstr "" +msgstr "benéidegt" diff --git a/modules/admin/locales/lt/LC_MESSAGES/admin.po b/modules/admin/locales/lt/LC_MESSAGES/admin.po index d5d7167dc6..a85142d932 100644 --- a/modules/admin/locales/lt/LC_MESSAGES/admin.po +++ b/modules/admin/locales/lt/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Nebepalaikoma" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Serverio vardo, porto ir protokolo diagnostika" @@ -69,13 +77,14 @@ msgstr "Federacija" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Atsijungti" @@ -140,6 +152,9 @@ msgstr "Metaduomenys" msgid "Metadata parser" msgstr "Metaduomenų analizatorius" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Nagrinėti" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Jūsų atributai" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/lv/LC_MESSAGES/admin.po b/modules/admin/locales/lv/LC_MESSAGES/admin.po index 9bb295813d..cb19c3bc1b 100644 --- a/modules/admin/locales/lv/LC_MESSAGES/admin.po +++ b/modules/admin/locales/lv/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Atcelts" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Saimniekdatora vārda, porta un protokola diagnostika" @@ -69,13 +77,14 @@ msgstr "Federācija" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Atslēgties" @@ -140,6 +152,9 @@ msgstr "Metadati" msgid "Metadata parser" msgstr "Metadatu parsētājs" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Parsēt" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Atribūti" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/nb/LC_MESSAGES/admin.po b/modules/admin/locales/nb/LC_MESSAGES/admin.po index 9dba1fb2a2..45f9475ca6 100644 --- a/modules/admin/locales/nb/LC_MESSAGES/admin.po +++ b/modules/admin/locales/nb/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Utdatert" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnostiser hostnavn, port og protokoll" @@ -69,13 +77,14 @@ msgstr "Føderasjon" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Logg ut" @@ -140,6 +152,9 @@ msgstr "Metadata" msgid "Metadata parser" msgstr "Metadata parser" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Pars" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Dine attributter" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/nl/LC_MESSAGES/admin.po b/modules/admin/locales/nl/LC_MESSAGES/admin.po index 5459a5d1ae..45288b1c79 100644 --- a/modules/admin/locales/nl/LC_MESSAGES/admin.po +++ b/modules/admin/locales/nl/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "Date/Time-extensie" msgid "Deprecated" msgstr "Verouderd" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Inspectie op hostnaam, poort en protocol" @@ -69,13 +77,14 @@ msgstr "Federatie" msgid "Format" msgstr "Formaat" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 msgid "Hashing function" msgstr "Hashfunctie" -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 "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." msgid "Hosted IdP metadata present" @@ -103,14 +112,17 @@ msgstr "LDAP-extensie" 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:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "Log uit" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Afmelden" @@ -140,6 +152,9 @@ msgstr "Metadata" msgid "Metadata parser" msgstr "Metadata parser" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "Multibye String-extensie" @@ -164,6 +179,10 @@ msgstr "PDO-extensie" 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/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Converteer" @@ -230,6 +249,10 @@ msgstr "Test" msgid "Test Authentication Sources" msgstr "Test Authentication Sources" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "Het instellen van de optie technicalcontact_email wordt aangeraden" @@ -275,6 +298,15 @@ msgstr "U draait versie %version%." msgid "You can get the metadata XML on a dedicated URL:" msgstr "U kunt de metadata-XML opvragen via deze URL:" +msgid "You have been logged out." +msgstr "" + +msgid "You have the following modules installed" +msgstr "" + +msgid "Your PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Uw attributen" @@ -293,12 +325,24 @@ msgstr "cURL (kan nodig zijn voor bepaalde modules)" 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 "default" +msgstr "" + +msgid "disabled" +msgstr "" + +msgid "enabled" +msgstr "" + msgid "expired" msgstr "verlopen" msgid "expires" msgstr "verloopt" +msgid "means the module is not enabled" +msgstr "" + msgid "new" msgstr "nieuw" diff --git a/modules/admin/locales/nn/LC_MESSAGES/admin.po b/modules/admin/locales/nn/LC_MESSAGES/admin.po index a8738df592..651169525b 100644 --- a/modules/admin/locales/nn/LC_MESSAGES/admin.po +++ b/modules/admin/locales/nn/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Utfasa" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnostiser hostnavn, port og protokoll" @@ -69,13 +77,14 @@ msgstr "Føderasjon" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Logg ut" @@ -140,6 +152,9 @@ msgstr "Metadata" msgid "Metadata parser" msgstr "Parser for metadata" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Parser" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Dine attributtar" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/no/LC_MESSAGES/admin.po b/modules/admin/locales/no/LC_MESSAGES/admin.po index 9dba1fb2a2..8e53a6bfc2 100644 --- a/modules/admin/locales/no/LC_MESSAGES/admin.po +++ b/modules/admin/locales/no/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Utdatert" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnostiser hostnavn, port og protokoll" @@ -69,13 +77,14 @@ msgstr "Føderasjon" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Logg ut" @@ -140,6 +152,9 @@ msgstr "Metadata" msgid "Metadata parser" msgstr "Metadata parser" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Pars" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Dine attributter" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/pl/LC_MESSAGES/admin.po b/modules/admin/locales/pl/LC_MESSAGES/admin.po index 3bafb8428e..f302758d10 100644 --- a/modules/admin/locales/pl/LC_MESSAGES/admin.po +++ b/modules/admin/locales/pl/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Depreciado" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnostyka na hoście, port i protokół" @@ -69,13 +77,14 @@ msgstr "Federacja" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Wyloguj" @@ -140,6 +152,9 @@ msgstr "Metadane" msgid "Metadata parser" msgstr "Parser metadanych" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Przetwórz" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Twoje atrybuty" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/pt/LC_MESSAGES/admin.po b/modules/admin/locales/pt/LC_MESSAGES/admin.po index eed8dd931c..fcd44639c9 100644 --- a/modules/admin/locales/pt/LC_MESSAGES/admin.po +++ b/modules/admin/locales/pt/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Descontinuado" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnósticos: hostname, porto e protocolo" @@ -69,13 +77,14 @@ msgstr "Federação" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Sair" @@ -140,6 +152,9 @@ msgstr "Metadados" msgid "Metadata parser" msgstr "Conversor de Metadados" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Converter" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Os seus atributos" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/pt-br/LC_MESSAGES/admin.po b/modules/admin/locales/pt_BR/LC_MESSAGES/admin.po similarity index 90% rename from modules/admin/locales/pt-br/LC_MESSAGES/admin.po rename to modules/admin/locales/pt_BR/LC_MESSAGES/admin.po index d94b6128bd..569e414ffa 100644 --- a/modules/admin/locales/pt-br/LC_MESSAGES/admin.po +++ b/modules/admin/locales/pt_BR/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Descontinuado" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnósticos do host, porta e protocolo" @@ -69,13 +77,14 @@ msgstr "Federação" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Desconectar" @@ -140,6 +152,9 @@ msgstr "Metadata" msgid "Metadata parser" msgstr "Parser Metadata" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Parse" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Seus atributos" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/ro/LC_MESSAGES/admin.po b/modules/admin/locales/ro/LC_MESSAGES/admin.po index a2f2eec33c..c12b592926 100644 --- a/modules/admin/locales/ro/LC_MESSAGES/admin.po +++ b/modules/admin/locales/ro/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Depreciate" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnostic despre numele de host, port și protocol" @@ -69,13 +77,14 @@ msgstr "Federație" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Deautentificare" @@ -140,6 +152,9 @@ msgstr "Metadate" msgid "Metadata parser" msgstr "Analizor de metadate" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Analizează" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Atributele dumneavoastră" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/ru/LC_MESSAGES/admin.po b/modules/admin/locales/ru/LC_MESSAGES/admin.po index eda016fc67..555fe3d023 100644 --- a/modules/admin/locales/ru/LC_MESSAGES/admin.po +++ b/modules/admin/locales/ru/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Устаревшие" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Диагностика имени хоста, порта и протокола" @@ -69,13 +77,14 @@ msgstr "Федерация" msgid "Format" msgstr "Формат" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Выйти" @@ -140,6 +152,9 @@ msgstr "Метаданные" msgid "Metadata parser" msgstr "Средство синтаксического анализа метаданных" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Выполнить синтаксический анализ" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Ваши атрибуты" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/se/LC_MESSAGES/admin.po b/modules/admin/locales/se/LC_MESSAGES/admin.po index b75a05c74a..037169f99b 100644 --- a/modules/admin/locales/se/LC_MESSAGES/admin.po +++ b/modules/admin/locales/se/LC_MESSAGES/admin.po @@ -1,3 +1,349 @@ 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 PHP installation" +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 1d5e811178..e1ce89caab 100644 --- a/modules/admin/locales/sk/LC_MESSAGES/admin.po +++ b/modules/admin/locales/sk/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -75,13 +80,14 @@ msgstr "Federácia" msgid "Format" msgstr "Formát" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -109,14 +115,17 @@ msgstr "rozšírenie LDAP" 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:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "Odhlásiť sa" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Odhlásenie" @@ -243,6 +252,10 @@ msgstr "Test" msgid "Test Authentication Sources" msgstr "Test zdrojov autentifikácie" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "Možnosť technicalcontact_email by mala byť nastavená" @@ -288,9 +301,15 @@ msgstr "Vaša verzia: %version%." msgid "You can get the metadata XML on a dedicated URL:" msgstr "Môžete získať XML metadát na samostatnom odkaze:" +msgid "You have been logged out." +msgstr "" + msgid "You have the following modules installed" msgstr "Nasledujúce moduly sú nainštalované" +msgid "Your PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Vaše atribúty" @@ -309,6 +328,9 @@ msgstr "cURL (môže byť vyžadované niektorými modulmi)" 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 "default" +msgstr "" + msgid "disabled" msgstr "vypnuté" diff --git a/modules/admin/locales/sl/LC_MESSAGES/admin.po b/modules/admin/locales/sl/LC_MESSAGES/admin.po index 6aac6df5b2..bce7ab3616 100644 --- a/modules/admin/locales/sl/LC_MESSAGES/admin.po +++ b/modules/admin/locales/sl/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Neustrezen" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnostika strežnika, vrata in protokol" @@ -69,13 +77,14 @@ msgstr "Federacija" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Odjava" @@ -140,6 +152,9 @@ msgstr "Metapodatki" msgid "Metadata parser" msgstr "Metapodatkovna sintaktična analiza (parser)" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Sintaktična analiza (parse)" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Vaši atributi" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/sma/LC_MESSAGES/admin.po b/modules/admin/locales/sma/LC_MESSAGES/admin.po index b75a05c74a..2d2a32ea52 100644 --- a/modules/admin/locales/sma/LC_MESSAGES/admin.po +++ b/modules/admin/locales/sma/LC_MESSAGES/admin.po @@ -1,3 +1,349 @@ 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 PHP installation" +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 9d9d5faf35..c1df7c34cd 100644 --- a/modules/admin/locales/sr/LC_MESSAGES/admin.po +++ b/modules/admin/locales/sr/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Zastarelo" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Dijagnostika vezana za naziv servera (hostname), port i protokol " @@ -69,13 +77,14 @@ msgstr "Federacija" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Odjava" @@ -140,6 +152,9 @@ msgstr "Metapodaci" msgid "Metadata parser" msgstr "Metadata analizator" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Analiziraj" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Vaši atributi" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/sv/LC_MESSAGES/admin.po b/modules/admin/locales/sv/LC_MESSAGES/admin.po index 6416048110..c61a990c02 100644 --- a/modules/admin/locales/sv/LC_MESSAGES/admin.po +++ b/modules/admin/locales/sv/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Ej längre giltig" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Diagnosera värdnamn, port och protokoll" @@ -69,13 +77,14 @@ msgstr "Federation" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Logga ut" @@ -140,6 +152,9 @@ msgstr "Metadata" msgid "Metadata parser" msgstr "Metadataanalyserare" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Analysera" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Dina attribut" @@ -293,12 +325,24 @@ msgstr "" 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 "" 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..30f2d1b7ac --- /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 +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 429772b77e..41945e8b4f 100644 --- a/modules/admin/locales/tr/LC_MESSAGES/admin.po +++ b/modules/admin/locales/tr/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Deprecated" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "Bilgisayar adı, port ve protokol üzerine kontroller" @@ -69,13 +77,14 @@ msgstr "Federasyon" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "Çıkış" @@ -140,6 +152,9 @@ msgstr "Üstveri (metadata)" msgid "Metadata parser" msgstr "Üstveri (metadata) çözümleyici" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "Çözümle" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "Bilgileriniz" @@ -293,12 +325,24 @@ msgstr "" 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 "" 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..4fb5258a7b --- /dev/null +++ b/modules/admin/locales/uk/LC_MESSAGES/admin.po @@ -0,0 +1,372 @@ +msgid "" +msgstr "" +"Project-Id-Version: SimpleSAMLphp\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Domain: admin\n" +"X-Generator: Poedit 3.7\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 +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 b75a05c74a..da71bef35b 100644 --- a/modules/admin/locales/ur/LC_MESSAGES/admin.po +++ b/modules/admin/locales/ur/LC_MESSAGES/admin.po @@ -1,3 +1,349 @@ 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 PHP installation" +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..976855fa6c --- /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 +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 63a28ed939..093431ac73 100644 --- a/modules/admin/locales/xh/LC_MESSAGES/admin.po +++ b/modules/admin/locales/xh/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "Deprecated" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "" @@ -69,13 +77,14 @@ msgstr "" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "" @@ -140,6 +152,9 @@ msgstr "" msgid "Metadata parser" msgstr "Metadata parser" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/zh/LC_MESSAGES/admin.po b/modules/admin/locales/zh/LC_MESSAGES/admin.po index e5eb15a96e..3d8aaa9ee7 100644 --- a/modules/admin/locales/zh/LC_MESSAGES/admin.po +++ b/modules/admin/locales/zh/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "已经超时" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "诊断主机名/端口/协议" @@ -69,13 +77,14 @@ msgstr "联盟" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "退出" @@ -140,6 +152,9 @@ msgstr "元信息" msgid "Metadata parser" msgstr "元信息分析器" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "分析器" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "你的属性" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/zh-tw/LC_MESSAGES/admin.po b/modules/admin/locales/zh_TW/LC_MESSAGES/admin.po similarity index 90% rename from modules/admin/locales/zh-tw/LC_MESSAGES/admin.po rename to modules/admin/locales/zh_TW/LC_MESSAGES/admin.po index 302721211c..faf881b162 100644 --- a/modules/admin/locales/zh-tw/LC_MESSAGES/admin.po +++ b/modules/admin/locales/zh_TW/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "棄置" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "診斷主機名稱,連接埠及協定" @@ -69,13 +77,14 @@ msgstr "聯盟" msgid "Format" msgstr "格式" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "登出" @@ -140,6 +152,9 @@ msgstr "Metadata" msgid "Metadata parser" msgstr "Metadata 解析" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "解析" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "您的屬性值" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/locales/zu/LC_MESSAGES/admin.po b/modules/admin/locales/zu/LC_MESSAGES/admin.po index b93d374a9d..041ce2c6bc 100644 --- a/modules/admin/locales/zu/LC_MESSAGES/admin.po +++ b/modules/admin/locales/zu/LC_MESSAGES/admin.po @@ -1,5 +1,10 @@ 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:411 @@ -55,6 +60,9 @@ msgstr "" msgid "Deprecated" msgstr "已经超时" +msgid "Details" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:130 msgid "Diagnostics on hostname, port and protocol" msgstr "" @@ -69,13 +77,14 @@ msgstr "" msgid "Format" msgstr "" +msgid "Go back to SimpleSAMLphp installation page" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:223 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\n" -" it lasts until it times out and all the attributes that are attached to your session." +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" @@ -103,14 +112,17 @@ msgstr "" msgid "LDAP extension (required if an LDAP backend is used)" msgstr "" -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:174 #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Federation.php:473 -#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Test.php:153 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:106 +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:146 msgid "Log out" msgstr "" +msgid "Logged out" +msgstr "" + msgid "Logout" msgstr "" @@ -140,6 +152,9 @@ msgstr "" msgid "Metadata parser" msgstr "Metadata parser" +msgid "Modules" +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:271 msgid "Multibyte String extension" msgstr "" @@ -164,6 +179,10 @@ msgstr "" msgid "PHP %minimum% or newer is needed. You are running: %current%" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:259 +msgid "PHP intl extension" +msgstr "" + msgid "Parse" msgstr "" @@ -230,6 +249,10 @@ msgstr "" msgid "Test Authentication Sources" msgstr "" +#: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:425 +msgid "The \"secretsalt\" configuration option may not contain a `%` sign." +msgstr "" + #: /home/runner/work/simplesamlphp/simplesamlphp/modules/admin/src/Controller/Config.php:355 msgid "The technicalcontact_email configuration option should be set" msgstr "" @@ -275,6 +298,15 @@ 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 PHP installation" +msgstr "" + msgid "Your attributes" msgstr "" @@ -293,12 +325,24 @@ msgstr "" 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 "" diff --git a/modules/admin/public/assets/css/admin.css b/modules/admin/public/assets/css/admin.css index 1d7e76980f..d3765b9e2d 100644 --- a/modules/admin/public/assets/css/admin.css +++ b/modules/admin/public/assets/css/admin.css @@ -54,3 +54,12 @@ ul.modulelist { div.code-box-content { padding: 0; } + +.wrapping-menu { + white-space: normal; +} + +.wrapping-menu .pure-menu-list { + display: flex; + flex-wrap: wrap; +} diff --git a/modules/admin/src/Controller/Config.php b/modules/admin/src/Controller/Config.php index ea4929a83a..09b26c031b 100644 --- a/modules/admin/src/Controller/Config.php +++ b/modules/admin/src/Controller/Config.php @@ -5,21 +5,21 @@ namespace SimpleSAML\Module\admin\Controller; use SimpleSAML\Configuration; +use SimpleSAML\Event\Dispatcher\ModuleEventDispatcherFactory; use SimpleSAML\Locale\Translate; +use SimpleSAML\Logger; 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\StreamedResponse; +use Symfony\Contracts\HttpClient\Exception\ExceptionInterface; -use function curl_close; -use function curl_exec; -use function curl_getinfo; -use function curl_init; -use function curl_setopt; use function explode; use function function_exists; -use function json_decode; use function ltrim; use function phpversion; use function version_compare; @@ -33,9 +33,10 @@ */ class Config { - public const LATEST_VERSION_STATE_KEY = 'core:latest_simplesamlphp_version'; + public const string LATEST_VERSION_STATE_KEY = 'admin:latest_simplesamlphp_version'; + + public const string RELEASES_API = 'https://api.github.com/repos/simplesamlphp/simplesamlphp/releases/latest'; - public const RELEASES_API = 'https://api.github.com/repos/simplesamlphp/simplesamlphp/releases/latest'; /** @var \SimpleSAML\Utils\Auth */ protected Utils\Auth $authUtils; @@ -55,7 +56,7 @@ class Config */ public function __construct( protected Configuration $config, - protected Session $session + protected Session $session, ) { $this->menu = new Menu(); $this->authUtils = new Utils\Auth(); @@ -127,12 +128,12 @@ public function main(/** @scrutinizer ignore-unused */ Request $request): Templa '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), @@ -142,6 +143,10 @@ public function main(/** @scrutinizer ignore-unused */ Request $request): Templa 'modulelist' => $this->getModuleList(), ]; + $eventDispatcher = ModuleEventDispatcherFactory::getInstance(); + /** @var \SimpleSAML\Module\admin\Controller\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); @@ -174,7 +179,13 @@ public function phpinfo(/** @scrutinizer ignore-unused */ Request $request): Str { $this->authUtils->requireAdmin(); - 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; } @@ -199,12 +210,12 @@ protected function getPrerequisiteChecks(): array 'descr' => [ Translate::noop('PHP %minimum% or newer is needed. You are running: %current%'), [ - '%minimum%' => '8.1', - '%current%' => explode('-', phpversion())[0] - ] + '%minimum%' => '8.3', + '%current%' => explode('-', phpversion())[0], + ], ], - 'enabled' => version_compare(phpversion(), '8.1', '>=') - ] + 'enabled' => version_compare(phpversion(), '8.3', '>='), + ], ]; $store = $this->config->getOptionalString('store.type', null); $checkforupdates = $this->config->getOptionalBoolean('admin.checkforupdates', true); @@ -215,93 +226,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'), - ] + ], ], ]; @@ -321,18 +332,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) { @@ -364,8 +375,25 @@ protected function getPrerequisiteChecks(): array // Add module specific checks via the sanitycheck hook that a module can provide. + $eventDispatcher = ModuleEventDispatcherFactory::getInstance(); + /** @var \SimpleSAML\Module\admin\Event\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[] = [ @@ -402,61 +430,56 @@ 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.', ); } - /* + /** * Check for updates. Store the remote result in the session so we don't need to fetch it on every access to * this page. */ $checkforupdates = $this->config->getOptionalBoolean('admin.checkforupdates', true); if (($checkforupdates === true) && $this->config->getVersion() !== 'master') { - if (!function_exists('curl_init')) { - $warnings[] = Translate::noop( - 'The cURL PHP extension is missing. Cannot check for SimpleSAMLphp updates.' - ); - } else { - $latest = $this->session->getData(self::LATEST_VERSION_STATE_KEY, "version"); - - if (!$latest) { - $ch = curl_init(self::RELEASES_API); - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($ch, CURLOPT_USERAGENT, 'SimpleSAMLphp'); - curl_setopt($ch, CURLOPT_TIMEOUT, 2); - curl_setopt($ch, CURLOPT_PROXY, $this->config->getOptionalString('proxy', null)); - curl_setopt($ch, CURLOPT_PROXYUSERPWD, $this->config->getOptionalValue('proxy.auth', null)); - $response = curl_exec($ch); - - if (curl_getinfo($ch, CURLINFO_RESPONSE_CODE) === 200) { - /** @psalm-var string $response */ - $latest = json_decode($response, true); - $this->session->setData(self::LATEST_VERSION_STATE_KEY, 'version', $latest); - } - curl_close($ch); + $latest = $this->session->getData(self::LATEST_VERSION_STATE_KEY, "version"); + + if (!$latest) { + $client = $this->httpUtils->createHttpClient(['timeout' => 3]); + $response = $client->request('GET', self::RELEASES_API); + + try { + $latest = $response->toArray(); + $this->session->setData(self::LATEST_VERSION_STATE_KEY, 'version', $latest); + } catch (ExceptionInterface $e) { + Logger::warning(sprintf("Unable to check for updates; %s", $e->getMessage())); + $warnings[] = Translate::noop("Unable to check for updates; see logs for details."); } + } - if ($latest && version_compare($this->config->getVersion(), ltrim($latest['tag_name'], 'v'), 'lt')) { - $warnings[] = [ - Translate::noop( - 'You are running an outdated version of SimpleSAMLphp. Please update to the latest version as soon as possible.' - ), - [ - '%latest%' => $latest['html_url'], - ], - ]; - } + if ($latest && version_compare($this->config->getVersion(), ltrim($latest['tag_name'], 'v'), 'lt')) { + $warnings[] = [ + Translate::noop( + 'You are running an outdated version of SimpleSAMLphp. Please update to 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 825884aefd..f6486e2b32 100644 --- a/modules/admin/src/Controller/Federation.php +++ b/modules/admin/src/Controller/Federation.php @@ -9,6 +9,7 @@ use SimpleSAML\Assert\Assert; use SimpleSAML\Auth; use SimpleSAML\Configuration; +use SimpleSAML\Event\Dispatcher\ModuleEventDispatcherFactory; use SimpleSAML\Locale\Translate; use SimpleSAML\Logger; use SimpleSAML\Metadata\MetaDataStorageHandler; @@ -17,6 +18,7 @@ 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\Utils; use SimpleSAML\XHTML\Template; @@ -25,6 +27,19 @@ 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; +use function trim; +use function var_export; + /** * Controller class for the admin module. * @@ -59,7 +74,7 @@ class Federation * @param \SimpleSAML\Configuration $config The configuration to use. */ public function __construct( - protected Configuration $config + protected Configuration $config, ) { $this->menu = new Menu(); $this->mdHandler = MetaDataStorageHandler::getMetadataHandler(); @@ -152,7 +167,7 @@ public function main(/** @scrutinizer ignore-unused */ Request $request): Templa [ 'href' => Module::getModuleURL('admin/federation/metadata-converter'), 'text' => Translate::noop('XML to SimpleSAMLphp metadata converter'), - ] + ], ], 'entries' => $entries, 'mdtype' => [ @@ -168,6 +183,11 @@ public function main(/** @scrutinizer ignore-unused */ Request $request): Templa 'logouturl' => $this->authUtils->getAdminLogoutURL(), ]; + $eventDispatcher = ModuleEventDispatcherFactory::getInstance(); + /** @var \SimpleSAML\Module\admin\Event\FederationPageEvent $event */ + $event = $eventDispatcher->dispatch(new FederationPageEvent($t)); + $t = $event->getTemplate(); + Module::callHooks('federationpage', $t); Assert::isInstanceOf($t, Template::class); @@ -198,7 +218,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; } @@ -212,7 +236,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'), ); } @@ -221,7 +245,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']); @@ -231,11 +255,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()); } } @@ -258,7 +282,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'), ); } @@ -267,7 +291,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']); @@ -282,11 +306,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()); } } @@ -301,7 +325,7 @@ private function getHostedIdP(): array 'set' => $entity['metadata-set'], 'entity' => $entity['metadata-index'], 'prefix' => $key['prefix'], - ] + ], ); $key['name'] = 'idp'; unset($entity['metadata_array']['keys'][$kidx]['prefix']); @@ -351,8 +375,8 @@ private function getHostedSP(): array 'name', $source->getMetadata()->getOptionalLocalizedString( 'OrganizationDisplayName', - ['en' => $source->getAuthId()] - ) + ['en' => $source->getAuthId()], + ), ); $builder = new SAMLBuilder($source->getEntityId()); @@ -398,7 +422,10 @@ private function getHostedSP(): array public function metadataConverter(Request $request): Template { $this->authUtils->requireAdmin(); + $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); @@ -468,6 +495,7 @@ public function metadataConverter(Request $request): Template 'xmldata' => $xmldata, 'output' => $output, 'error' => $error, + 'upload' => boolval(ini_get('file_uploads')), ]; $this->menu->addOption('logout', $t->data['logouturl'], Translate::noop('Log out')); @@ -508,7 +536,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); diff --git a/modules/admin/src/Controller/Menu.php b/modules/admin/src/Controller/Menu.php index 7e6345f11b..0bf2a344fb 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; /** @@ -38,8 +40,8 @@ public function __construct() ], 'federation' => [ 'url' => Module::getModuleURL('admin/federation'), - 'name' => Translate::noop('Federation') - ] + 'name' => Translate::noop('Federation'), + ], ]; } @@ -87,6 +89,10 @@ public function addOption(string $id, string $url, string $name): void public function insert(Template $template): Template { $template->data['menu'] = $this->options; + $eventDispatcher = ModuleEventDispatcherFactory::getInstance(); + /** @var \SimpleSAML\Module\admin\Event\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 84d588d9d9..3dae7daa25 100644 --- a/modules/admin/src/Controller/Sandbox.php +++ b/modules/admin/src/Controller/Sandbox.php @@ -25,7 +25,7 @@ class Sandbox */ public function __construct( protected Configuration $config, - protected Session $session + protected Session $session, ) { } diff --git a/modules/admin/src/Controller/Test.php b/modules/admin/src/Controller/Test.php index f180fb1b18..7e45977bdf 100644 --- a/modules/admin/src/Controller/Test.php +++ b/modules/admin/src/Controller/Test.php @@ -54,7 +54,7 @@ class Test */ public function __construct( protected Configuration $config, - protected Session $session + protected Session $session, ) { $this->menu = new Menu(); $this->authUtils = new Utils\Auth(); @@ -101,7 +101,7 @@ public function setAuthState(Auth\State $authState): void * @param string|null $as * @return \SimpleSAML\XHTML\Template|\SimpleSAML\HTTP\RunnableResponse */ - public function main(Request $request, string $as = null): Response + public function main(Request $request, ?string $as = null): Response { $this->authUtils->requireAdmin(); if (is_null($as)) { diff --git a/modules/admin/src/Event/AdminMenuEvent.php b/modules/admin/src/Event/AdminMenuEvent.php new file mode 100644 index 0000000000..8941d323a3 --- /dev/null +++ b/modules/admin/src/Event/AdminMenuEvent.php @@ -0,0 +1,24 @@ +template = $template; + } + + + public function getTemplate(): XHTML\Template + { + return $this->template; + } +} diff --git a/modules/admin/src/Event/ConfigPageEvent.php b/modules/admin/src/Event/ConfigPageEvent.php new file mode 100644 index 0000000000..9f651e1d1b --- /dev/null +++ b/modules/admin/src/Event/ConfigPageEvent.php @@ -0,0 +1,21 @@ +template; + } +} diff --git a/modules/admin/src/Event/FederationPageEvent.php b/modules/admin/src/Event/FederationPageEvent.php new file mode 100644 index 0000000000..156ba5f2ab --- /dev/null +++ b/modules/admin/src/Event/FederationPageEvent.php @@ -0,0 +1,21 @@ +template; + } +} diff --git a/modules/admin/src/Event/SanityCheckEvent.php b/modules/admin/src/Event/SanityCheckEvent.php new file mode 100644 index 0000000000..58486f5e9f --- /dev/null +++ b/modules/admin/src/Event/SanityCheckEvent.php @@ -0,0 +1,41 @@ +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; + } +} diff --git a/modules/admin/templates/authsource_list.twig b/modules/admin/templates/authsource_list.twig index a5e731ab21..1df1499bc2 100644 --- a/modules/admin/templates/authsource_list.twig +++ b/modules/admin/templates/authsource_list.twig @@ -2,6 +2,10 @@ {% set frontpage_section = 'test' %} {% extends "base.twig" %} +{% block preload %} + +{% endblock %} + {% block content %} {%- include "@admin/includes/menu.twig" %} diff --git a/modules/admin/templates/federation.twig b/modules/admin/templates/federation.twig index 017a5f6b0f..dae9211d04 100644 --- a/modules/admin/templates/federation.twig +++ b/modules/admin/templates/federation.twig @@ -56,7 +56,7 @@ - + {{ set.url }} diff --git a/modules/admin/templates/includes/menu.twig b/modules/admin/templates/includes/menu.twig index fda00d6e6a..a6c7167ea8 100644 --- a/modules/admin/templates/includes/menu.twig +++ b/modules/admin/templates/includes/menu.twig @@ -1,6 +1,6 @@
-
-
+
+
    {%- for id,option in menu %} 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 c689d72415..14afc0ea69 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_attributeconditionaladd.md b/modules/core/docs/authproc_attributeconditionaladd.md new file mode 100644 index 0000000000..d74d561a2d --- /dev/null +++ b/modules/core/docs/authproc_attributeconditionaladd.md @@ -0,0 +1,312 @@ +# `core:AttributeConditionalAdd` + +Filter that adds attributes to the user, optionally only doing so if certain attributes and values already exist the attribute list. + +## Configuration Format + +: `class` + declares that this block will configure an AttributeConditionalAdd authproc. It is required. + +: `%` +allows for optional (zero or more) flags to be specified. These start with a "%" character (eg `%replace`). See the **Flags** section below for more details. + +: `attributes` +defines a list of one or more attributes to add. It is required. + +: `conditions` +is optional. If it is specified, it contains a list of conditions that determine whether the `attributes` will be added or not. If the `conditions` section is not specified (or is an empty list), the `attributes` will be added. See the **Conditions** section below for more details. + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + '%', + 'attributes' => [ + 'attribute' => ['value'], + [...], + ], + 'conditions' => [], + ], + ], + +## Conditions + +Conditions are optional. If there are one or more conditions specified, the attributes will only be added if all of the conditions evaluate to true. By default, all `conditions` must evaluate to true, unless the `%anycondition` flag is specified, in which case the attributes will be added if any of the `conditions` are true. + +### attrExistsAny + +If the current attributes includes any of the listed attribute names, the new attributes in the `attributes` section will be added. + +In the below example, if there is an attribute named **either** `customerId` OR `supplierId` (or both), then the `isExternalUser => ['true']` attribute will be added. + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + 'conditions' => [ + 'attrExistsAny' => [ + 'customerId', + 'supplierId', + ], + ], + 'attributes' => [ + 'isExternalUser' => ['true'], + ], + ], + ], + +### attrExistsAll + +If the current attributes includes all of the listed attribute names, the new attributes in the `attributes` section will be added. + +In the below example, if there is an attribute named `customerId` AND there is an attribute named `companyName`, then the `isCompanyUser => ['true']` attribute will be added. + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + 'conditions' => [ + 'attrExistsAll' => [ + 'customerId', + 'companyName', + ], + ], + 'attributes' => [ + 'isCompanyUser' => ['true'], + ], + ], + ], + +### attrExistsRegexAny + +If the current attributes includes any attribute names that match any of the regular expressions listed, the new attributes in the `attributes` section will be added. + +In the below example, if there is an attribute named **either** starting with `cust` OR ending with `PhoneNumber`, then the `isCustomer => ['true']` attribute will be added. + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + 'conditions' => [ + 'attrExistsRegexAny' => [ + '/^cust/', + '/PhoneNumber$/', + ], + ], + 'attributes' => [ + 'isCustomer' => ['true'], + ], + ], + ], + +### attrExistsRegexAll + +If each of the regular expressions listed matches at least one of the current attributes, the new attributes in the `attributes` section will be added. + +In the below example, if there is an attribute name starting with `email` AND there is an attribute name starting with `member`, then the `isCustomer => ['true']` attribute will be added. + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + 'conditions' => [ + 'attrExistsRegexAll' => [ + '/^email/', + '/^member/', + ], + ], + 'attributes' => [ + 'isCustomer' => ['true'], + ], + ], + ], + +### attrValueIsAny + +If the current attributes includes any of the listed attribute names, and at least one of those has any of the listed values for that attribute, the new attributes in the `attributes` section will be added. + +In the below example, if the user has the `departmentName` attribute set, and one of the values of that attribute is `Physics` or `Chemistry`, or they have a `managementRole` attribute set, and that attribute includes the value of `Vice Chancellor`, then the `newSystemPilotUser => ['true']` attribute will be added. + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + 'conditions' => [ + 'attrValueIsAny' => [ // any of the attributes listed below has any of the values listed + 'departmentName' => ['Physics', Chemistry], + 'managementRole' => ['Vice Chancellor'], + ], + ], + 'attributes' => [ + 'newSystemPilotUser' => ['true'], + ], + ], + ], + +### attrValueIsAll + +If the current attributes includes all of the listed attribute names, and each of those attributes include all of the listed values for that attribute, the new attributes in the `attributes` section will be added. + +Note: this does not mean the values listed are the only values present. They are a subset of the values present. + +In the below example, only the Dean of the Physics department will have the `newSystemPilotUser => ['true']` attribute added. + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + 'conditions' => [ + 'attrValueIsAll' => [ // all of the attributes listed below has all of the values listed + 'departmentName' => ['Physics'], + 'managementRole' => ['Dean'], + ], + ], + 'attributes' => [ + 'newSystemPilotUser' => ['true'], + ], + ], + ], + +### attrValueIsRegexAny + +If the current attributes includes any of the listed attribute names, and has at least one existing value for those attributes that matches any of the listed regular expressions for that attribute, the new attributes in the `attributes` section will be added. + +In the below example, if the user has the `qualifications` attribute set, and one of the values of that attributes starts with `Certified` or ends with `Assessor`, then the `qualifiedTradie => ['true']` attribute will be added. + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + 'conditions' => [ + 'attrValueIsRegexAny' => [ // any of the attributes listed below has a value that matches any of the regex values listed + 'qualifications' => ['/^Certfied/', '/Assessor$/'], + ], + ], + 'attributes' => [ + 'qualifiedTradie' => ['true'], + ], + ], + ], + +### attrValueIsRegexAll + +If the current attributes includes all of the listed attribute names, and all of the existing values for those attributes matches any of the listed regular expressions for that attribute, the new attributes in the `attributes` section will be added. + +In the below example, if the user has the `email` attribute set, and all email addresses listed as values in that attribue end with either `/@staff.example.edu$/` OR `/@student.example.edu$/`, then the `'internalUser' => ['true']` attribute will be added. + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + 'conditions' => [ + 'attrValueIsRegexAll' => [ // all of the attributes listed below, every value matches one of the regex values listed + 'email' => ['/@staff.example.edu$/', '/@student.example.edu$/'], + ], + ], + 'attributes' => [ + 'internalUser' => ['true'], + ], + ], + ], + +## Flags + +`%replace` +: can be used to replace all existing values in target with new ones (any existing values will be lost) + +`%nodupe` +: removes all duplicate values from the `attributes` being added. Without this flag being specified, the default behaviour is that if a value already exists that we're appending to the attribute, a duplicate is added. Note that if there are pre-existing duplicate values in the attributes being added to, those values will also be de-duplicated. + +`%anycondition` +: if there are multiple `conditions`, any of those conditions evaluating to true will cause the `attributes` to be added. Without this flag being specified, the default behaviour is that all those conditions must be true for the values in the `attributes` section to be added. + +## Examples + +The most basic case - unconditionally add a SAML attribute named `source`: + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + 'attributes' => [ + 'source' => ['myidp'], + ], + ], + ], + +You can specify multiple attributes, and attributes can have multiple values: + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + 'attributes' => [ + 'eduPersonPrimaryAffiliation' => 'student', + 'eduPersonAffiliation' => ['student', 'employee', 'members'], + ], + ], + ], + +Append to an existing attribute if a condition is satisfied, removing duplicate values (if they already have the 'management' value in the 'groups' attribute, don't add it again): + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + '%nodupe', + 'conditions' => [ + 'attrValueIsAny' => [ + 'role' => ['Manager', 'Director'] + ], + ], + 'attributes' => [ + 'groups' => ['management'], + ], + ], + ], + +Replace an existing attribute if a given attribute satisfies a condition: + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + '%replace', + 'conditions' => [ + 'attrValueIsAll' => [ + 'userType' => ['Customer'], + 'onStopSupply' => ['true'], + ], + ], + 'attributes' => [ + 'uid' => ['guest'], + ], + ], + ], + +Multiple conditions, where all must be true: + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + 'conditions' => [ + 'attrExistsAny' => [ + 'staffId', + ], + 'attrValueIsAny' => [ + 'departmentName' => ['Physics'], + ], + ], + 'attributes' => [ + 'groups' => ['StaffPhysics'], + ], + ], + ], + +Multiple conditions, where any can be true. In the below case, the user must either have a `supplierId` attribute, or have the "staff" role and be in the "Procurement" department to receive the `'allowedSystems' => ['procurement']` attribute: + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeConditionalAdd', + '%anycondition', + 'conditions' => [ + 'attrExistsAny' => [ + 'supplierId', + ], + 'attrValueIsAll' => [ + 'role' => ['Staff'], + 'departmentName' => ['Procurement'], + ], + ], + 'attributes' => [ + 'allowedSystems' => ['procurement'], + ], + ], + ], diff --git a/modules/core/docs/authproc_attributedump.md b/modules/core/docs/authproc_attributedump.md new file mode 100644 index 0000000000..36596831a4 --- /dev/null +++ b/modules/core/docs/authproc_attributedump.md @@ -0,0 +1,90 @@ +`core:AttributeDump` +=================== + +Filter that outputs to the system log file attributes and their values that match a given criteria. + +This is particularly useful for adding debug points in your list of authproc filters as you are configuring your SimpleSAMLphp. + +Parameters +---------- + +`class` (required) +: This is the name of the filter. + It must be `core:AttributeDump`. + +`attributes` +: An array of attribute names that are to be output to the SimpleSAMLphp logs. + If not specified, and `attributesRegex` is not specified, all attributes will be output. + +`attributesRegex` +: An array of regular expressions. Any attribute name that matches any of the regular expressions + in this list are to be output to the SimpleSAMLphp logs. + If not specified, and `attributes` is also not specified, all attributes will be output. + +`logPrefix` +: A string to prefix each log line to be outputted. + Defaults to "AttributeDump". + +`logLevel` +: The level to log at. For the message to appear in the SimpleSAMLphp log files it needs to be at a level + equal to or higher than the log value you've configured in your `config.php`. + Valid values are: "emergency", "critical", "alert", "error", "warning", "notice", "info" or "debug". + +Examples +-------- + +If no attribute list or list of attribute regular expressions is provided, it will simply dump all attributes: + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeDump', + ], + ], + +This will output the `uid` and `groups` attributes only to the logs: + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeDump', + 'attributes' => ['uid', 'groups'], + ], + ], + +This will output any attribute that ends in the letter `n` (eg. `fn`, `sn`, `cn`): + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeDump', + 'attributesRegex' => ['/n$/'], + ], + ], + +This will output the `uid` and `groups` attributes, as well as any attribute that ends in the letter `n` (eg. `fn`, `sn`, `cn`) to the logs: + + 'authproc' => [ + 50 => [ + 'class' => 'core:AttributeDump', + 'attributes' => ['uid', 'groups'], + 'attributesRegex' => ['/n$/'], + ], + ], + +Optionally, you can specify a prefix to the log message and a log level to log at: + + 'authproc' => [ + 49 => [ + 'class' => 'core:AttributeAdd', + [...] + ], + + 50 => [ + 'class' => 'core:AttributeDump', + 'logPrefix' => 'After running AttributeAdd but before applying AttributeLimit filter', + 'logLevel' => 'debug', + ], + + 51 => [ + 'class' => 'core:AttributeLimit', + [...] + ], + ], 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 e8b466b1b0..29fa3399c0 100644 --- a/modules/core/locales/af/LC_MESSAGES/core.po +++ b/modules/core/locales/af/LC_MESSAGES/core.po @@ -1,30 +1,185 @@ 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 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 "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 "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 "Dit blyk dat jy cookies in jou webblaaier af geskakel het. Gaan asseblief die stellings in jou webblaaier na en probeer weer." + +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/ar/LC_MESSAGES/core.po b/modules/core/locales/ar/LC_MESSAGES/core.po index b782d73a63..106e5a75cb 100644 --- a/modules/core/locales/ar/LC_MESSAGES/core.po +++ b/modules/core/locales/ar/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 الضيف (تم تجهيزها اتوماتيكياً)" @@ -23,18 +52,66 @@ 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 "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 "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 "بلغ عن هذا الخطأ " @@ -47,21 +124,54 @@ 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 "استخدام أزرار الرجوع للخلف و الامام بمتصفحك" @@ -74,5 +184,26 @@ 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 3c3ef85e38..1757f0cfdd 100644 --- a/modules/core/locales/cs/LC_MESSAGES/core.po +++ b/modules/core/locales/cs/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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é)" @@ -23,15 +52,63 @@ 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 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 "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" @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Nebylo možné najít stavovou informaci pro současný požadavek." msgid "Welcome" msgstr "Vítejte" +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 "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 "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/da/LC_MESSAGES/core.po b/modules/core/locales/da/LC_MESSAGES/core.po index 6a7ec1495d..d6191fd989 100644 --- a/modules/core/locales/da/LC_MESSAGES/core.po +++ b/modules/core/locales/da/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ msgstr "Hvis dette problem fortsætter, kan du rapportere det til systemadminist 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." +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" @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Tilstandsinformation for igangværende request kan ikke findes" msgid "Welcome" msgstr "Velkommen" +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 "Det ser ud til at du har slået cookies fra i din browser. Tjek dine browserindstillinger og prøv igen." + +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/de/LC_MESSAGES/core.po b/modules/core/locales/de/LC_MESSAGES/core.po index 21ef993960..3ceab3a46c 100644 --- a/modules/core/locales/de/LC_MESSAGES/core.po +++ b/modules/core/locales/de/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ msgstr "Wenn das Problem weiter besteht, kannst du diesen Fehler den Systemadmin 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." +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" @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Wir konnten die Statusinformationen für die aktuelle Anfrage nicht loka msgid "Welcome" msgstr "Willkommen" +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 "Sie scheinen Cookies in Ihrem Browser deaktiviert zu haben. Bitte überprüfen Sie die Einstellungen in Ihrem Browser und versuchen Sie es erneut." + +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/el/LC_MESSAGES/core.po b/modules/core/locales/el/LC_MESSAGES/core.po index 368d7d78f9..c56abcb6c3 100644 --- a/modules/core/locales/el/LC_MESSAGES/core.po +++ b/modules/core/locales/el/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "Κλείστε το πρόγραμμα περιήγησης ιστού (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 (παράγονται αυτόματα)" @@ -23,15 +52,63 @@ 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." +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 "Αναφορά σφάλματος" @@ -44,21 +121,54 @@ 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 "Μεταβήκατε πίσω και εμπρός στο ιστορικό του προγράμματος περιήγησης ιστού." @@ -71,5 +181,26 @@ 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/en/LC_MESSAGES/core.po b/modules/core/locales/en/LC_MESSAGES/core.po index 1fbe42f3d2..af1898ae85 100644 --- a/modules/core/locales/en/LC_MESSAGES/core.po +++ b/modules/core/locales/en/LC_MESSAGES/core.po @@ -1,10 +1,18 @@ 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 "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 "" @@ -44,8 +52,14 @@ 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 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 "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 "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 "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 "" @@ -116,21 +130,36 @@ msgstr "State information lost" msgid "Suggestions for resolving this problem:" msgstr "Suggestions for resolving this 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 "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 "Too short interval between single sign on events." msgstr "Too short interval between single sign on events." 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 ab88a26dc6..3274a0e0fe 100644 --- a/modules/core/locales/es/LC_MESSAGES/core.po +++ b/modules/core/locales/es/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ msgstr "Si el problema persiste, puede reportarlo a los administradores del sist 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." +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" @@ -44,21 +121,54 @@ 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." @@ -71,8 +181,29 @@ msgstr "No podemos encontrar la información de estado para la solicitud actual" msgid "Welcome" msgstr "Bienvenido" +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 "Al parecer ha deshabilitado las cookies de su navegador. Por favor revise las preferencias de su navegador y reintente." +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 "Su instalación de SimpleSAMLphp está desactualizada. Por favor, actualice a la última versión lo antes posible." + +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 4cf8b4679c..007083a0a5 100644 --- a/modules/core/locales/et/LC_MESSAGES/core.po +++ b/modules/core/locales/et/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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) " @@ -23,15 +52,63 @@ 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 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 "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" @@ -44,21 +121,54 @@ 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" @@ -71,5 +181,26 @@ msgstr "Aktiivse päringu olekuinfo leidmine ei õnnestunud." msgid "Welcome" msgstr "Tere tulemast" +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 "Paistab, et sinu brauseris on küpsised keelatud. Palun kontrolli brauseri seadistusi ja proovi seejärel uuesti." + +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/eu/LC_MESSAGES/core.po b/modules/core/locales/eu/LC_MESSAGES/core.po index a9080ec018..549943c3da 100644 --- a/modules/core/locales/eu/LC_MESSAGES/core.po +++ b/modules/core/locales/eu/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ msgstr "Arazoak bere horretan badirau, sistemaren administratzaileei berri eman 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." +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" @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Ez dugu aurkitu egoeraren informaziorik eskaera honentzat." msgid "Welcome" msgstr "Ongi etorri" +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 "Badirudi zure nabigatzaileko cookie-ak desgaitu dituzula. Mesedez, berrikusi zure nabigatzaileko lehentasunak eta saiatu berriro." + +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/fi/LC_MESSAGES/core.po b/modules/core/locales/fi/LC_MESSAGES/core.po index cd3231e6f2..a544f33a5a 100644 --- a/modules/core/locales/fi/LC_MESSAGES/core.po +++ b/modules/core/locales/fi/LC_MESSAGES/core.po @@ -1,24 +1,194 @@ 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 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 "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 "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 "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 6723467564..3c6db41ac6 100644 --- a/modules/core/locales/fr/LC_MESSAGES/core.po +++ b/modules/core/locales/fr/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ msgstr "Si ce problème persiste, vous pouvez le remonter vers l'administrateur 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." +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" @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Nous ne pouvons pas trouver l'information d'état pour la demande couran msgid "Welcome" msgstr "Bienvenue" +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 "Il semble que votre navigateur refuse les cookies. Merci de vérifier les réglages de votre navigateur, puis de ré-essayer." + +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/he/LC_MESSAGES/core.po b/modules/core/locales/he/LC_MESSAGES/core.po index 43d25e0b96..0915b21cb7 100644 --- a/modules/core/locales/he/LC_MESSAGES/core.po +++ b/modules/core/locales/he/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 המאורח (נוצר אוטומטית)" @@ -23,15 +52,63 @@ 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." +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 "דווח על השגיאה הנוכחית" @@ -44,21 +121,54 @@ 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 "שימוש בכפתורי הבא והקודם בדפדפן." @@ -71,5 +181,26 @@ 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/hr/LC_MESSAGES/core.po b/modules/core/locales/hr/LC_MESSAGES/core.po index 24006607ea..02292cf81c 100644 --- a/modules/core/locales/hr/LC_MESSAGES/core.po +++ b/modules/core/locales/hr/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ msgstr "Ako se ova greška bude i dalje pojavljivala, možete ju prijaviti admin 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." +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" @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Ne možemo pronaći podatak o stanju aktualnog zahtjeva." msgid "Welcome" msgstr "Dobrodošli" +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 "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 "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/hu/LC_MESSAGES/core.po b/modules/core/locales/hu/LC_MESSAGES/core.po index cd08cb4728..7a51967b1e 100644 --- a/modules/core/locales/hu/LC_MESSAGES/core.po +++ b/modules/core/locales/hu/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ msgstr "Ha a probléma állandónak tűnik, kérjük, jelezze ezt az oldal admin 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." +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" @@ -44,21 +121,54 @@ 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" @@ -71,5 +181,26 @@ msgstr "Nem lehet beazonosítani a kéréshez tartozó állapotinformációt." msgid "Welcome" msgstr "Üdvözöljü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 "" + +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 "Ú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 "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/id/LC_MESSAGES/core.po b/modules/core/locales/id/LC_MESSAGES/core.po index fd6a9b957e..8d41c0616a 100644 --- a/modules/core/locales/id/LC_MESSAGES/core.po +++ b/modules/core/locales/id/LC_MESSAGES/core.po @@ -1,36 +1,113 @@ 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 "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 "An error has occurred" +msgstr "Terjadi suatu kesalahan" + +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 digenerate)" +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 digenerate)" +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 system administrator." +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 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." +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 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 "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" @@ -39,31 +116,64 @@ msgid "Retry" msgstr "Coba lagi" msgid "Retry login" -msgstr "Coba login kembali" +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" +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 event single sign on." +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 "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" +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 "We were unable to locate the state information for the current request." msgstr "Kita tidak dapat menemukan informasi kondisi/state dari request saat ini." @@ -71,5 +181,26 @@ msgstr "Kita tidak dapat menemukan informasi kondisi/state dari request saat ini msgid "Welcome" msgstr "Selamat Datang" +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 "Yes, all services" +msgstr "Ya, semua layanan" + 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 "You are also logged in on these services:" +msgstr "Anda juga masuk pada layanan berikut:" + +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 "You are now successfully logged out from %SP%." +msgstr "Anda sekarang berhasil keluar dari %SP%." + +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 fbaa4e895a..43f51ac1b9 100644 --- a/modules/core/locales/it/LC_MESSAGES/core.po +++ b/modules/core/locales/it/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ msgstr "Se questo problema persiste, è possibile segnalarlo agli amministratori 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." +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." @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Non è stato possibile localizzare le informazioni di stato per la richi msgid "Welcome" msgstr "Benvenuto" +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 "Sembra che i cookie siano disabilitati nel browser. Si prega di verificare e quindi riprovare." + +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/ja/LC_MESSAGES/core.po b/modules/core/locales/ja/LC_MESSAGES/core.po index 791effdd65..1487c0b9f3 100644 --- a/modules/core/locales/ja/LC_MESSAGES/core.po +++ b/modules/core/locales/ja/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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 アイデンティティプロバイダメタデータ (自動生成)" @@ -23,15 +52,63 @@ 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." +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 "このエラーをレポート" @@ -44,21 +121,54 @@ 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ブラウザの戻るや次へのボタンを使用します。" @@ -71,5 +181,26 @@ 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/lb/LC_MESSAGES/core.po b/modules/core/locales/lb/LC_MESSAGES/core.po index 053ad43a16..23cb63e0df 100644 --- a/modules/core/locales/lb/LC_MESSAGES/core.po +++ b/modules/core/locales/lb/LC_MESSAGES/core.po @@ -1,12 +1,194 @@ 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 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 "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 35cae44a45..f7fa064529 100644 --- a/modules/core/locales/lt/LC_MESSAGES/core.po +++ b/modules/core/locales/lt/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ msgstr "Jei ši problema išliks, galite pranešti apie tai sistemos administrat 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." +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ą" @@ -44,21 +121,54 @@ 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" @@ -71,5 +181,26 @@ msgstr "Nepavyko nustatyti būsenos informacijos šiai užklausai." msgid "Welcome" msgstr "Sveiki atvykę" +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 "Atrodo Jūsų naršyklė nepalaiko slapukų. Patikrinkite naršyklės nustatymus ir bandykite dar kartą." + +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/lv/LC_MESSAGES/core.po b/modules/core/locales/lv/LC_MESSAGES/core.po index 6d2c56c27b..851512ccbb 100644 --- a/modules/core/locales/lv/LC_MESSAGES/core.po +++ b/modules/core/locales/lv/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ 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 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 "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" @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Nav iespējams atrast stāvokļa informāciju šim pieprasījumam." msgid "Welcome" msgstr "Laipni lūdzam" +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 "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 "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/nb/LC_MESSAGES/core.po b/modules/core/locales/nb/LC_MESSAGES/core.po index df5b520a0a..ffc9abd82d 100644 --- a/modules/core/locales/nb/LC_MESSAGES/core.po +++ b/modules/core/locales/nb/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ msgstr "Hvis problemet vedvarer, 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 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." +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" @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Vi kunne ikke finne tilstandsinformasjonen for denne forespørselen." msgid "Welcome" msgstr "Velkommen" +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 "Du ser ut til å ha deaktivert informasjonskapsler. Kontroller innstillingene i nettleseren din og prøv igjen." + +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/nl/LC_MESSAGES/core.po b/modules/core/locales/nl/LC_MESSAGES/core.po index eb80dfcfe2..0f4b23eb34 100644 --- a/modules/core/locales/nl/LC_MESSAGES/core.po +++ b/modules/core/locales/nl/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ 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 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 "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" @@ -44,21 +121,54 @@ 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 "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 "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 "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 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." @@ -74,8 +184,29 @@ msgstr "Wij waren niet in staat om de toestand informatie te vinden voor het hui msgid "Welcome" msgstr "Welkom" +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 "Het ziet er naaruit dat cookies zijn uitgeschakeld in uw browser. Controleer de browserinstellingen en probeer het opnieuw." +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 1b3f9737c1..14ba80b07a 100644 --- a/modules/core/locales/nn/LC_MESSAGES/core.po +++ b/modules/core/locales/nn/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ 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 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 "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" @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Vi kunne ikkje finne tilstandsinformasjonen for denne forespørselen." msgid "Welcome" msgstr "Velkomen" +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 "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 "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/pl/LC_MESSAGES/core.po b/modules/core/locales/pl/LC_MESSAGES/core.po index 0327b042dc..59dedf8ad9 100644 --- a/modules/core/locales/pl/LC_MESSAGES/core.po +++ b/modules/core/locales/pl/LC_MESSAGES/core.po @@ -1,15 +1,194 @@ 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 "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 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 "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 42d6e701aa..0000000000 --- a/modules/core/locales/pt-br/LC_MESSAGES/core.po +++ /dev/null @@ -1,24 +0,0 @@ -msgid "" -msgstr "" -"X-Domain: core\n" - -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 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 "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 "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)" diff --git a/modules/core/locales/pt/LC_MESSAGES/core.po b/modules/core/locales/pt/LC_MESSAGES/core.po index 83b05ac886..f588d36c7c 100644 --- a/modules/core/locales/pt/LC_MESSAGES/core.po +++ b/modules/core/locales/pt/LC_MESSAGES/core.po @@ -1,16 +1,111 @@ 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 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" @@ -20,17 +115,83 @@ 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 "Welcome" msgstr "Bem vindo" +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 "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 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 04aeef0232..4fac1e071e 100644 --- a/modules/core/locales/ro/LC_MESSAGES/core.po +++ b/modules/core/locales/ro/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "Î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)" @@ -23,15 +52,63 @@ 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 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 "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" @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Nu a fost posibilă localizarea informațiilor de stare pentru cererea c msgid "Welcome" msgstr "Bine ați venit" +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 "Cookies au fost dezactivate în browser-ul dumneavoastră. Vă rugăm să verificați configurarea browser-ului după care încercați din nou." + +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/ru/LC_MESSAGES/core.po b/modules/core/locales/ru/LC_MESSAGES/core.po index 73999cf94a..5a8a801c38 100644 --- a/modules/core/locales/ru/LC_MESSAGES/core.po +++ b/modules/core/locales/ru/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 Провайдера подлинности (IdP) (генерируются автоматически)" @@ -23,15 +52,63 @@ 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." +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 "Сообщить о данной ошибке" @@ -44,21 +121,54 @@ 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 "Используйте клавиши \"Вперед\" \"Назад\" в броузере." @@ -71,5 +181,26 @@ 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 "Видимо, вы отключили поддержку cookies в вашем браузере. Пожалуйста, проверьте настройки вашего браузера и повторите попытку." + +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/sk/LC_MESSAGES/core.po b/modules/core/locales/sk/LC_MESSAGES/core.po index 5e716056f5..4900fc8f21 100644 --- a/modules/core/locales/sk/LC_MESSAGES/core.po +++ b/modules/core/locales/sk/LC_MESSAGES/core.po @@ -1,10 +1,18 @@ 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." @@ -44,9 +52,15 @@ msgstr "Ak tento problém pretrváva, môžete odoslať hlásenie systémovým a 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 "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 "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:" @@ -116,21 +130,36 @@ 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 "The problematic attribute(s) are:" msgstr "Problémové atribúty sú:" +msgid "There was an issue while signing you in." +msgstr "" + msgid "This error may be caused by:" msgstr "Možné dôvody tejto chyby:" 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 "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 "Moc krátky interval medzi akciami jednotného prihlásenia." diff --git a/modules/core/locales/sl/LC_MESSAGES/core.po b/modules/core/locales/sl/LC_MESSAGES/core.po index 4f5470809a..b8f66efe74 100644 --- a/modules/core/locales/sl/LC_MESSAGES/core.po +++ b/modules/core/locales/sl/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ 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 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 "Č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" @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Informacije o stanju trenutne zahteve ni bilo moč najti." msgid "Welcome" msgstr "Dobrodošli" +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 "Vaš spletni brskalnik ima onemogočene piškotke (\"cookies\"). Omogočite to nastavitev in poskusite ponovno." + +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/sr/LC_MESSAGES/core.po b/modules/core/locales/sr/LC_MESSAGES/core.po index 74080e7dc0..f52e731307 100644 --- a/modules/core/locales/sr/LC_MESSAGES/core.po +++ b/modules/core/locales/sr/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ msgstr "Ako se ova greška bude i dalje pojavljivala, možete je prijaviti admin 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." +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" @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Ne možemo pronaći informacije o stanju aktuelnog zahteva." msgid "Welcome" msgstr "Dobrodošli" +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 "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 "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/st/LC_MESSAGES/core.po b/modules/core/locales/st/LC_MESSAGES/core.po deleted file mode 100644 index ac7de9a565..0000000000 --- a/modules/core/locales/st/LC_MESSAGES/core.po +++ /dev/null @@ -1,67 +0,0 @@ -msgid "" -msgstr "" -"X-Domain: core\n" - -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 "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 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 "Incorrect Attributes" -msgstr "Makgabane a Fosahetseng" - -msgid "Missing cookie" -msgstr "Khukhi e siyo" - -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 "Report this error" -msgstr "Tlaleha phoso ena" - -msgid "Retry" -msgstr "Khukhi e siyo" - -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 problematic attribute(s) are:" -msgstr "Makgabane a nang le mathata ke:" - -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 "Using the back and forward buttons in the web browser." -msgstr "Ho sebedisa dikonopo tsa pele le morao sebading sa webo." - -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 "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." - -#, python-format -msgid "got %GOT% values, want %WANT%" -msgstr "o fumane dipalo tse %GOT%, o batla tse %WANT%" diff --git a/modules/core/locales/sv/LC_MESSAGES/core.po b/modules/core/locales/sv/LC_MESSAGES/core.po index c4bd09412c..f0036b7c7a 100644 --- a/modules/core/locales/sv/LC_MESSAGES/core.po +++ b/modules/core/locales/sv/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 "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)" @@ -23,15 +52,63 @@ msgstr "Om problemet kvarstår kan du rapportera det till systemadministratörer 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." +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" @@ -44,21 +121,54 @@ 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." @@ -71,5 +181,26 @@ msgstr "Hittar inte tillståndsinformationen för aktuell förfrågan." msgid "Welcome" msgstr "Välkommen" +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 "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 "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/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 90754ac350..81239d5a2a 100644 --- a/modules/core/locales/tr/LC_MESSAGES/core.po +++ b/modules/core/locales/tr/LC_MESSAGES/core.po @@ -1,15 +1,194 @@ 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 "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 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 "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..e3725e0a29 --- /dev/null +++ b/modules/core/locales/uk/LC_MESSAGES/core.po @@ -0,0 +1,211 @@ +msgid "" +msgstr "" +"Project-Id-Version: SimpleSAMLphp\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Domain: core\n" +"X-Generator: Poedit 3.7\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 20b63375aa..32a4e1c061 100644 --- a/modules/core/locales/xh/LC_MESSAGES/core.po +++ b/modules/core/locales/xh/LC_MESSAGES/core.po @@ -1,21 +1,185 @@ 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 "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 "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 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 e0920b716d..0000000000 --- a/modules/core/locales/zh-tw/LC_MESSAGES/core.po +++ /dev/null @@ -1,75 +0,0 @@ -msgid "" -msgstr "" -"X-Domain: core\n" - -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 "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 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 "Missing cookie" -msgstr "遺失 cookie" - -msgid "Opened the web browser with tabs saved from the previous session." -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 "State information lost" -msgstr "遺失狀態資訊" - -msgid "Suggestions for resolving this problem:" -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 "Too short interval between single sign on events." -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 "You appear to have disabled cookies in your browser. Please check the settings in your browser, and try again." -msgstr "您可能關閉了瀏覽器 cookie 支援,請檢查瀏覽器設定,然後再試一次。" diff --git a/modules/core/locales/zh/LC_MESSAGES/core.po b/modules/core/locales/zh/LC_MESSAGES/core.po index 7258481b4b..a784df14d7 100644 --- a/modules/core/locales/zh/LC_MESSAGES/core.po +++ b/modules/core/locales/zh/LC_MESSAGES/core.po @@ -1,16 +1,45 @@ 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 "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 Identity Provider Metadata(自动生成)" @@ -23,15 +52,63 @@ 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." +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 "报告这个错误" @@ -44,21 +121,54 @@ 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 "使用浏览器中的前进后退按钮" @@ -71,5 +181,26 @@ 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/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 8bfd9cb106..0b19d8cb62 100644 --- a/modules/core/locales/zu/LC_MESSAGES/core.po +++ b/modules/core/locales/zu/LC_MESSAGES/core.po @@ -1,21 +1,185 @@ 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 "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 "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 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 54439e9017..62e576df83 100644 --- a/modules/core/src/Auth/Process/AttributeAdd.php +++ b/modules/core/src/Auth/Process/AttributeAdd.php @@ -58,7 +58,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 87f5a61f3b..2d46ee5e83 100644 --- a/modules/core/src/Auth/Process/AttributeAlter.php +++ b/modules/core/src/Auth/Process/AttributeAlter.php @@ -124,7 +124,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.", ); } @@ -165,7 +165,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 { @@ -193,16 +193,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/AttributeConditionalAdd.php b/modules/core/src/Auth/Process/AttributeConditionalAdd.php new file mode 100644 index 0000000000..db2f1a5c7d --- /dev/null +++ b/modules/core/src/Auth/Process/AttributeConditionalAdd.php @@ -0,0 +1,574 @@ + $topLevelValues) { + if (is_int($topLevelName)) { + if ($topLevelValues === '%replace') { + $this->replace = true; + } elseif ($topLevelValues === '%nodupe') { + $this->nodupe = true; + } elseif ($topLevelValues === '%anycondition') { + $this->anycondition = true; + } else { + throw new Exception('Unknown flag: ' . var_export($topLevelValues, true)); + } + continue; + } + + if ($topLevelName === 'attributes') { + $this->attributes = $this->constructAttributes($topLevelValues); + } elseif ($topLevelName === "conditions") { + if (!is_array($topLevelValues)) { + throw new Exception('Configuration for "conditions" must be array.'); + } + + foreach ($topLevelValues as $conditionName => $conditionValues) { + // We'll call a function called set for each condition found. + $setterToCall = 'set' . ucfirst($conditionName); + if (!method_exists($this, $setterToCall)) { + throw new Exception('Unknown condition option: ' . var_export($conditionName, true)); + } + $this->$setterToCall($conditionValues); + } + } else { + throw new Exception('Unknown configuration option: ' . var_export($topLevelName, true)); + } + } + + if ($this->attributes === []) { + throw new Exception('No attributes specified to add.'); + } + } + + + private function constructAttributes(array $attributesConfig): array + { + $attributes = []; + + foreach ($attributesConfig as $name => $value) { + if (is_int($name)) { + throw new Exception( + 'Invalid value for "attributes": value must be an associative array of "name"=> ["value", ...].', + ); + } + if (is_string($value)) { + $attributes[$name] = [$value]; + } elseif ( + is_array($value) && + array_is_list($value) && + count($value) === count(array_filter($value, 'is_string')) + ) { + $attributes[$name] = $value; + } else { + throw new Exception( + 'Invalid value for attribute "' . $name . '": value must be a string or an array of strings.', + ); + } + } + + return $attributes; + } + + + private function setAttrExistsAny(array $attrExistsAny): void + { + if (!array_is_list($attrExistsAny)) { + throw new Exception( + 'Invalid value for "attrExistsAny": value must be a list of attribute names.', + ); + } + $this->attrExistsAny = $attrExistsAny; + } + + + private function isConfiguredAttrExistsAny(): bool + { + return $this->attrExistsAny !== []; + } + + + private function processConditionalAttrExistsAny(array $attributes): bool + { + // No attributes to check, so condition is met. + if ($this->attrExistsAny === []) { + return true; + } + + foreach ($this->attrExistsAny as $attrName) { + if (array_key_exists($attrName, $attributes)) { + return true; + } + } + + return false; + } + + + private function setAttrExistsAll(array $attrExistsAll): void + { + if (!array_is_list($attrExistsAll)) { + throw new Exception( + 'Invalid value for "attrExistsAll": value must be a list of attribute names.', + ); + } + $this->attrExistsAll = $attrExistsAll; + } + + + private function isConfiguredAttrExistsAll(): bool + { + return $this->attrExistsAll !== []; + } + + + private function processConditionalAttrExistsAll(array $attributes): bool + { + // No attributes to check, so condition is met. + if ($this->attrExistsAll === []) { + return true; + } + + foreach ($this->attrExistsAll as $attrName) { + if (!array_key_exists($attrName, $attributes)) { + return false; + } + } + + return true; + } + + + private function setAttrExistsRegexAny(array $attrExistsRegexAny): void + { + if (!array_is_list($attrExistsRegexAny)) { + throw new Exception( + 'Invalid value for "attrExistsRegexAny": value must be a list of regular expressions.', + ); + } + $this->attrExistsRegexAny = $attrExistsRegexAny; + } + + + private function isConfiguredAttrExistsRegexAny(): bool + { + return $this->attrExistsRegexAny !== []; + } + + + private function processConditionalAttrExistsRegexAny(array $attributes): bool + { + // No attributes to check, so condition is met. + if ($this->attrExistsRegexAny === []) { + return true; + } + + foreach ($this->attrExistsRegexAny as $attrNameRegex) { + foreach (array_keys($attributes) as $attrName) { + if (preg_match($attrNameRegex, $attrName) === 1) { + return true; + } + } + } + + return false; + } + + + private function setAttrExistsRegexAll(array $attrExistsRegexAll): void + { + if (!array_is_list($attrExistsRegexAll)) { + throw new Exception( + 'Invalid value for "attrExistsRegexAll": value must be a list of regular expressions.', + ); + } + $this->attrExistsRegexAll = $attrExistsRegexAll; + } + + + private function isConfiguredAttrExistsRegexAll(): bool + { + return $this->attrExistsRegexAll !== []; + } + + + private function processConditionalAttrExistsRegexAll(array $attributes): bool + { + // No attributes to check, so condition is met. + if ($this->attrExistsRegexAll === []) { + return true; + } + + foreach ($this->attrExistsRegexAll as $attrNameRegex) { + $found = false; + foreach (array_keys($attributes) as $attrName) { + if (preg_match($attrNameRegex, $attrName) === 1) { + $found = true; + break; + } + } + if (!$found) { + return false; + } + } + + return true; + } + + + private function validateValueConditional(array $attrValue, string $conditionalName): void + { + // Validate that the input is an associative array + if (array_is_list($attrValue)) { + throw new Exception( + 'Invalid value for "' . + $conditionalName . + '": value must be an associative array of "attribute_name" => "attribute_value".', + ); + } + + // Validate that each value in the associative array is a string or an array of strings + foreach ($attrValue as $attrName => $attrValue) { + // Throw an exception if the $attrValue is not a string or an array of strings + if ( + !is_array($attrValue) || + !array_is_list($attrValue) || + count(array_filter($attrValue, 'is_string')) !== count($attrValue) + ) { + throw new Exception( + 'Invalid attribute value in "' . + $conditionalName . + '" for attribute "' . + $attrName . + '": value must be an array of strings.', + ); + } + } + } + + + private function setAttrValueIsAny(array $attrValueIsAny): void + { + $this->validateValueConditional($attrValueIsAny, 'attrValueIsAny'); + $this->attrValueIsAny = $attrValueIsAny; + } + + + private function isConfiguredAttrValueIsAny(): bool + { + return $this->attrValueIsAny !== []; + } + + + private function processConditionalAttrValueIsAny(array $attributes): bool + { + // No attributes to check, so condition is met. + if ($this->attrValueIsAny === []) { + return true; + } + + foreach ($this->attrValueIsAny as $attrName => $attrValue) { + if (array_key_exists($attrName, $attributes)) { + if (is_array($attrValue)) { + foreach ($attrValue as $singleAttrValue) { + if (in_array($singleAttrValue, $attributes[$attrName], true)) { + return true; + } + } + } elseif (in_array($attrValue, $attributes[$attrName], true)) { + return true; + } + } + } + + return false; + } + + + private function setAttrValueIsAll(array $attrValueIsAll): void + { + $this->validateValueConditional($attrValueIsAll, 'attrValueIsAll'); + $this->attrValueIsAll = $attrValueIsAll; + } + + + private function isConfiguredAttrValueIsAll(): bool + { + return $this->attrValueIsAll !== []; + } + + + private function processConditionalAttrValueIsAll(array $attributes): bool + { + // No attributes to check, so condition is met. + if ($this->attrValueIsAll === []) { + return true; + } + + foreach ($this->attrValueIsAll as $attrName => $attrValue) { + if (!array_key_exists($attrName, $attributes)) { + return false; + } + foreach ($attrValue as $singleAttrValue) { + if (!in_array($singleAttrValue, $attributes[$attrName], true)) { + return false; + } + } + } + + return true; + } + + + private function setAttrValueIsRegexAny(array $attrValueIsRegexAny): void + { + $this->validateValueConditional($attrValueIsRegexAny, 'attrValueIsRegexAny'); + $this->attrValueIsRegexAny = $attrValueIsRegexAny; + } + + + private function isConfiguredAttrValueIsRegexAny(): bool + { + return $this->attrValueIsRegexAny !== []; + } + + + private function processConditionalAttrValueIsRegexAny(array $attributes): bool + { + // No attributes to check, so condition is met. + if ($this->attrValueIsRegexAny === []) { + return true; + } + + foreach ($this->attrValueIsRegexAny as $attrName => $attrValueRegexList) { + if (array_key_exists($attrName, $attributes)) { + foreach ($attributes[$attrName] as $attrValue) { + foreach ($attrValueRegexList as $attrValueRegex) { + if (preg_match($attrValueRegex, $attrValue) === 1) { + return true; + } + } + } + } + } + + return false; + } + + + private function setAttrValueIsRegexAll(array $attrValueIsRegexAll): void + { + $this->validateValueConditional($attrValueIsRegexAll, 'attrValueIsRegexAll'); + $this->attrValueIsRegexAll = $attrValueIsRegexAll; + } + + + private function isConfiguredAttrValueIsRegexAll(): bool + { + return $this->attrValueIsRegexAll !== []; + } + + + private function processConditionalAttrValueIsRegexAll(array $attributes): bool + { + // No attributes to check, so condition is met. + if ($this->attrValueIsRegexAll === []) { + return true; + } + + // foreach attribute to check we need to ensure that all regexes match at least one value + foreach ($this->attrValueIsRegexAll as $attrName => $attrValueRegexList) { + if (!array_key_exists($attrName, $attributes)) { + return false; + } + + // Foreach existing attribute value, ensure it matches at least one regex + foreach ($attributes[$attrName] as $existingAttrValue) { + $matched = false; + foreach ($attrValueRegexList as $attrValueRegex) { + if (preg_match($attrValueRegex, $existingAttrValue) === 1) { + $matched = true; + break; + } + } + if (!$matched) { + return false; + } + } + } + + return true; + } + + + /** + * Apply filter to add or replace attributes. + * + * Add or replace existing attributes with the configured values. + * + * @param array &$state The current request + */ + #[\Override] + public function process(array &$state): void + { + Assert::keyExists($state, 'Attributes'); + + $attributes = &$state['Attributes']; + + // Check conditions first. If all conditions succeed, add/append the attributes. + $numConditionsConfigured = 0; + $numConditionsMet = 0; + foreach (get_class_methods($this) as $methodName) { + if (str_starts_with($methodName, 'processConditional')) { + // Only process conditions that are configured. + $isConfiguredMethod = 'isConfigured' . substr($methodName, strlen('processConditional')); + if ($this->$isConfiguredMethod()) { + $numConditionsConfigured++; + if ($this->$methodName($attributes) === true) { + $numConditionsMet++; + } + } + } + } + + // If there are conditions configured, and they are not met, return without adding attributes. + // The anycondition flag indicates whether any condition being met is sufficient. The default is + // that all conditions must be met. + // Note that if no conditions are configured, we always add the attributes. + if ( + $numConditionsConfigured > 0 && (($this->anycondition === true && $numConditionsMet === 0) || + ($this->anycondition === false && $numConditionsMet < $numConditionsConfigured)) + ) { + return; + } + + foreach ($this->attributes as $name => $values) { + if ($this->replace === true || !array_key_exists($name, $attributes)) { + $attributes[$name] = $values; + } elseif ($this->nodupe === true) { + $attributes[$name] = array_unique(array_merge($attributes[$name], $values)); + } else { + $attributes[$name] = array_merge($attributes[$name], $values); + } + } + } +} diff --git a/modules/core/src/Auth/Process/AttributeDump.php b/modules/core/src/Auth/Process/AttributeDump.php new file mode 100644 index 0000000000..0bfbcc0788 --- /dev/null +++ b/modules/core/src/Auth/Process/AttributeDump.php @@ -0,0 +1,133 @@ + $values) { + if ($name === 'attributes') { + if (!is_array($values)) { + throw new Exception('The "attributes" configuration option must be an array of strings.'); + } + foreach ($values as $attribute) { + if (!is_string($attribute)) { + throw new Exception('Attribute name must be a string: ' . var_export($attribute, true)); + } + $this->attributes[] = $attribute; + } + } elseif ($name === 'attributesRegex') { + if (!is_array($values)) { + throw new Exception('The "attributesRegex" configuration option must be an array.'); + } + foreach ($values as $regex) { + if (!is_string($regex)) { + throw new Exception('Attribute regex must be a string: ' . var_export($regex, true)); + } + $this->attributesRegex[] = $regex; + } + } elseif ($name === 'logLevel') { + if (!is_string($values) || !method_exists(Logger::class, $values)) { + throw new Exception( + 'The "logLevel" configuration option must be a string (eg. "debug", "info", "notice", etc).', + ); + } + $this->logLevel = $values; + } elseif ($name === 'logPrefix') { + if (!is_string($values)) { + throw new Exception('The "logPrefix" configuration option must be a string.'); + } + $this->logPrefix = $values; + } else { + throw new Exception('Unknown configuration option: ' . var_export($name, true)); + } + } + } + + /** + * Process the attributes. + * + * @param array &$state The state array containing the attributes to process. + */ + #[\Override] + public function process(array &$state): void + { + Assert::keyExists($state, 'Attributes'); + $attributesPassedIn = &$state['Attributes']; + + $matches = []; + + if (empty($this->attributes) && empty($this->attributesRegex)) { + $matches = $attributesPassedIn; + } else { + foreach ($attributesPassedIn as $attribute => $values) { + foreach ($this->attributes as $attributeToMatch) { + if ($attribute === $attributeToMatch) { + $matches[$attribute] = $values; + continue 2; + } + } + foreach ($this->attributesRegex as $regex) { + if (preg_match($regex, $attribute)) { + $matches[$attribute] = $values; + continue 2; + } + } + } + } + + Logger::{$this->logLevel}($this->logPrefix . ': ' . var_export($matches, true)); + } +} diff --git a/modules/core/src/Auth/Process/AttributeLimit.php b/modules/core/src/Auth/Process/AttributeLimit.php index 27d8527c7b..a846cb8cca 100644 --- a/modules/core/src/Auth/Process/AttributeLimit.php +++ b/modules/core/src/Auth/Process/AttributeLimit.php @@ -176,10 +176,12 @@ public function process(array &$state): void continue; } } elseif (($regexpMatch = self::matchAnyRegex($name, $allowedAttributeRegex)) !== null) { - $attributes[$name] = $this->filterAttributeValues( - $attributes[$name], - $allowedAttributeRegex[$regexpMatch] - ); + if (array_key_exists($regexpMatch, $allowedAttributeRegex)) { + $attributes[$name] = $this->filterAttributeValues( + $attributes[$name], + $allowedAttributeRegex[$regexpMatch], + ); + } if (!empty($attributes[$name])) { continue; } @@ -245,7 +247,7 @@ private function filterAttributeValues(array $values, ?array $allowedConfigValue * @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 + private static function matchAnyRegex(string $needle, ?array $regexps = null): string|null { if ($regexps !== null) { foreach ($regexps as $x => $y) { diff --git a/modules/core/src/Auth/Process/AttributeValueMap.php b/modules/core/src/Auth/Process/AttributeValueMap.php index e4457633b0..a7de2e40ac 100644 --- a/modules/core/src/Auth/Process/AttributeValueMap.php +++ b/modules/core/src/Auth/Process/AttributeValueMap.php @@ -46,6 +46,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. @@ -66,10 +72,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; @@ -129,7 +137,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; } @@ -142,7 +162,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 0ad1c1ec97..e22686804e 100644 --- a/modules/core/src/Auth/Process/Cardinality.php +++ b/modules/core/src/Auth/Process/Cardinality.php @@ -33,10 +33,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); @@ -138,13 +138,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; @@ -159,13 +159,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; @@ -181,12 +181,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 fd51fb79a9..c559e295a2 100644 --- a/modules/core/src/Auth/Process/CardinalitySingle.php +++ b/modules/core/src/Auth/Process/CardinalitySingle.php @@ -44,9 +44,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); diff --git a/modules/core/src/Auth/Process/GenerateGroups.php b/modules/core/src/Auth/Process/GenerateGroups.php index 89e8b4c21c..503dd1cfdc 100644 --- a/modules/core/src/Auth/Process/GenerateGroups.php +++ b/modules/core/src/Auth/Process/GenerateGroups.php @@ -145,7 +145,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/PHP.php b/modules/core/src/Auth/Process/PHP.php index b6706c4a07..d63a369049 100644 --- a/modules/core/src/Auth/Process/PHP.php +++ b/modules/core/src/Auth/Process/PHP.php @@ -58,7 +58,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/ScopeFromAttribute.php b/modules/core/src/Auth/Process/ScopeFromAttribute.php index be54edaea6..07e7758773 100644 --- a/modules/core/src/Auth/Process/ScopeFromAttribute.php +++ b/modules/core/src/Auth/Process/ScopeFromAttribute.php @@ -89,7 +89,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 3a828b6b2b..1bfb81c96d 100644 --- a/modules/core/src/Auth/Process/TargetedID.php +++ b/modules/core/src/Auth/Process/TargetedID.php @@ -66,7 +66,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']; @@ -105,8 +105,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/Source/AbstractSourceSelector.php b/modules/core/src/Auth/Source/AbstractSourceSelector.php index 299f47d8fb..6098dde907 100644 --- a/modules/core/src/Auth/Source/AbstractSourceSelector.php +++ b/modules/core/src/Auth/Source/AbstractSourceSelector.php @@ -71,7 +71,7 @@ public function authenticate(array &$state): void * @param array $state * @return void */ - public static function doAuthentication(Auth\Source $as, array $state): void + public static function doAuthentication(Auth\Source $as, array &$state): void { try { $as->authenticate($state); diff --git a/modules/core/src/Auth/Source/AdminPassword.php b/modules/core/src/Auth/Source/AdminPassword.php index 08a3859396..3ac852979c 100644 --- a/modules/core/src/Auth/Source/AdminPassword.php +++ b/modules/core/src/Auth/Source/AdminPassword.php @@ -6,8 +6,9 @@ use SimpleSAML\Configuration; use SimpleSAML\Error; +use SimpleSAML\Logger; use SimpleSAML\Module\core\Auth\UserPassBase; -use SimpleSAML\Utils; +use Symfony\Component\PasswordHasher\Hasher\NativePasswordHasher; /** * Authentication source which verifies the password against @@ -59,8 +60,22 @@ 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) { + // @deprecated: remove this in the future. + // Continue to allow admin login when the config contains + // a password that is not hashed + if ($adminPassword === $password) { + Logger::deprecated('Please consider hashing the admin password stored in auth.adminpassword' + . ' in config.php. Using a plain text password in that config setting' + . ' will be removed in the future.'); + return ['user' => ['admin']]; + } + 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 519c93fd47..c62d783523 100644 --- a/modules/core/src/Auth/Source/RequestedAuthnContextSelector.php +++ b/modules/core/src/Auth/Source/RequestedAuthnContextSelector.php @@ -23,17 +23,17 @@ class RequestedAuthnContextSelector extends AbstractSourceSelector /** * The key of the AuthId field in the state. */ - public const AUTHID = '\SimpleSAML\Module\core\Auth\Source\RequestedAuthnContextSelector.AuthId'; + public const string AUTHID = '\SimpleSAML\Module\core\Auth\Source\RequestedAuthnContextSelector.AuthId'; /** * The string used to identify our states. */ - public const STAGEID = '\SimpleSAML\Module\core\Auth\Source\RequestedAuthnContextSelector.StageId'; + public const string STAGEID = '\SimpleSAML\Module\core\Auth\Source\RequestedAuthnContextSelector.StageId'; /** * The key where the sources is saved in the state. */ - public const SOURCESID = '\SimpleSAML\Module\core\Auth\Source\RequestedAuthnContextSelector.SourceId'; + public const string SOURCESID = '\SimpleSAML\Module\core\Auth\Source\RequestedAuthnContextSelector.SourceId'; /** @@ -106,14 +106,14 @@ public function __construct(array $info, array $config) */ 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)) { @@ -141,7 +141,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 84b3f3cd70..45bddaf772 100644 --- a/modules/core/src/Auth/Source/SourceIPSelector.php +++ b/modules/core/src/Auth/Source/SourceIPSelector.php @@ -7,7 +7,8 @@ use SimpleSAML\Assert\Assert; use SimpleSAML\Error; use SimpleSAML\Logger; -use SimpleSAML\Utils; +use Symfony\Component\HttpFoundation\IpUtils; +use Symfony\Component\HttpFoundation\Request; use function array_key_exists; use function sprintf; @@ -23,17 +24,18 @@ class SourceIPSelector extends AbstractSourceSelector /** * The key of the AuthId field in the state. */ - public const AUTHID = '\SimpleSAML\Module\core\Auth\Source\SourceIPSelector.AuthId'; + public const string AUTHID = '\SimpleSAML\Module\core\Auth\Source\SourceIPSelector.AuthId'; /** * The string used to identify our states. */ - public const STAGEID = '\SimpleSAML\Module\core\Auth\Source\SourceIPSelector.StageId'; + public const string STAGEID = '\SimpleSAML\Module\core\Auth\Source\SourceIPSelector.StageId'; /** * The key where the sources is saved in the state. */ - public const SOURCESID = '\SimpleSAML\Module\core\Auth\Source\SourceIPSelector.SourceId'; + public const string SOURCESID = '\SimpleSAML\Module\core\Auth\Source\SourceIPSelector.SourceId'; + /** * @param string|null The default authentication source to use when none of the zones match @@ -70,11 +72,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; @@ -91,18 +93,19 @@ public function __construct(array $info, array $config) */ 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 e60bad3ea3..f96bb22e65 100644 --- a/modules/core/src/Auth/UserPassBase.php +++ b/modules/core/src/Auth/UserPassBase.php @@ -26,12 +26,13 @@ abstract class UserPassBase extends Auth\Source /** * The string used to identify our states. */ - public const STAGEID = '\SimpleSAML\Module\core\Auth\UserPassBase.state'; + public const string STAGEID = '\SimpleSAML\Module\core\Auth\UserPassBase.state'; /** * The key of the AuthId field in the state. */ - public const AUTHID = '\SimpleSAML\Module\core\Auth\UserPassBase.AuthId'; + public const string AUTHID = '\SimpleSAML\Module\core\Auth\UserPassBase.AuthId'; + /** * Username we should force. @@ -136,6 +137,7 @@ public function setForcedUsername(?string $forcedUsername): void $this->forcedUsername = $forcedUsername; } + /** * Return login links from configuration * @return string[] @@ -250,7 +252,7 @@ public function authenticate(array &$state): void $httpUtils->redirectTrustedURL($url, $params); // The previous function never returns, so this code is never executed. - assert::true(false); + Assert::true(false); } diff --git a/modules/core/src/Auth/UserPassOrgBase.php b/modules/core/src/Auth/UserPassOrgBase.php index 66dfac6916..1f52b850f9 100644 --- a/modules/core/src/Auth/UserPassOrgBase.php +++ b/modules/core/src/Auth/UserPassOrgBase.php @@ -26,17 +26,18 @@ abstract class UserPassOrgBase extends Auth\Source /** * The string used to identify our states. */ - public const STAGEID = '\SimpleSAML\Module\core\Auth\UserPassOrgBase.state'; + public const string STAGEID = '\SimpleSAML\Module\core\Auth\UserPassOrgBase.state'; /** * The key of the AuthId field in the state. */ - public const AUTHID = '\SimpleSAML\Module\core\Auth\UserPassOrgBase.AuthId'; + public const string AUTHID = '\SimpleSAML\Module\core\Auth\UserPassOrgBase.AuthId'; /** * The key of the OrgId field in the state, identifies which org was selected. */ - public const ORGID = '\SimpleSAML\Module\core\Auth\UserPassOrgBase.SelectedOrg'; + public const string ORGID = '\SimpleSAML\Module\core\Auth\UserPassOrgBase.SelectedOrg'; + /** * What way do we handle the organization as part of the username. @@ -267,7 +268,7 @@ public static function handleLogin( string $authStateId, string $username, string $password, - string $organization + string $organization, ): void { /* Retrieve the authentication state. */ $state = Auth\State::loadState($authStateId, self::STAGEID); @@ -305,7 +306,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 diff --git a/modules/core/src/Controller/ErrorReport.php b/modules/core/src/Controller/ErrorReport.php index cca4aa75d3..a5a9d6ea9b 100644 --- a/modules/core/src/Controller/ErrorReport.php +++ b/modules/core/src/Controller/ErrorReport.php @@ -5,8 +5,12 @@ namespace SimpleSAML\Module\core\Controller; use Exception as BuiltinException; -use SimpleSAML\{Configuration, Error, Logger, Session, Utils}; +use SimpleSAML\Configuration; +use SimpleSAML\Error; use SimpleSAML\HTTP\RunnableResponse; +use SimpleSAML\Logger; +use SimpleSAML\Session; +use SimpleSAML\Utils; use SimpleSAML\XHTML\Template; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; @@ -30,11 +34,11 @@ class ErrorReport * It initializes the global configuration for the controllers implemented here. * * @param \SimpleSAML\Configuration $config The configuration to use by the controllers. - * @param \SimpleSAML\Session $config The session to use by the controllers. + * @param \SimpleSAML\Session $session The session to use by the controllers. */ public function __construct( protected Configuration $config, - protected Session $session + protected Session $session, ) { } diff --git a/modules/core/src/Controller/Exception.php b/modules/core/src/Controller/Exception.php index c1862d7c75..a9fcfc5c53 100644 --- a/modules/core/src/Controller/Exception.php +++ b/modules/core/src/Controller/Exception.php @@ -6,9 +6,16 @@ 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\{Request, Response}; +use Symfony\Component\HttpFoundation\Request; +use Symfony\Component\HttpFoundation\Response; use function array_keys; use function date; @@ -26,7 +33,12 @@ */ class Exception { - public const CODES = ['IDENTIFICATION_FAILURE', 'AUTHENTICATION_FAILURE', 'AUTHORIZATION_FAILURE', 'OTHER_ERROR']; + public const array CODES = [ + 'IDENTIFICATION_FAILURE', + 'AUTHENTICATION_FAILURE', + 'AUTHORIZATION_FAILURE', + 'OTHER_ERROR', + ]; /** @@ -34,14 +46,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,7 +61,7 @@ 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 */ @@ -108,7 +120,7 @@ public function error(Request $request, string $code): Response /** * Show cardinality 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. * @throws \SimpleSAML\Error\BadRequest * @return \SimpleSAML\XHTML\Template|\Symfony\Component\HttpFoundation\RedirectResponse * An HTML template or a redirection if we are not authenticated. @@ -123,14 +135,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']), ); } @@ -142,7 +154,7 @@ 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. */ @@ -165,10 +177,13 @@ public function nocookie(Request $request): Response * 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|\SimpleSAML\HTTP\RunnableResponse|\Symfony\Component\HttpFoundation\RedirectResponse - * 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 */ diff --git a/modules/core/src/Controller/Login.php b/modules/core/src/Controller/Login.php index a3e325278e..4bb708883b 100644 --- a/modules/core/src/Controller/Login.php +++ b/modules/core/src/Controller/Login.php @@ -4,9 +4,14 @@ 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; use Symfony\Component\HttpFoundation\Request; @@ -38,18 +43,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, ) { } @@ -106,8 +116,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 +125,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 * @@ -129,7 +155,7 @@ private function handleLogin(Request $request, UserPassBase|UserPassOrgBase $sou $organizations = $organization = null; if ($source instanceof UserPassOrgBase) { - $organizations = UserPassOrgBase::listOrganizations($authStateId); + $organizations = $source::listOrganizations($authStateId); $organization = $this->getOrganizationFromRequest($request, $source, $state); } @@ -138,10 +164,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']; } $cookies = []; @@ -181,7 +209,7 @@ private function handleLogin(Request $request, UserPassBase|UserPassOrgBase $sou if (($source instanceof UserPassBase) && $source->isRememberMeEnabled()) { if ($request->request->has('remember_me') && ($request->request->get('remember_me') === 'Yes')) { $state['RememberMe'] = true; - $authStateId = Auth\State::saveState($state, UserPassBase::STAGEID); + $authStateId = Auth\State::saveState($state, $source::STAGEID); } } @@ -210,17 +238,20 @@ private function handleLogin(Request $request, UserPassBase|UserPassOrgBase $sou try { if ($source instanceof UserPassOrgBase) { - UserPassOrgBase::handleLogin($authStateId, $username, $password, $organization); + $source::handleLogin($authStateId, $username, $password, $organization); } else { - UserPassBase::handleLogin($authStateId, $username, $password); + $source::handleLogin($authStateId, $username, $password); } } catch (Error\Error $e) { // 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); } @@ -232,10 +263,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(); @@ -249,7 +279,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(); @@ -262,6 +292,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; } @@ -278,13 +309,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'] = ErrorCodes::getAllErrorCodeMessages(); $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->getAllErrorCodeMessages(); + } 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 { @@ -320,8 +377,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], ); } @@ -350,7 +407,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); } @@ -375,8 +432,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; @@ -450,7 +505,7 @@ 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. */ public function cleardiscochoices(Request $request): void { diff --git a/modules/core/src/Controller/Logout.php b/modules/core/src/Controller/Logout.php index a7ac4c1bbc..aef2fa3645 100644 --- a/modules/core/src/Controller/Logout.php +++ b/modules/core/src/Controller/Logout.php @@ -7,10 +7,16 @@ use Exception as BuiltinException; use SAML2\Binding; use SAML2\Constants; -use SimpleSAML\{Auth, Configuration, Error, IdP, Logger, Stats, Utils}; +use SimpleSAML\Auth; +use SimpleSAML\Configuration; +use SimpleSAML\Error; use SimpleSAML\HTTP\RunnableResponse; +use SimpleSAML\IdP; +use SimpleSAML\Logger; use SimpleSAML\Metadata\MetaDataStorageHandler; use SimpleSAML\Module\saml\Message; +use SimpleSAML\Stats; +use SimpleSAML\Utils; use SimpleSAML\XHTML\Template; use Symfony\Component\HttpFoundation\Request; @@ -47,7 +53,7 @@ class Logout * @param \SimpleSAML\Configuration $config The configuration to use by the controllers. */ public function __construct( - protected Configuration $config + protected Configuration $config, ) { } @@ -66,7 +72,7 @@ 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 \SimpleSAML\HTTP\RunnableResponse A runnable response which will actually perform logout. @@ -79,7 +85,7 @@ public function logout(Request $request, string $as): RunnableResponse $returnTo = $this->getReturnPath($request); return new RunnableResponse( [$auth, 'logout'], - [$returnTo] + [$returnTo], ); } @@ -106,7 +112,7 @@ 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 \SimpleSAML\HTTP\RunnableResponse */ public function logoutIframeDone(Request $request): RunnableResponse @@ -173,7 +179,7 @@ public function logoutIframeDone(Request $request): RunnableResponse /** - * @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\HTTP\RunnableResponse */ public function logoutIframePost(Request $request): RunnableResponse @@ -239,7 +245,7 @@ public function logoutIframePost(Request $request): RunnableResponse /** - * @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 */ public function logoutIframe(Request $request): Template @@ -385,7 +391,7 @@ 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 \SimpleSAML\HTTP\RunnableResponse */ public function resumeLogout(Request $request): RunnableResponse diff --git a/modules/core/src/Controller/Redirection.php b/modules/core/src/Controller/Redirection.php index 663f03658b..f2e2690c8c 100644 --- a/modules/core/src/Controller/Redirection.php +++ b/modules/core/src/Controller/Redirection.php @@ -10,6 +10,9 @@ use SimpleSAML\Session; use SimpleSAML\Utils; use SimpleSAML\XHTML\Template; +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; @@ -22,10 +25,6 @@ */ class Redirection { - /** @var \SimpleSAML\Utils\Crypto */ - protected $cryptoUtils; - - /** * Controller constructor. * @@ -38,16 +37,15 @@ 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. + * @param \Symfony\Component\HttpFoundation\Request $request The request that lead to this login operation. * @throws \SimpleSAML\Error\BadRequest * @return \SimpleSAML\XHTML\Template|\Symfony\Component\HttpFoundation\RedirectResponse * An HTML template or a redirection if we are not authenticated. @@ -59,13 +57,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/Storage/SQLPermanentStorage.php b/modules/core/src/Storage/SQLPermanentStorage.php index 6d046f3390..0dacb5aa5d 100644 --- a/modules/core/src/Storage/SQLPermanentStorage.php +++ b/modules/core/src/Storage/SQLPermanentStorage.php @@ -29,7 +29,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(); @@ -53,6 +53,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(' @@ -81,7 +83,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); @@ -99,7 +101,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); @@ -109,7 +111,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); @@ -125,7 +127,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); @@ -134,7 +136,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); @@ -148,7 +150,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; @@ -165,6 +167,7 @@ public function get(string $type = null, string $key1 = null, string $key2 = nul return $res; } + /** * Return the value directly (not in a container) * @@ -173,7 +176,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) { @@ -206,7 +209,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; @@ -234,10 +237,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'); @@ -291,6 +294,7 @@ public function removeExpired(): int return $prepared->rowCount(); } + /** * Create a SQL condition statement based on parameters * @@ -299,7 +303,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 }}